From dfdbd85bf7e0def0692674ac925f35a41b28ba31 Mon Sep 17 00:00:00 2001 From: sam Date: Mon, 2 Mar 2026 10:11:23 -0700 Subject: [PATCH] Initial commit: SNMP NID Viewer toolkit SNMP walk parser (snmp-parse.py) with MIB resolution, structured LLDP neighbor extraction, IP address parsing, and comprehensive table reconstruction for Accedian AMN-1000-GT-S NIDs. HTML viewer generator (build_nid_viewer.py) with dark-themed dashboard including LLDP topology diagram, SFP optics, traffic stats, alarms, port config, coverage matrix, and policy/filter/regulator sections. Includes 15 Accedian MIB files and sample walk data from 10.13.60.102. Co-Authored-By: Claude Opus 4.6 --- build_nid_viewer.py | 1587 + mibs/accedian/ACCEDIAN-SMI | 75 + mibs/accedian/ACD-ALARM-MIB | 510 + mibs/accedian/ACD-CFM-MIB | 4329 ++ mibs/accedian/ACD-DESC-MIB | 544 + mibs/accedian/ACD-DISCOVERY-MIB | 511 + mibs/accedian/ACD-FILTER-MIB | 2102 + mibs/accedian/ACD-PAA-MIB | 3265 ++ mibs/accedian/ACD-POLICY-MIB | 1158 + mibs/accedian/ACD-PORT-MIB | 2972 ++ mibs/accedian/ACD-REGULATOR-MIB | 1131 + mibs/accedian/ACD-SA-MIB | 1182 + mibs/accedian/ACD-SFP-MIB | 1182 + mibs/accedian/ACD-SHAPER-MIB | 278 + mibs/accedian/ACD-SMAP-MIB | 606 + mibs/accedian/ACD-TID-MIB | 272 + snmp-parse.py | 1417 + snmp-tojson.py | 130 + ...0-13-60-102_2026-02-27_11-19-10_errors.txt | 1 + .../10-13-60-102_2026-02-27_11-19-10_walk.txt | 0 ...0-13-60-102_2026-02-27_11-23-07_errors.txt | 0 ...3-60-102_2026-02-27_11-23-07_walk.flat.csv | 33704 ++++++++++++ ...-60-102_2026-02-27_11-23-07_walk.tree.json | 43641 ++++++++++++++++ .../10-13-60-102_2026-02-27_11-23-07_walk.txt | 33724 ++++++++++++ ...2_2026-02-27_11-23-07_walk_monitoring.json | 11601 ++++ ...102_2026-02-27_11-23-07_walk_resolved.json | 34072 ++++++++++++ ...60-102_2026-02-27_11-23-07_walk_tables.csv | 3982 ++ walks/nid-viewer.html | 1507 + 28 files changed, 185483 insertions(+) create mode 100644 build_nid_viewer.py create mode 100644 mibs/accedian/ACCEDIAN-SMI create mode 100644 mibs/accedian/ACD-ALARM-MIB create mode 100644 mibs/accedian/ACD-CFM-MIB create mode 100644 mibs/accedian/ACD-DESC-MIB create mode 100644 mibs/accedian/ACD-DISCOVERY-MIB create mode 100644 mibs/accedian/ACD-FILTER-MIB create mode 100644 mibs/accedian/ACD-PAA-MIB create mode 100644 mibs/accedian/ACD-POLICY-MIB create mode 100644 mibs/accedian/ACD-PORT-MIB create mode 100644 mibs/accedian/ACD-REGULATOR-MIB create mode 100644 mibs/accedian/ACD-SA-MIB create mode 100644 mibs/accedian/ACD-SFP-MIB create mode 100644 mibs/accedian/ACD-SHAPER-MIB create mode 100644 mibs/accedian/ACD-SMAP-MIB create mode 100644 mibs/accedian/ACD-TID-MIB create mode 100644 snmp-parse.py create mode 100644 snmp-tojson.py create mode 100644 walks/10-13-60-102_2026-02-27_11-19-10_errors.txt create mode 100644 walks/10-13-60-102_2026-02-27_11-19-10_walk.txt create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_errors.txt create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_walk.flat.csv create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_walk.tree.json create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_walk.txt create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_walk_monitoring.json create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_walk_resolved.json create mode 100644 walks/10-13-60-102_2026-02-27_11-23-07_walk_tables.csv create mode 100644 walks/nid-viewer.html diff --git a/build_nid_viewer.py b/build_nid_viewer.py new file mode 100644 index 0000000..75bfbf2 --- /dev/null +++ b/build_nid_viewer.py @@ -0,0 +1,1587 @@ +#!/usr/bin/env python3 +""" +Accedian NID SNMP Data Visualizer + +Reads a *_monitoring.json file produced by snmp-parse.py and generates +a self-contained HTML page showing the device model, ports, SFPs, +alarms, config, and SNMP data coverage. + +Usage: + python3 build_nid_viewer.py [monitoring_json] +""" + +import json +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).resolve().parent +WALKS_DIR = SCRIPT_DIR / "walks" +DEFAULT_INPUT = WALKS_DIR / "10-13-60-102_2026-02-27_11-23-07_walk_monitoring.json" + + +def safe_json(obj, **kwargs): + """JSON-encode and escape sequences unsafe inside + +''' + + +def main(): + input_file = Path(sys.argv[1]).expanduser() if len(sys.argv) > 1 else DEFAULT_INPUT + if not input_file.is_file(): + print(f"Error: {input_file} not found", file=sys.stderr) + sys.exit(1) + + output_file = input_file.parent / "nid-viewer.html" + + print(f"Reading: {input_file}") + with input_file.open(encoding="utf-8") as f: + data = json.load(f) + + html = build_html(data) + + with output_file.open("w", encoding="utf-8") as f: + f.write(html) + + print(f"Written: {output_file}") + print(f"Size: {len(html):,} bytes") + print(f"Open in browser to view.") + + +if __name__ == "__main__": + main() diff --git a/mibs/accedian/ACCEDIAN-SMI b/mibs/accedian/ACCEDIAN-SMI new file mode 100644 index 0000000..9bf2efd --- /dev/null +++ b/mibs/accedian/ACCEDIAN-SMI @@ -0,0 +1,75 @@ +-- +-- Accedian Enterprise Specific MIB: Structure of Management Information +-- +-- Copyright (c) 2005-2008, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACCEDIAN-SMI DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-IDENTITY, enterprises + FROM SNMPv2-SMI; + +accedianMIB MODULE-IDENTITY + LAST-UPDATED "200608060100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 4878 Levy, suite 202 + Saint-Laurent, Quebec Canada H4R 2P1 + E-mail: support@accedian.com" + DESCRIPTION + "The Structure of Management Information for Accedian Networks." + + REVISION "200608060100Z" -- 6 Aug 2006 + DESCRIPTION + "Initial version of MIB module ACCEDIAN-SMI." + + ::= { enterprises 22420 } + +-- +-- Accedian MIB tree structure +-- + +acdProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Accedian's Product OIDs." + ::= { accedianMIB 1 } + +acdMibs OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Accedian's MIB objects." + ::= { accedianMIB 2 } + +acdTraps OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Accedian's Trap OIDs." + ::= { accedianMIB 3 } + +-- This is the top-level object identifier registry used by Accedian +-- products for SNMP modules containing experimental MIB definitions. +-- In this context, experimental MIBs are defined as: +-- 1) IETF work-in-process MIBs which have not been assigned a permanent +-- object identifier by the IANA. +-- 2) Accedian work-in-process MIBs that have not achieved final +-- production quality or field experience. +-- NOTE: Support for MIBs under the this OID subtree is temporary and +-- changes to objects may occur without notice." + +acdExperiment OBJECT IDENTIFIER ::= { accedianMIB 4 } + +acdServices OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Accedian's Services OIDs." + ::= { accedianMIB 5 } + +END diff --git a/mibs/accedian/ACD-ALARM-MIB b/mibs/accedian/ACD-ALARM-MIB new file mode 100644 index 0000000..de37c5c --- /dev/null +++ b/mibs/accedian/ACD-ALARM-MIB @@ -0,0 +1,510 @@ +-- +-- Accedian Enterprise Specific MIB: Structure of Management Information +-- +-- Copyright (c) 2005-2011, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-ALARM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Unsigned32 + FROM SNMPv2-SMI + DisplayString, TruthValue, DateAndTime + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + sysName + FROM SNMPv2-MIB + acdMibs + FROM ACCEDIAN-SMI; + +acdAlarm MODULE-IDENTITY + + LAST-UPDATED "201110100100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 4878 Levy, suite 202 + Saint-Laurent, Quebec Canada H4R 2P1 + E-mail: support@accedian.com" + DESCRIPTION + "The alarm Table for this Accedian Networks device." + + REVISION "201110100100Z" -- 10 October 2011 + DESCRIPTION + "Add acdAlarmCfgTableLastChangeTid and + acdAlarmStatusTableLastChangeTid." + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Fix compliance section." + + REVISION "200902040100Z" -- 4 Feb 2009 + DESCRIPTION + "Add new fields in acdAlarmCfgEntry, acdAlarmActiveState and + acdAlarmClearState." + + REVISION "200802010100Z" -- 1 Feb 2008 + DESCRIPTION + "Add UNITS clause to object, where appropriate." + + REVISION "200705220100Z" -- 22 May 2007 + DESCRIPTION + "Add acdAlarmCfgNumber object to Alarm traps." + + REVISION "200612190100Z" -- 19 Dec 2006 + DESCRIPTION + "Add 802.3AH notification enable and msg field in status table." + + REVISION "200608060100Z" -- 6 Aug 2006 + DESCRIPTION + "Initial version of MIB module ACD-ALARM-MIB." + + ::= { acdMibs 1 } + +acdAlarmMIBObjects OBJECT IDENTIFIER ::= { acdAlarm 15 } +acdAlarmConfig OBJECT IDENTIFIER ::= { acdAlarmMIBObjects 1 } +acdAlarmStatus OBJECT IDENTIFIER ::= { acdAlarmMIBObjects 2 } +acdAlarmConformance OBJECT IDENTIFIER ::= { acdAlarmMIBObjects 3 } + +acdAlarmTableTid OBJECT IDENTIFIER ::= { acdAlarmMIBObjects 4 } + +--------------------------------------------------------------------------- + -- Alarm General configuration +--------------------------------------------------------------------------- +acdAlarmGenThreshOn OBJECT-TYPE + SYNTAX Unsigned32 (500..50000) + UNITS "milliseconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This value represents the Alarm On Hysteris. This is the time since the + detection of the On event inside the system versus the report. This is + to avoid storm of notifications." + ::= { acdAlarm 1 } + +acdAlarmGenThreshOff OBJECT-TYPE + SYNTAX Unsigned32 (500..50000) + UNITS "milliseconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This value represents the Alarm Off Hysteris. This is the time since the + detection of the Off event inside the system versus the report. This is + to avoid storm of notifications." + ::= { acdAlarm 2 } + +acdAlarmGenLedEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is to Enable the alarms reporting through the LEDs." + ::= { acdAlarm 3 } + +acdAlarmGenSyslogEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is to Enable the alarms reporting through the syslog system." + ::= { acdAlarm 4 } + +acdAlarmGenSNMPEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is to Enable the alarms reporting through the SNMP agent." + ::= { acdAlarm 5 } + +acdAlarmGen8023AHEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is to Enable the alarms reporting through the 802.3AH protocol." + ::= { acdAlarm 6 } + +--------------------------------------------------------------------------- + -- The Alarm configuration table + -- This table contains the configuration for each alarm. +--------------------------------------------------------------------------- + +acdAlarmCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdAlarmCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all alarms." + ::= { acdAlarm 10 } + +acdAlarmCfgEntry OBJECT-TYPE + SYNTAX AcdAlarmCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An alarm is an exceptional event that requires user notificaton." + INDEX { acdAlarmCfgID } + ::= { acdAlarmCfgTable 1 } + +AcdAlarmCfgEntry ::= SEQUENCE { + acdAlarmCfgID Unsigned32, + acdAlarmCfgNumber Unsigned32, + acdAlarmCfgDesc DisplayString, + acdAlarmCfgEnable TruthValue, + acdAlarmCfgSeverity INTEGER, + acdAlarmCfgServiceAffecting TruthValue, + acdAlarmCfgExtNumber DisplayString, + acdAlarmCfgConditionType DisplayString, + acdAlarmCfgAMOType DisplayString + +} + +acdAlarmCfgID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each alarm. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdAlarmCfgEntry 1 } + +acdAlarmCfgNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique number that identifies this alarm. Assigned by the unit. The + alarm identifier is compose of 3 fields, the module number, the instance + number and the error number. The alarm number looks like this: + A.BBB.CC and is expressed in decimal, A is the module number, BBB is + the instance number (1-999) and CC is the error number (1-99). A module + number is assigned for each source of alarm in the system. For example + the port module is set to 1, the SFP module is set to 2, the PAA is set + to 3 and the environmental is set to 8." + ::= { acdAlarmCfgEntry 2 } + +acdAlarmCfgDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This string is to describe the alarm in a readable way, e.g.: + +5Vdc Power supply fail." + ::= { acdAlarmCfgEntry 3 } + +acdAlarmCfgEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is to indicate if the alarm is reported or not." + ::= { acdAlarmCfgEntry 4 } + +acdAlarmCfgSeverity OBJECT-TYPE + SYNTAX INTEGER { + info(0), + minor(1), + major(2), + critical(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Accedian Networks classifies alarms into four severity types. These types + and their associated decimal codes are, informational(0), minor(1), + major(2) and critical(3)." + ::= { acdAlarmCfgEntry 5 } + +acdAlarmCfgServiceAffecting OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is to indicate if the alarm is service affecting or not. This + value depends on the utilization of the box. For instance in an + application where the monitoring of the traffic is mandatory the link + down event on the monitor port is service affecting." + ::= { acdAlarmCfgEntry 6 } + +acdAlarmCfgExtNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique number that identifies this alarm. Assigned by the unit. The + alarm identifier is compose of 3 fields, the module number, the instance + number and the error number. The alarm number looks like this: + A.B.C and is expressed in decimal, A is the module number, B is + the instance number and C is the error number. A module number is + assigned for each source of alarm in the system (see Accedian + documentation for more detail)." + ::= { acdAlarmCfgEntry 7 } + +acdAlarmCfgConditionType OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the type of alarm condition." + ::= { acdAlarmCfgEntry 8 } + +acdAlarmCfgAMOType OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the Alarm Maintenance Object." + ::= { acdAlarmCfgEntry 9 } + +--------------------------------------------------------------------------- + -- The Alarms Status table + -- This table contains the status of all alarms. +--------------------------------------------------------------------------- + +acdAlarmStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdAlarmStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all alarms" + ::= { acdAlarm 11 } + +acdAlarmStatusEntry OBJECT-TYPE + SYNTAX AcdAlarmStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An alarm is an exceptional event that requires user notificaton." + INDEX { acdAlarmStatusID } + ::= { acdAlarmStatusTable 1 } + +AcdAlarmStatusEntry ::= SEQUENCE { + acdAlarmStatusID Unsigned32, + acdAlarmStatusNumber Unsigned32, + acdAlarmStatusOn TruthValue, + acdAlarmStatusLastChange DateAndTime, + acdAlarmStatusMsg DisplayString +} + +acdAlarmStatusID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each alarm. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdAlarmStatusEntry 1 } + +acdAlarmStatusNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique number that identifies this alarm. Assigned by the unit. The + alarm identifier is compose of 3 fields, the module number, the instance + number and the error number. The alarm number looks like this: + AAA.BBB.CC and is expressed in decimal, AAA is the module number, BBB is + the instance number (1-999) and CC is the error number (1-99). A module + number is assigned for each source of alarm in the system. For example + the port module is set to 1, the SFP module is set to 2, the PAA is set + to 3 and the environmental is set to 8." + ::= { acdAlarmStatusEntry 2 } + +acdAlarmStatusOn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the alarm is On or Off." + ::= { acdAlarmStatusEntry 3 } + +acdAlarmStatusLastChange OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the last change for this alarm. A value of zero + means that nothing happened to this alarm since the last reboot." + ::= { acdAlarmStatusEntry 4 } + +acdAlarmStatusMsg OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This string is to add information why the alarm is reported." + ::= { acdAlarmStatusEntry 5 } + +-- Accedian Alarm Traps +--------------------------------------------------------------------------- +-- DESCRIPTION "Definition point for Accedian Alarm notifications." +--------------------------------------------------------------------------- + +acdAlarmV2 OBJECT IDENTIFIER ::= { acdAlarm 12 } + +acdAlarmActiveState NOTIFICATION-TYPE + OBJECTS { acdAlarmCfgID, + acdAlarmCfgNumber, + acdAlarmCfgSeverity, + acdAlarmCfgServiceAffecting, + acdAlarmCfgDesc, + acdAlarmStatusLastChange, + acdAlarmCfgExtNumber, + acdAlarmCfgConditionType, + acdAlarmCfgAMOType, + sysName } + STATUS current + DESCRIPTION + "The SNMP trap that is generated when an alarm + entry crosses its rising threshold and generates + an event that is configured for sending SNMP + traps." + + ::= { acdAlarmV2 1 } + +acdAlarmClearState NOTIFICATION-TYPE + OBJECTS { acdAlarmCfgID, + acdAlarmCfgNumber, + acdAlarmCfgSeverity, + acdAlarmCfgServiceAffecting, + acdAlarmCfgDesc, + acdAlarmStatusLastChange, + acdAlarmCfgExtNumber, + acdAlarmCfgConditionType, + acdAlarmCfgAMOType, + sysName } + STATUS current + DESCRIPTION + "The SNMP trap that is generated when an alarm + entry crosses its falling threshold and generates + an event that is configured for sending SNMP + traps." + + ::= { acdAlarmV2 2 } + +--------------------------------------------------------------------------- + -- Transaction ID Information +--------------------------------------------------------------------------- + +acdAlarmCfgTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdAlarmCfgTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdAlarmTableTid 1 } + +acdAlarmStatusTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdAlarmStatusTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdAlarmTableTid 2 } + +--------------------------------------------------------------------------- + -- ACD-ALARM-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdAlarmCompliances OBJECT IDENTIFIER ::= { acdAlarmConformance 1 } +acdAlarmGroups OBJECT IDENTIFIER ::= { acdAlarmConformance 2 } + +--------------------------------------------------------------------------- +-- Units of conformance +--------------------------------------------------------------------------- + +acdAlarmGenGroup OBJECT-GROUP + OBJECTS { + acdAlarmGenThreshOn, + acdAlarmGenThreshOff, + acdAlarmGenLedEnable, + acdAlarmGenSyslogEnable, + acdAlarmGenSNMPEnable, + acdAlarmGen8023AHEnable + } + STATUS current + DESCRIPTION + "." + ::= { acdAlarmGroups 1 } + +acdAlarmCfgGroup OBJECT-GROUP + OBJECTS { + acdAlarmCfgID, + acdAlarmCfgNumber, + acdAlarmCfgDesc, + acdAlarmCfgEnable, + acdAlarmCfgSeverity, + acdAlarmCfgServiceAffecting, + acdAlarmCfgExtNumber, + acdAlarmCfgConditionType, + acdAlarmCfgAMOType + } + STATUS current + DESCRIPTION + "." + ::= { acdAlarmGroups 2 } + +acdAlarmStatusGroup OBJECT-GROUP + OBJECTS { + acdAlarmStatusID, + acdAlarmStatusNumber, + acdAlarmStatusOn, + acdAlarmStatusLastChange, + acdAlarmStatusMsg + } + STATUS current + DESCRIPTION + "." + ::= { acdAlarmGroups 3 } + +acdAlarmNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { + acdAlarmActiveState, + acdAlarmClearState + } + STATUS current + DESCRIPTION + "Objects for the Notifications group." + ::= { acdAlarmGroups 4 } + +acdAlarmTidGroup OBJECT-GROUP + OBJECTS { + acdAlarmCfgTableLastChangeTid, + acdAlarmStatusTableLastChangeTid + } + STATUS current + DESCRIPTION + "List of scalars to monitior changes in tables." + ::= { acdAlarmGroups 5 } + +--------------------------------------------------------------------------- +-- MIB Module Compliance statements +--------------------------------------------------------------------------- +acdAlarmCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-ALARM-MIB module." + MODULE + MANDATORY-GROUPS { + acdAlarmGenGroup, + acdAlarmCfgGroup, + acdAlarmStatusGroup, + acdAlarmNotificationsGroup, + acdAlarmTidGroup + } + + ::= { acdAlarmCompliances 1 } + +END diff --git a/mibs/accedian/ACD-CFM-MIB b/mibs/accedian/ACD-CFM-MIB new file mode 100644 index 0000000..4ba0ee3 --- /dev/null +++ b/mibs/accedian/ACD-CFM-MIB @@ -0,0 +1,4329 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2016, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-CFM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Unsigned32, Counter32, Counter64, Gauge32 + FROM SNMPv2-SMI + TruthValue, DateAndTime, RowStatus, MacAddress, TEXTUAL-CONVENTION, DisplayString + FROM SNMPv2-TC + VlanIdOrNone FROM Q-BRIDGE-MIB -- [RFC4363] + + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + + acdMibs + FROM ACCEDIAN-SMI; + +acdCfm MODULE-IDENTITY + + LAST-UPDATED "201609230100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "This MIB is complementary to the IEEE P802.1ag(TM) CFM MIB. It + covers the delay measurment and the packet loss configuration + and results." + + REVISION "201609230100Z" -- 23 September 2016 + DESCRIPTION + "Add the history indexes to the corresponding OBJECT-GROUPs. + Remove acdCfmCfgIfAssignInstIdx out of acdCfmCfgIfAssignGroup. + Correct the description of acdCfmCfgIfAssignGroup." + + REVISION "201607050100Z" -- 05 July 2016 + DESCRIPTION + "Set acdCfmSlmHistResultPeriodIndex instead of + acdCfmSlmHistResultInstanceIndex as the index for + acdCfmSlmHistResultTable." + + REVISION "201605260100Z" -- 26 May 2016 + DESCRIPTION + "Set access level to read-only for acdCfmHistResultOneWayDelayID, + acdCfmHistResultOneWayDelaySampleIndex, acdCfmHistResultOneWayDvID, + acdCfmHistResultOneWayDvSampleIndex, acdCfmHistResultTwoWayDelayID, + acdCfmHistResultTwoWayDelaySampleIndex, acdCfmHistResultTwoWayDvID, + acdCfmHistResultTwoWayDvSampleIndex, acdCfmHistResultPktLossID, + acdCfmHistResultPktLossSampleIndex, acdCfmSlmHistResultID, + acdCfmSlmHistResultInstanceIndex." + + REVISION "201407040100Z" -- 04 July 2014 + DESCRIPTION + "Add InterfaceStatusTLVEnable to acdCfmMepCfgTable." + + REVISION "201301070100Z" -- 07 January 2013 + DESCRIPTION + "Add configured name for statistics and history tables." + + REVISION "201204100100Z" -- 10 April 2012 + DESCRIPTION + "Add support for invalid CSF PDU counters." + + REVISION "201201180100Z" -- 18 Jan 2012 + DESCRIPTION + "Add support for configuration of MEP instance." + + REVISION "201201090100Z" -- 09 Jan 2012 + DESCRIPTION + "Add support for DMM and Pkt-Loss instance naming." + + + REVISION "201112210100Z" -- 21 Dec 2011 + DESCRIPTION + "Add support for ETH-SLM Tx/Rx PDU counters." + + + REVISION "201112200100Z" -- 20 Dec 2011 + DESCRIPTION + "Add support for ETH-CSF Tx/Rx PDU counters." + + + REVISION "201109210100Z" -- 21 Sept 2011 + DESCRIPTION + "Add support for CFM Stack Table." + + REVISION "201103300100Z" -- 30 Mars 2011 + DESCRIPTION + "Add support for Instantaneous values." + + REVISION "200911010100Z" -- 1 Nov 2009 + DESCRIPTION + "Add support for extended packet loss ratio." + + REVISION "200902230100Z" -- 23 Feb 2009 + DESCRIPTION + "Add support for extended packet loss ratio." + + REVISION "200805010100Z" -- 1 May 2008 + DESCRIPTION + "Initial version of MIB module ACD-CFM-MIB." + + ::= { acdMibs 7 } + +acdCfmNotifications OBJECT IDENTIFIER ::= { acdCfm 0 } +acdCfmMIBObjects OBJECT IDENTIFIER ::= { acdCfm 1 } +acdCfmConformance OBJECT IDENTIFIER ::= { acdCfm 2 } + +acdCfmDelayMeasurement OBJECT IDENTIFIER ::= { acdCfmMIBObjects 1 } +acdCfmPacketLoss OBJECT IDENTIFIER ::= { acdCfmMIBObjects 2 } +acdCfmMep OBJECT IDENTIFIER ::= { acdCfmMIBObjects 3 } +acdCfmStack OBJECT IDENTIFIER ::= { acdCfmMIBObjects 4 } +acdCfmSlm OBJECT IDENTIFIER ::= { acdCfmMIBObjects 5 } +acdCfmConfig OBJECT IDENTIFIER ::= { acdCfmMIBObjects 6 } + +-- ****************************************************************** +-- Textual conventions +-- ****************************************************************** +AcdCfmMepDirection ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Indicates the direction in which the Maintenance + association (MEP) faces on the bridge port: + + down(1) Sends Continuity Check Messages away from the + MAC Relay Entity. + up(2) Sends Continuity Check Messages towards the + MAC Relay Entity. + " + SYNTAX INTEGER { + down (1), + up (2) + } + +AcdCfmMepLowestAlarmPri ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An integer value specifying the lowest priority defect + that is allowed to generate a Fault Alarm (20.9.5), either: + + soamAll(1) DefRDICCM, DefMACstatus, DefRemoteCCM, + DefErrorCCM, and DefXconCCM; + soamMacRemErrXcon(2) Only DefMACstatus, DefRemoteCCM, + DefErrorCCM, and DefXconCCM (default); + soamRemErrXcon(3) Only DefRemoteCCM, DefErrorCCM, + and DefXconCCM; + soamErrXcon(4) Only DefErrorCCM and DefXconCCM; + soamXcon(5) Only DefXconCCM; or + soamAis(6) No defects DefXcon or lower are to be + reported + soamNone(7) No defects will be reported" + SYNTAX INTEGER { + soamAll (1), + soamMacRemErrXcon (2), + soamRemErrXcon (3), + soamErrXcon (4), + soamXcon (5), + soamAis (6), + soamNone (7) + } + +AcdCfmInterfaceAssign ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Indicates the assignment configuration/state of a system interface + + unassigned(1) Interface has not been assigned to a cfm + assigned(2) Interface has been assigned to a cfm + " + SYNTAX INTEGER { + unassigned (1), + assigned (2) + } + + + +--------------------------------------------------------------------------- + -- The Delay Measurement configuration table + -- This table contains all Delay Measurement entry configurations. +--------------------------------------------------------------------------- + +acdCfmDmCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmDmCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of all DM entries." + ::= { acdCfmDelayMeasurement 1 } + +acdCfmDmCfgEntry OBJECT-TYPE + SYNTAX AcdCfmDmCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a DM instance." + INDEX { acdCfmDmCfgID } + ::= { acdCfmDmCfgTable 1 } + +AcdCfmDmCfgEntry ::= SEQUENCE { + acdCfmDmCfgID Unsigned32, + acdCfmDmCfgRowStatus RowStatus, + acdCfmDmCfgMepIdx Unsigned32, + acdCfmDmCfgRemoteMepId Unsigned32, + acdCfmDmCfgPriority Unsigned32, + acdCfmDmCfgEnable TruthValue, + acdCfmDmCfgInterval Unsigned32, + acdCfmDmCfgRefPeriod Unsigned32, + acdCfmDmCfgOneWayDelayEnable TruthValue, + acdCfmDmCfgOneWayDelayMax Unsigned32, + acdCfmDmCfgOneWayDelayThresh Unsigned32, + acdCfmDmCfgOneWayAvgDelayThresh Unsigned32, + acdCfmDmCfgOneWayDvEnable TruthValue, + acdCfmDmCfgOneWayDvMax Unsigned32, + acdCfmDmCfgOneWayDvThresh Unsigned32, + acdCfmDmCfgOneWayAvgDvThresh Unsigned32, + acdCfmDmCfgTwoWayDelayEnable TruthValue, + acdCfmDmCfgTwoWayDelayMax Unsigned32, + acdCfmDmCfgTwoWayDelayThresh Unsigned32, + acdCfmDmCfgTwoWayAvgDelayThresh Unsigned32, + acdCfmDmCfgTwoWayDvEnable TruthValue, + acdCfmDmCfgTwoWayDvMax Unsigned32, + acdCfmDmCfgTwoWayDvThresh Unsigned32, + acdCfmDmCfgTwoWayAvgDvThresh Unsigned32, + acdCfmDmCfgName DisplayString +} + +acdCfmDmCfgID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Delay Measurement instance. This value follows + the ordering of the results table." + ::= { acdCfmDmCfgEntry 1 } + +acdCfmDmCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated." + ::= { acdCfmDmCfgEntry 2 } + +acdCfmDmCfgMepIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Maintenance association End Point Identifier." + ::= { acdCfmDmCfgEntry 3 } + +acdCfmDmCfgRemoteMepId OBJECT-TYPE + SYNTAX Unsigned32 (1..8191) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Remote Maintenance association End Point Identifier used for this + delay measurement configuration." + ::= { acdCfmDmCfgEntry 4 } + +acdCfmDmCfgPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN priority. Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdCfmDmCfgEntry 5 } + +acdCfmDmCfgEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable CFM to issues DMM measurement packets." + DEFVAL { false } + ::= { acdCfmDmCfgEntry 6 } + +acdCfmDmCfgInterval OBJECT-TYPE + SYNTAX Unsigned32 (1..60000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Interval in milliseconds at which CFM issues DMM measurement packets." + DEFVAL { 10000 } + ::= { acdCfmDmCfgEntry 7 } + +acdCfmDmCfgRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 (1..1440) + UNITS "minutes" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Reference period in minutes for Delay Measurement." + DEFVAL { 15 } + ::= { acdCfmDmCfgEntry 8 } + +acdCfmDmCfgOneWayDelayEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable CFM to compute one-way delay measurements." + DEFVAL { true } + ::= { acdCfmDmCfgEntry 9 } + +acdCfmDmCfgOneWayDelayMax OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "milliseconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay in milliseconds." + DEFVAL { 50 } + ::= { acdCfmDmCfgEntry 10 } + +acdCfmDmCfgOneWayDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay greater than the maximum allowed value + before alert." + DEFVAL { 4 } + ::= { acdCfmDmCfgEntry 11 } + +acdCfmDmCfgOneWayAvgDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "One-way average delay threshold in milliseconds." + DEFVAL { 50 } + ::= { acdCfmDmCfgEntry 12 } + +acdCfmDmCfgOneWayDvEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable CFM to compute one-way delay variation measurements." + DEFVAL { true } + ::= { acdCfmDmCfgEntry 13 } + +acdCfmDmCfgOneWayDvMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay variation in milliseconds." + DEFVAL { 50 } + ::= { acdCfmDmCfgEntry 14 } + +acdCfmDmCfgOneWayDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay variation greater than the maximum + allowed value before alert." + DEFVAL { 10 } + ::= { acdCfmDmCfgEntry 15 } + +acdCfmDmCfgOneWayAvgDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "One-way average delay variation threshold in milliseconds." + DEFVAL { 4 } + ::= { acdCfmDmCfgEntry 16 } + +acdCfmDmCfgTwoWayDelayEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable CFM to compute Two-way delay measurements." + DEFVAL { true } + ::= { acdCfmDmCfgEntry 17 } + +acdCfmDmCfgTwoWayDelayMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay in milliseconds." + DEFVAL { 100 } + ::= { acdCfmDmCfgEntry 18 } + +acdCfmDmCfgTwoWayDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay greater than the maximum allowed value + before alert." + DEFVAL { 40 } + ::= { acdCfmDmCfgEntry 19 } + +acdCfmDmCfgTwoWayAvgDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay threshold in milliseconds." + DEFVAL { 100 } + ::= { acdCfmDmCfgEntry 20 } + +acdCfmDmCfgTwoWayDvEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable CFM to compute Two-way delay variation measurements." + DEFVAL { true } + ::= { acdCfmDmCfgEntry 21 } + +acdCfmDmCfgTwoWayDvMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay variation in milliseconds." + DEFVAL { 10 } + ::= { acdCfmDmCfgEntry 22 } + +acdCfmDmCfgTwoWayDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay variation greater than the maximum + allowed value before alert." + DEFVAL { 4 } + ::= { acdCfmDmCfgEntry 23 } + +acdCfmDmCfgTwoWayAvgDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay variation threshold in milliseconds." + DEFVAL { 10 } + ::= { acdCfmDmCfgEntry 24 } + +acdCfmDmCfgName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A unique name used to identify this instance. The length includes the terminating NULL character." + ::= { acdCfmDmCfgEntry 25 } + + +--------------------------------------------------------------------------- + -- The CFM DMM One Way delay Results table + -- This table contains all CFM DMM One Way delay entry results. +--------------------------------------------------------------------------- + +acdCfmResultOneWayDelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmResultOneWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "One way delay result table of all DM entries." + ::= { acdCfmDelayMeasurement 2 } + +acdCfmResultOneWayDelayEntry OBJECT-TYPE + SYNTAX AcdCfmResultOneWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of One Way Delay results for a DM entry." + INDEX { acdCfmResultOneWayDelayID } + ::= { acdCfmResultOneWayDelayTable 1 } + +AcdCfmResultOneWayDelayEntry ::= SEQUENCE { + acdCfmResultOneWayDelayID Unsigned32, + acdCfmResultOneWayDelayPeriodIndex Unsigned32, + acdCfmResultOneWayDelayIntervalStart DateAndTime, + acdCfmResultOneWayDelayValid TruthValue, + acdCfmResultOneWayDelayAlert TruthValue, + acdCfmResultOneWayDelayAvgAlert TruthValue, + acdCfmResultOneWayDelaySamples Unsigned32, + acdCfmResultOneWayDelayMinValue Integer32, + acdCfmResultOneWayDelayMaxValue Integer32, + acdCfmResultOneWayDelayAvgValue Integer32, + acdCfmResultOneWayDelayThreshExc Unsigned32, + acdCfmResultOneWayDelayInstValue Integer32, + acdCfmResultOneWayDelayName DisplayString +} + +acdCfmResultOneWayDelayID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Delay Measurement instance. This value follows + the ordering of the Dm table." + ::= { acdCfmResultOneWayDelayEntry 1 } + +acdCfmResultOneWayDelayPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmResultOneWayDelayEntry 2 } + +acdCfmResultOneWayDelayIntervalStart OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the start of the period." + ::= { acdCfmResultOneWayDelayEntry 3 } + +acdCfmResultOneWayDelayValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the One-way delay results during this + sampling interval." + ::= { acdCfmResultOneWayDelayEntry 4 } + +acdCfmResultOneWayDelayAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the One Way Delay alert." + ::= { acdCfmResultOneWayDelayEntry 5 } + +acdCfmResultOneWayDelayAvgAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the One Way Average Delay alert." + ::= { acdCfmResultOneWayDelayEntry 6 } + +acdCfmResultOneWayDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate One-way delay results." + ::= { acdCfmResultOneWayDelayEntry 7 } + +acdCfmResultOneWayDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay minimum value. The value is expressed in + micro-seconds." + ::= { acdCfmResultOneWayDelayEntry 8 } + +acdCfmResultOneWayDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay maximum value. The value is expressed in + micro-seconds." + ::= { acdCfmResultOneWayDelayEntry 9 } + +acdCfmResultOneWayDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay average value. The value is expressed in + micro-seconds." + ::= { acdCfmResultOneWayDelayEntry 10} + +acdCfmResultOneWayDelayThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmResultOneWayDelayEntry 11 } + +acdCfmResultOneWayDelayInstValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay Instantaneous value. The value is expressed in + micro-seconds." + ::= { acdCfmResultOneWayDelayEntry 12 } + +acdCfmResultOneWayDelayName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique string used to identify this instance." + + ::= { acdCfmResultOneWayDelayEntry 13 } + +--------------------------------------------------------------------------- + -- The CFM DMM One Way delay variation Results table + -- This table contains all CFM DMM One Way delay variation entry results. +--------------------------------------------------------------------------- + +acdCfmResultOneWayDvTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmResultOneWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "One way delay variation result table of all DM entries." + ::= { acdCfmDelayMeasurement 3 } + +acdCfmResultOneWayDvEntry OBJECT-TYPE + SYNTAX AcdCfmResultOneWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of One Way Delay variation results for a DM entry." + INDEX { acdCfmResultOneWayDvID } + ::= { acdCfmResultOneWayDvTable 1 } + +AcdCfmResultOneWayDvEntry ::= SEQUENCE { + acdCfmResultOneWayDvID Unsigned32, + acdCfmResultOneWayDvPeriodIndex Unsigned32, + acdCfmResultOneWayDvIntervalStart DateAndTime, + acdCfmResultOneWayDvValid TruthValue, + acdCfmResultOneWayDvAlert TruthValue, + acdCfmResultOneWayDvAvgAlert TruthValue, + acdCfmResultOneWayDvSamples Unsigned32, + acdCfmResultOneWayDvMinValue Integer32, + acdCfmResultOneWayDvMaxValue Integer32, + acdCfmResultOneWayDvAvgValue Integer32, + acdCfmResultOneWayDvThreshExc Unsigned32, + acdCfmResultOneWayDvInstValue Integer32, + acdCfmResultOneWayDvName DisplayString +} + +acdCfmResultOneWayDvID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Delay variation Measurement instance. This value follows + the ordering of the DM table." + ::= { acdCfmResultOneWayDvEntry 1 } + +acdCfmResultOneWayDvPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmResultOneWayDvEntry 2 } + +acdCfmResultOneWayDvIntervalStart OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the start of the period." + ::= { acdCfmResultOneWayDvEntry 3 } + +acdCfmResultOneWayDvValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the One-way delay variation results during this + sampling interval." + ::= { acdCfmResultOneWayDvEntry 4 } + +acdCfmResultOneWayDvAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the One Way Delay variation alert." + ::= { acdCfmResultOneWayDvEntry 5 } + +acdCfmResultOneWayDvAvgAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the One Way Average Delay variation alert." + ::= { acdCfmResultOneWayDvEntry 6 } + +acdCfmResultOneWayDvSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate One-way delay variation results." + ::= { acdCfmResultOneWayDvEntry 7 } + +acdCfmResultOneWayDvMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation minimum value. The value is + expressed in micro-seconds." + ::= { acdCfmResultOneWayDvEntry 8 } + +acdCfmResultOneWayDvMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variationmaximum value. The value is + expressed in micro-seconds." + ::= { acdCfmResultOneWayDvEntry 9 } + +acdCfmResultOneWayDvAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation average value. The value is + expressed in micro-seconds." + ::= { acdCfmResultOneWayDvEntry 10} + +acdCfmResultOneWayDvThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmResultOneWayDvEntry 11 } + +acdCfmResultOneWayDvInstValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation Instantaneous value. The value is + expressed in micro-seconds." + ::= { acdCfmResultOneWayDvEntry 12 } + +acdCfmResultOneWayDvName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique string used to identify this instance. The length includes the terminating NULL character." + + ::= { acdCfmResultOneWayDvEntry 13 } + + +--------------------------------------------------------------------------- + -- The CFM DMM Two Way delay Results table + -- This table contains all CFM DMM Two Way delay entry results. +--------------------------------------------------------------------------- + +acdCfmResultTwoWayDelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmResultTwoWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Two way delay result table of all DM entries." + ::= { acdCfmDelayMeasurement 4 } + +acdCfmResultTwoWayDelayEntry OBJECT-TYPE + SYNTAX AcdCfmResultTwoWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of Two Way Delay results for a DM entry." + INDEX { acdCfmResultTwoWayDelayID } + ::= { acdCfmResultTwoWayDelayTable 1 } + +AcdCfmResultTwoWayDelayEntry ::= SEQUENCE { + acdCfmResultTwoWayDelayID Unsigned32, + acdCfmResultTwoWayDelayPeriodIndex Unsigned32, + acdCfmResultTwoWayDelayIntervalStart DateAndTime, + acdCfmResultTwoWayDelayValid TruthValue, + acdCfmResultTwoWayDelayAlert TruthValue, + acdCfmResultTwoWayDelayAvgAlert TruthValue, + acdCfmResultTwoWayDelaySamples Unsigned32, + acdCfmResultTwoWayDelayMinValue Integer32, + acdCfmResultTwoWayDelayMaxValue Integer32, + acdCfmResultTwoWayDelayAvgValue Integer32, + acdCfmResultTwoWayDelayThreshExc Unsigned32, + acdCfmResultTwoWayDelayInstValue Integer32, + acdCfmResultTwoWayDelayName DisplayString +} + +acdCfmResultTwoWayDelayID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Delay Measurement instance. This value follows + the ordering of the Dm table." + ::= { acdCfmResultTwoWayDelayEntry 1 } + +acdCfmResultTwoWayDelayPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmResultTwoWayDelayEntry 2 } + +acdCfmResultTwoWayDelayIntervalStart OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the start of the period." + ::= { acdCfmResultTwoWayDelayEntry 3 } + +acdCfmResultTwoWayDelayValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Two way delay results during this + sampling interval." + ::= { acdCfmResultTwoWayDelayEntry 4 } + +acdCfmResultTwoWayDelayAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the Two Way Delay alert." + ::= { acdCfmResultTwoWayDelayEntry 5 } + +acdCfmResultTwoWayDelayAvgAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the Two Way Average Delay alert." + ::= { acdCfmResultTwoWayDelayEntry 6 } + +acdCfmResultTwoWayDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate Two-way delay results." + ::= { acdCfmResultTwoWayDelayEntry 7 } + +acdCfmResultTwoWayDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay minimum value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDelayEntry 8 } + +acdCfmResultTwoWayDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay maximum value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDelayEntry 9 } + +acdCfmResultTwoWayDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay average value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDelayEntry 10} + +acdCfmResultTwoWayDelayThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmResultTwoWayDelayEntry 11 } + +acdCfmResultTwoWayDelayInstValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay Instantaneous value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDelayEntry 12 } + +acdCfmResultTwoWayDelayName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique string used to identify this instance. The length includes the terminating NULL character." + + ::= { acdCfmResultTwoWayDelayEntry 13 } + + +--------------------------------------------------------------------------- + -- The CFM DMM Two Way delay variation Results table + -- This table contains all CFM DMM Two Way delay variation entry results. +--------------------------------------------------------------------------- + +acdCfmResultTwoWayDvTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmResultTwoWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Two way delay variation result table of all DM entries." + ::= { acdCfmDelayMeasurement 5 } + +acdCfmResultTwoWayDvEntry OBJECT-TYPE + SYNTAX AcdCfmResultTwoWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of One Way Delay variation results for a DM entry." + INDEX { acdCfmResultTwoWayDvID } + ::= { acdCfmResultTwoWayDvTable 1 } + +AcdCfmResultTwoWayDvEntry ::= SEQUENCE { + acdCfmResultTwoWayDvID Unsigned32, + acdCfmResultTwoWayDvPeriodIndex Unsigned32, + acdCfmResultTwoWayDvIntervalStart DateAndTime, + acdCfmResultTwoWayDvValid TruthValue, + acdCfmResultTwoWayDvAlert TruthValue, + acdCfmResultTwoWayDvAvgAlert TruthValue, + acdCfmResultTwoWayDvSamples Unsigned32, + acdCfmResultTwoWayDvMinValue Integer32, + acdCfmResultTwoWayDvMaxValue Integer32, + acdCfmResultTwoWayDvAvgValue Integer32, + acdCfmResultTwoWayDvThreshExc Unsigned32, + acdCfmResultTwoWayDvInstValue Integer32, + acdCfmResultTwoWayDvName DisplayString +} + +acdCfmResultTwoWayDvID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Delay variation Measurement instance. This + value follows the ordering of the Dm table." + ::= { acdCfmResultTwoWayDvEntry 1 } + +acdCfmResultTwoWayDvPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmResultTwoWayDvEntry 2 } + +acdCfmResultTwoWayDvIntervalStart OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the start of the period." + ::= { acdCfmResultTwoWayDvEntry 3 } + +acdCfmResultTwoWayDvValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the two-way delay variation results during this + sampling interval." + ::= { acdCfmResultTwoWayDvEntry 4 } + +acdCfmResultTwoWayDvAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the Two Way Delay variation alert." + ::= { acdCfmResultTwoWayDvEntry 5 } + +acdCfmResultTwoWayDvAvgAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the Two Way Average Delay variation alert." + ::= { acdCfmResultTwoWayDvEntry 6 } + +acdCfmResultTwoWayDvSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate Two-way delay variation results." + ::= { acdCfmResultTwoWayDvEntry 7 } + +acdCfmResultTwoWayDvMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation minimum value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDvEntry 8 } + +acdCfmResultTwoWayDvMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation maximum value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDvEntry 9 } + +acdCfmResultTwoWayDvAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation average value. The value is expressed in + micro-seconds." + ::= { acdCfmResultTwoWayDvEntry 10} + +acdCfmResultTwoWayDvThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmResultTwoWayDvEntry 11 } + +acdCfmResultTwoWayDvInstValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation Instantaneous value. The value is + expressed in micro-seconds." + ::= { acdCfmResultTwoWayDvEntry 12 } + +acdCfmResultTwoWayDvName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique string used to identify this instance. The length includes the terminating NULL character." + + ::= { acdCfmResultTwoWayDvEntry 13 } + +--------------------------------------------------------------------------- + -- The CFM DMM One Way delay History Results table + -- This table contains all CFM DMM One Way delay entry History results. +--------------------------------------------------------------------------- + +acdCfmHistResultOneWayDelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmHistResultOneWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "One way delay result table of all DM entries." + ::= { acdCfmDelayMeasurement 6 } + +acdCfmHistResultOneWayDelayEntry OBJECT-TYPE + SYNTAX AcdCfmHistResultOneWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of One Way Delay results for a DM entry." + INDEX { acdCfmHistResultOneWayDelayID, + acdCfmHistResultOneWayDelaySampleIndex } + ::= { acdCfmHistResultOneWayDelayTable 1 } + +AcdCfmHistResultOneWayDelayEntry ::= SEQUENCE { + acdCfmHistResultOneWayDelayID Unsigned32, + acdCfmHistResultOneWayDelaySampleIndex Unsigned32, + acdCfmHistResultOneWayDelayStatus INTEGER, + acdCfmHistResultOneWayDelayDuration Unsigned32, + acdCfmHistResultOneWayDelayIntervalEnd DateAndTime, + acdCfmHistResultOneWayDelaySamples Unsigned32, + acdCfmHistResultOneWayDelayMinValue Integer32, + acdCfmHistResultOneWayDelayMaxValue Integer32, + acdCfmHistResultOneWayDelayAvgValue Integer32, + acdCfmHistResultOneWayDelayThreshExc Unsigned32, + acdCfmHistResultOneWayDelayName DisplayString +} + +acdCfmHistResultOneWayDelayID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Delay Measurement instance. This value follows + the ordering of the Dm table." + ::= { acdCfmHistResultOneWayDelayEntry 1 } + +acdCfmHistResultOneWayDelaySampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmHistResultOneWayDelayEntry 2 } + +acdCfmHistResultOneWayDelayStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the One-way delay results during this + sampling interval." + ::= { acdCfmHistResultOneWayDelayEntry 3 } + +acdCfmHistResultOneWayDelayDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Delay Measurement instance. This value follows + the ordering of the Dm table." + ::= { acdCfmHistResultOneWayDelayEntry 4 } + +acdCfmHistResultOneWayDelayIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of the period." + ::= { acdCfmHistResultOneWayDelayEntry 5 } + + +acdCfmHistResultOneWayDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate One-way delay results." + ::= { acdCfmHistResultOneWayDelayEntry 6 } + +acdCfmHistResultOneWayDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay minimum value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultOneWayDelayEntry 7 } + +acdCfmHistResultOneWayDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay maximum value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultOneWayDelayEntry 8 } + +acdCfmHistResultOneWayDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay average value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultOneWayDelayEntry 9} + +acdCfmHistResultOneWayDelayThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmHistResultOneWayDelayEntry 10 } + +acdCfmHistResultOneWayDelayName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique name used to identify this instance. The length includes the terminating NULL character." + ::= { acdCfmHistResultOneWayDelayEntry 11 } + +--------------------------------------------------------------------------- + -- The CFM DMM One Way delay variation History Results table + -- This table contains all CFM DMM One Way delay variation entry History results. +--------------------------------------------------------------------------- + +acdCfmHistResultOneWayDvTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmHistResultOneWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "One way delay variation result table of all DM entries." + ::= { acdCfmDelayMeasurement 7 } + +acdCfmHistResultOneWayDvEntry OBJECT-TYPE + SYNTAX AcdCfmHistResultOneWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of One Way Delay variation results for a DM entry." + INDEX { acdCfmHistResultOneWayDvID, + acdCfmHistResultOneWayDvSampleIndex } + ::= { acdCfmHistResultOneWayDvTable 1 } + +AcdCfmHistResultOneWayDvEntry ::= SEQUENCE { + acdCfmHistResultOneWayDvID Unsigned32, + acdCfmHistResultOneWayDvSampleIndex Unsigned32, + acdCfmHistResultOneWayDvStatus INTEGER, + acdCfmHistResultOneWayDvDuration Unsigned32, + acdCfmHistResultOneWayDvIntervalEnd DateAndTime, + acdCfmHistResultOneWayDvSamples Unsigned32, + acdCfmHistResultOneWayDvMinValue Integer32, + acdCfmHistResultOneWayDvMaxValue Integer32, + acdCfmHistResultOneWayDvAvgValue Integer32, + acdCfmHistResultOneWayDvThreshExc Unsigned32, + acdCfmHistResultOneWayDvName DisplayString +} + + +acdCfmHistResultOneWayDvID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Delay variation Measurement instance. This value follows + the ordering of the DM table." + ::= { acdCfmHistResultOneWayDvEntry 1 } + +acdCfmHistResultOneWayDvSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmHistResultOneWayDvEntry 2 } + +acdCfmHistResultOneWayDvStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the One-way delay variation results during this + sampling interval." + ::= { acdCfmHistResultOneWayDvEntry 3 } + +acdCfmHistResultOneWayDvDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdCfmHistResultOneWayDvEntry 4 } + +acdCfmHistResultOneWayDvIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of the period." + ::= { acdCfmHistResultOneWayDvEntry 5 } + +acdCfmHistResultOneWayDvSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate One-way delay variation results." + ::= { acdCfmHistResultOneWayDvEntry 6 } + +acdCfmHistResultOneWayDvMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation minimum value. The value is + expressed in micro-seconds." + ::= { acdCfmHistResultOneWayDvEntry 7 } + +acdCfmHistResultOneWayDvMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variationmaximum value. The value is + expressed in micro-seconds." + ::= { acdCfmHistResultOneWayDvEntry 8 } + +acdCfmHistResultOneWayDvAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation average value. The value is + expressed in micro-seconds." + ::= { acdCfmHistResultOneWayDvEntry 9 } + +acdCfmHistResultOneWayDvThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmHistResultOneWayDvEntry 10 } + +acdCfmHistResultOneWayDvName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique name used to identify this instance. The length includes the terminating NULL character." + ::= { acdCfmHistResultOneWayDvEntry 11 } + +--------------------------------------------------------------------------- + -- The CFM DMM Two Way delay History Results table + -- This table contains all CFM DMM Two Way delay entry History results. +--------------------------------------------------------------------------- + +acdCfmHistResultTwoWayDelayTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmHistResultTwoWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Two way delay result table of all DM entries." + ::= { acdCfmDelayMeasurement 8 } + +acdCfmHistResultTwoWayDelayEntry OBJECT-TYPE + SYNTAX AcdCfmHistResultTwoWayDelayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of Two Way Delay results for a DM entry." + INDEX { acdCfmHistResultTwoWayDelayID, + acdCfmHistResultTwoWayDelaySampleIndex } + ::= { acdCfmHistResultTwoWayDelayTable 1 } + +AcdCfmHistResultTwoWayDelayEntry ::= SEQUENCE { + acdCfmHistResultTwoWayDelayID Unsigned32, + acdCfmHistResultTwoWayDelaySampleIndex Unsigned32, + acdCfmHistResultTwoWayDelayStatus INTEGER, + acdCfmHistResultTwoWayDelayDuration Unsigned32, + acdCfmHistResultTwoWayDelayIntervalEnd DateAndTime, + acdCfmHistResultTwoWayDelaySamples Unsigned32, + acdCfmHistResultTwoWayDelayMinValue Integer32, + acdCfmHistResultTwoWayDelayMaxValue Integer32, + acdCfmHistResultTwoWayDelayAvgValue Integer32, + acdCfmHistResultTwoWayDelayThreshExc Unsigned32, + acdCfmHistResultTwoWayDelayName DisplayString +} + +acdCfmHistResultTwoWayDelayID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Delay Measurement instance. This value follows + the ordering of the Dm table." + ::= { acdCfmHistResultTwoWayDelayEntry 1 } + +acdCfmHistResultTwoWayDelaySampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmHistResultTwoWayDelayEntry 2 } + +acdCfmHistResultTwoWayDelayStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Two way delay results during this + sampling interval." + ::= { acdCfmHistResultTwoWayDelayEntry 3 } + +acdCfmHistResultTwoWayDelayDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdCfmHistResultTwoWayDelayEntry 4 } + +acdCfmHistResultTwoWayDelayIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of the period." + ::= { acdCfmHistResultTwoWayDelayEntry 5 } + +acdCfmHistResultTwoWayDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate Two-way delay results." + ::= { acdCfmHistResultTwoWayDelayEntry 6 } + +acdCfmHistResultTwoWayDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay minimum value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultTwoWayDelayEntry 7 } + +acdCfmHistResultTwoWayDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay maximum value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultTwoWayDelayEntry 8 } + +acdCfmHistResultTwoWayDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay average value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultTwoWayDelayEntry 9 } + +acdCfmHistResultTwoWayDelayThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmHistResultTwoWayDelayEntry 10 } + +acdCfmHistResultTwoWayDelayName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique name used to identify this instance. The length includes the terminating NULL character." + ::= { acdCfmHistResultTwoWayDelayEntry 11 } + + +--------------------------------------------------------------------------- + -- The CFM DMM Two Way delay variation History Results table + -- This table contains all CFM DMM Two Way delay variation entry History results. +--------------------------------------------------------------------------- + +acdCfmHistResultTwoWayDvTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmHistResultTwoWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Two way delay variation result table of all DM entries." + ::= { acdCfmDelayMeasurement 9 } + +acdCfmHistResultTwoWayDvEntry OBJECT-TYPE + SYNTAX AcdCfmHistResultTwoWayDvEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of two Way Delay variation results for a DM entry." + INDEX { acdCfmHistResultTwoWayDvID, + acdCfmHistResultTwoWayDvSampleIndex } + ::= { acdCfmHistResultTwoWayDvTable 1 } + +AcdCfmHistResultTwoWayDvEntry ::= SEQUENCE { + acdCfmHistResultTwoWayDvID Unsigned32, + acdCfmHistResultTwoWayDvSampleIndex Unsigned32, + acdCfmHistResultTwoWayDvStatus INTEGER, + acdCfmHistResultTwoWayDvDuration Unsigned32, + acdCfmHistResultTwoWayDvIntervalEnd DateAndTime, + acdCfmHistResultTwoWayDvSamples Unsigned32, + acdCfmHistResultTwoWayDvMinValue Integer32, + acdCfmHistResultTwoWayDvMaxValue Integer32, + acdCfmHistResultTwoWayDvAvgValue Integer32, + acdCfmHistResultTwoWayDvThreshExc Unsigned32, + acdCfmHistResultTwoWayDvName DisplayString +} + +acdCfmHistResultTwoWayDvID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Delay variation Measurement instance. This + value follows the ordering of the Dm table." + ::= { acdCfmHistResultTwoWayDvEntry 1 } + +acdCfmHistResultTwoWayDvSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same DM instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmHistResultTwoWayDvEntry 2 } + +acdCfmHistResultTwoWayDvStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the two-way delay variation results during this + sampling interval." + ::= { acdCfmHistResultTwoWayDvEntry 3 } + +acdCfmHistResultTwoWayDvDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdCfmHistResultTwoWayDvEntry 4 } + +acdCfmHistResultTwoWayDvIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of the period." + ::= { acdCfmHistResultTwoWayDvEntry 5 } + +acdCfmHistResultTwoWayDvSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate Two-way delay variation results." + ::= { acdCfmHistResultTwoWayDvEntry 6 } + +acdCfmHistResultTwoWayDvMinValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation minimum value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultTwoWayDvEntry 7 } + +acdCfmHistResultTwoWayDvMaxValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation maximum value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultTwoWayDvEntry 8 } + +acdCfmHistResultTwoWayDvAvgValue OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the two-way delay variation average value. The value is expressed in + micro-seconds." + ::= { acdCfmHistResultTwoWayDvEntry 9 } + +acdCfmHistResultTwoWayDvThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit." + ::= { acdCfmHistResultTwoWayDvEntry 10 } + +acdCfmHistResultTwoWayDvName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique name used to identify this instance. The length includes the terminating NULL character." + ::= { acdCfmHistResultTwoWayDvEntry 11 } + + +--------------------------------------------------------------------------- + -- The Packet Loss configuration table + -- This table contains all Packet Loss entry configurations. +--------------------------------------------------------------------------- + +acdCfmPktLossCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmPktLossCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of all Packet Loss entries." + ::= { acdCfmPacketLoss 1 } + +acdCfmPktLossCfgEntry OBJECT-TYPE + SYNTAX AcdCfmPktLossCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a Packet loss instance." + INDEX { acdCfmPktLossCfgID } + ::= { acdCfmPktLossCfgTable 1 } + + +AcdCfmPktLossCfgEntry ::= SEQUENCE { + acdCfmPktLossCfgID Unsigned32, + acdCfmPktLossCfgRowStatus RowStatus, + acdCfmPktLossCfgMepIdx Unsigned32, + acdCfmPktLossCfgRemoteMepId Unsigned32, + acdCfmPktLossCfgPriority Unsigned32, + acdCfmPktLossCfgEnable TruthValue, + acdCfmPktLossCfgInterval Unsigned32, + acdCfmPktLossCfgRefPeriod Unsigned32, + acdCfmPktLossCfgThresh Unsigned32, + acdCfmPktLossCfgRatioThresh Unsigned32, + acdCfmPktLossCfgName DisplayString +} + +acdCfmPktLossCfgID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Packet Loss instance. This value follows the + ordering the results table." + ::= { acdCfmPktLossCfgEntry 1 } + +acdCfmPktLossCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The writable columns in a row can not be changed if the row is active. + All columns must have a valid value before a row can be activated." + ::= { acdCfmPktLossCfgEntry 2 } + +acdCfmPktLossCfgMepIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Maintenance association End Point Identifier." + ::= { acdCfmPktLossCfgEntry 3 } + +acdCfmPktLossCfgRemoteMepId OBJECT-TYPE + SYNTAX Unsigned32 (1..8191) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Remote Maintenance association End Point Identifier." + ::= { acdCfmPktLossCfgEntry 4 } + +acdCfmPktLossCfgPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN priority. Its value ranges from 0 to 7. Same has CCM + priority for packet loss based on CCM." + DEFVAL { 0 } + ::= { acdCfmPktLossCfgEntry 5 } + +acdCfmPktLossCfgEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable CFM to perform Packet Loss measurement." + DEFVAL { false } + ::= { acdCfmPktLossCfgEntry 6 } + +acdCfmPktLossCfgInterval OBJECT-TYPE + SYNTAX Unsigned32 (1..60000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Interval in milliseconds at which CFM issues Packet Loss measurement + packets. Same has CCM interval for packet loss based on CCM." + DEFVAL { 10000 } + ::= { acdCfmPktLossCfgEntry 7 } + +acdCfmPktLossCfgRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 (1..1440) + UNITS "minutes" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Reference period in minutes for Packet Loss Measurement." + DEFVAL { 15 } + ::= { acdCfmPktLossCfgEntry 8 } + +acdCfmPktLossCfgThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of packet loss allowed without issuing an alarm." + DEFVAL { 1 } + ::= { acdCfmPktLossCfgEntry 9 } + +acdCfmPktLossCfgRatioThresh OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Packet loss ratio threshold allowed without issuing an alarm + expressed in millionth of percent (1,000,000 is 1%)." + DEFVAL { 0 } + ::= { acdCfmPktLossCfgEntry 10 } + +acdCfmPktLossCfgName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unique string for each Packet Loss instance. The length includes the terminating NULL character." + DEFVAL { ''H } -- the empty string + ::= { acdCfmPktLossCfgEntry 11 } + + + + +--------------------------------------------------------------------------- + -- The CFM Packet Loss Results table + -- This table contains all CFM DMM Packet Loss results. +--------------------------------------------------------------------------- + +acdCfmResultPktLossTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmResultPktLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet loss result table of a MEP and remote MEP pair." + ::= { acdCfmPacketLoss 2 } + +acdCfmResultPktLossEntry OBJECT-TYPE + SYNTAX AcdCfmResultPktLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of packet loss result for a specific MEP and + remote MEP pair." + INDEX { acdCfmResultPktLossID } + ::= { acdCfmResultPktLossTable 1 } + +AcdCfmResultPktLossEntry ::= SEQUENCE { + acdCfmResultPktLossID Unsigned32, + acdCfmResultPktLossPeriodIndex Unsigned32, + acdCfmResultPktLossIntervalStart DateAndTime, + acdCfmResultPktLossValid TruthValue, + acdCfmResultPktLossAlert TruthValue, + acdCfmResultPktLossSamples Counter32, + acdCfmResultPktLossOverflowSamples Counter32, + acdCfmResultPktLossHCSamples Counter64, + acdCfmResultPktLossNbrLoss Counter32, + acdCfmResultPktLossOverflowNbrLoss Counter32, + acdCfmResultPktLossHCNbrLoss Counter64, + acdCfmResultPktLossNbrGaps Counter32, + acdCfmResultPktLossOverflowNbrGaps Counter32, + acdCfmResultPktLossHCNbrGaps Counter64, + acdCfmResultPktLossLargestGap Counter32, + acdCfmResultPktLossOverflowLargestGap Counter32, + acdCfmResultPktLossHCLargestGap Counter64, + acdCfmResultPktLossRatio Unsigned32, + acdCfmResultPktLossName DisplayString +} + +acdCfmResultPktLossID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Delay variation Measurement instance. This + value follows the ordering of the Dm table." + ::= { acdCfmResultPktLossEntry 1 } + +acdCfmResultPktLossPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PL instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmResultPktLossEntry 2 } + +acdCfmResultPktLossIntervalStart OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the start of the period." + ::= { acdCfmResultPktLossEntry 3 } + +acdCfmResultPktLossValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the packet loss results during this + sampling interval." + ::= { acdCfmResultPktLossEntry 4 } + +acdCfmResultPktLossAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the Packet Loss alert." + ::= { acdCfmResultPktLossEntry 5 } + +acdCfmResultPktLossSamples OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate packet loss results." + ::= { acdCfmResultPktLossEntry 6 } + +acdCfmResultPktLossOverflowSamples OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmResultPktLossSamples counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdCfmResultPktLossSamples, it provides the equivalent of + the 64 bits counter acdCfmResultPktLossHCSamples." + ::= { acdCfmResultPktLossEntry 7 } + +acdCfmResultPktLossHCSamples OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate packet loss results." + ::= { acdCfmResultPktLossEntry 8 } + +acdCfmResultPktLossNbrLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of packet loss." + ::= { acdCfmResultPktLossEntry 9 } + +acdCfmResultPktLossOverflowNbrLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmResultPktLossNbrLoss counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdCfmResultPktLossNbrLoss, it provides the equivalent of + the 64 bits counter acdCfmResultPktLossHCNbrLoss." + ::= { acdCfmResultPktLossEntry 10 } + +acdCfmResultPktLossHCNbrLoss OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of packet loss." + ::= { acdCfmResultPktLossEntry 11 } + +acdCfmResultPktLossNbrGaps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of gap." + ::= { acdCfmResultPktLossEntry 12 } + +acdCfmResultPktLossOverflowNbrGaps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmResultPktLossNbrGaps counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdCfmResultPktLossNbrGaps, it provides the equivalent of + the 64 bits counter acdCfmResultPktLossHCNbrGaps." + ::= { acdCfmResultPktLossEntry 13 } + +acdCfmResultPktLossHCNbrGaps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of gap." + ::= { acdCfmResultPktLossEntry 14 } + +acdCfmResultPktLossLargestGap OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the largest gap size in packets." + ::= { acdCfmResultPktLossEntry 15 } + +acdCfmResultPktLossOverflowLargestGap OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmResultPktLossLargestGap counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdCfmResultPktLossLargestGap, it provides the equivalent + of the 64 bits counter acdCfmResultPktLossHCLargestGap." + ::= { acdCfmResultPktLossEntry 16 } + +acdCfmResultPktLossHCLargestGap OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the largest gap size in packets." + ::= { acdCfmResultPktLossEntry 17 } + +acdCfmResultPktLossRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the packet loss ratio. The packet loss ratio is the percent + of packets transmitted but not received in millionth of a percent + (1,000,000 is 1%)." + ::= { acdCfmResultPktLossEntry 18 } + +acdCfmResultPktLossName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique string for each Packet Loss instance. The length includes the terminating NULL character." + ::= { acdCfmResultPktLossEntry 19 } + + + +--------------------------------------------------------------------------- + -- The CFM Packet Loss History Results table + -- This table contains all CFM Packet Loss History results. +--------------------------------------------------------------------------- + +acdCfmHistResultPktLossTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmHistResultPktLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet loss history result table of a MEP and remote MEP pair." + ::= { acdCfmPacketLoss 3 } + +acdCfmHistResultPktLossEntry OBJECT-TYPE + SYNTAX AcdCfmHistResultPktLossEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of Packet loss history result for a specific + MEP and remote MEP pair." + INDEX { acdCfmHistResultPktLossID, + acdCfmHistResultPktLossSampleIndex } + ::= { acdCfmHistResultPktLossTable 1 } + +AcdCfmHistResultPktLossEntry ::= SEQUENCE { + acdCfmHistResultPktLossID Unsigned32, + acdCfmHistResultPktLossSampleIndex Unsigned32, + acdCfmHistResultPktLossStatus INTEGER, + acdCfmHistResultPktLossDuration Unsigned32, + acdCfmHistResultPktLossIntervalEnd DateAndTime, + acdCfmHistResultPktLossSamples Counter32, + acdCfmHistResultPktLossOverflowSamples Counter32, + acdCfmHistResultPktLossHCSamples Counter64, + acdCfmHistResultPktLossNbrLoss Counter32, + acdCfmHistResultPktLossOverflowNbrLoss Counter32, + acdCfmHistResultPktLossHCNbrLoss Counter64, + acdCfmHistResultPktLossNbrGaps Counter32, + acdCfmHistResultPktLossOverflowNbrGaps Counter32, + acdCfmHistResultPktLossHCNbrGaps Counter64, + acdCfmHistResultPktLossLargestGap Counter32, + acdCfmHistResultPktLossOverflowLargestGap Counter32, + acdCfmHistResultPktLossHCLargestGap Counter64, + acdCfmHistResultPktLossRatio Unsigned32, + acdCfmHistResultPktLossName DisplayString +} + +acdCfmHistResultPktLossID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Delay variation Measurement instance. This + value follows the ordering of the Dm table." + ::= { acdCfmHistResultPktLossEntry 1 } + +acdCfmHistResultPktLossSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PL instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmHistResultPktLossEntry 2 } + +acdCfmHistResultPktLossStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the packet loss results during this + sampling interval." + ::= { acdCfmHistResultPktLossEntry 3 } + +acdCfmHistResultPktLossDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdCfmHistResultPktLossEntry 4 } + + +acdCfmHistResultPktLossIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdCfmHistResultPktLossEntry 5 } + +acdCfmHistResultPktLossSamples OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate packet loss results. This is a 32 bits counter. + Combined with the overflow counter it provides the equivalent of the + 64 bits counter acdCfmHistResultPktLossHCSamples." + ::= { acdCfmHistResultPktLossEntry 6 } + +acdCfmHistResultPktLossOverflowSamples OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmHistResultPktLossSamples + counter has overflowed during this sampling interval. This is a + 32 bits counter. Combined with acdCfmHistResultPktLossSamples, it + provides the equivalent of the 64 bits counter + acdCfmHistResultPktLossHCSamples." + ::= { acdCfmHistResultPktLossEntry 7 } + +acdCfmHistResultPktLossHCSamples OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate packet loss results." + ::= { acdCfmHistResultPktLossEntry 8 } + +acdCfmHistResultPktLossNbrLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets loss during this sampling interval. This is + a 32 bits counter. Combined with the overflow counter it provides the + equivalent of the 64 bits counter acdCfmHistResultPktLossHCNbrLoss." + ::= { acdCfmHistResultPktLossEntry 9 } + +acdCfmHistResultPktLossOverflowNbrLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmHistResultPktLossNbrLoss counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdCfmHistResultPktLossNbrLoss, it provides the equivalent of + the 64 bits counter acdCfmHistResultPktLossHCNbrLoss." + ::= { acdCfmHistResultPktLossEntry 10 } + +acdCfmHistResultPktLossHCNbrLoss OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets loss during this sampling interval." + ::= { acdCfmHistResultPktLossEntry 11 } + +acdCfmHistResultPktLossNbrGaps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of gap during this sampling interval. This is a + 32 bits counter. Combined with the overflow counter it provides the + equivalent of the 64 bits counter acdCfmHistResultPktLossHCNbrGaps." + ::= { acdCfmHistResultPktLossEntry 12 } + +acdCfmHistResultPktLossOverflowNbrGaps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmHistResultPktLossNbrGaps counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdCfmHistResultPktLossNbrGaps, it provides the equivalent of + the 64 bits counter acdCfmHistResultPktLossHCNbrGaps." + ::= { acdCfmHistResultPktLossEntry 13 } + +acdCfmHistResultPktLossHCNbrGaps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of gap during this sampling interval." + ::= { acdCfmHistResultPktLossEntry 14 } + +acdCfmHistResultPktLossLargestGap OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the largest gap size in packets during this sampling interval. This is + a 32 bits counter. Combined with the overflow counter it provides the + equivalent of the 64 bits counter acdCfmHistResultPktLossHCNbrGaps." + ::= { acdCfmHistResultPktLossEntry 15 } + +acdCfmHistResultPktLossOverflowLargestGap OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdCfmHistResultPktLossLargestGap + counter has overflowed during this sampling interval. This is a + 32 bits counter. Combined with acdCfmHistResultPktLossLargestGap, it + provides the equivalent of the 64 bits counter + acdCfmHistResultPktLossHCLargestGap." + ::= { acdCfmHistResultPktLossEntry 16 } + +acdCfmHistResultPktLossHCLargestGap OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "the largest gap size in packets during this sampling interval." + ::= { acdCfmHistResultPktLossEntry 17 } + +acdCfmHistResultPktLossRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the packet loss ratio. The packet loss ratio is the percent + of packets transmitted but not received in millionth of a percent + (1,000,000 is 1%)." + ::= { acdCfmHistResultPktLossEntry 18 } + +acdCfmHistResultPktLossName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique name used to identify this instance. The length includes the terminating NULL character." + ::= { acdCfmHistResultPktLossEntry 19 } + +--------------------------------------------------------------------------- + -- The SLM configuration table + -- This table contains all SLM entry configurations. +--------------------------------------------------------------------------- + +acdCfmSlmCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmSlmCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of all SLM entries." + ::= { acdCfmSlm 1 } + +acdCfmSlmCfgEntry OBJECT-TYPE + SYNTAX AcdCfmSlmCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a SLM instance." + INDEX { acdCfmSlmCfgID } + ::= { acdCfmSlmCfgTable 1 } + + +AcdCfmSlmCfgEntry ::= SEQUENCE { + acdCfmSlmCfgID Unsigned32, + acdCfmSlmCfgRowStatus RowStatus, + acdCfmSlmCfgMepIdx Unsigned32, + acdCfmSlmCfgRemoteMepId Unsigned32, + acdCfmSlmCfgPriority Unsigned32, + acdCfmSlmCfgState TruthValue, + acdCfmSlmCfgInterval Unsigned32, + acdCfmSlmCfgRefPeriod Unsigned32, + acdCfmSlmCfgNearEndThresh Unsigned32, + acdCfmSlmCfgFarEndThresh Unsigned32, + acdCfmSlmCfgName DisplayString +} + +acdCfmSlmCfgID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each SLM instance. This value follows the + ordering the results table." + ::= { acdCfmSlmCfgEntry 1 } + +acdCfmSlmCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The writable columns in a row can not be changed if the row is active. + All columns must have a valid value before a row can be activated." + ::= { acdCfmSlmCfgEntry 2 } + +acdCfmSlmCfgMepIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maintenance association End Point Identifier." + ::= { acdCfmSlmCfgEntry 3 } + +acdCfmSlmCfgRemoteMepId OBJECT-TYPE + SYNTAX Unsigned32 (1..8191) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Remote Maintenance association End Point Identifier." + ::= { acdCfmSlmCfgEntry 4 } + +acdCfmSlmCfgPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN priority. Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdCfmSlmCfgEntry 5 } + +acdCfmSlmCfgState OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of the SLM instance" + DEFVAL { false } + ::= { acdCfmSlmCfgEntry 6 } + +acdCfmSlmCfgInterval OBJECT-TYPE + SYNTAX Unsigned32 (1..10000) + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interval in milliseconds at which CFM issues Synthetic Loss Measurement + packets." + DEFVAL { 1000 } + ::= { acdCfmSlmCfgEntry 7 } + +acdCfmSlmCfgRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 (1..1440) + UNITS "minutes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reference period in minutes for Synthetic Loss Measurement." + DEFVAL { 15 } + ::= { acdCfmSlmCfgEntry 8 } + +acdCfmSlmCfgNearEndThresh OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Near end packet loss ratio threshold allowed without issuing an alarm + expressed in millionth of percent (1,000,000 is 1%)." + DEFVAL { 1 } + ::= { acdCfmSlmCfgEntry 9 } + +acdCfmSlmCfgFarEndThresh OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Far end packet loss ratio threshold allowed without issuing an alarm + expressed in millionth of percent (1,000,000 is 1%)." + DEFVAL { 0 } + ::= { acdCfmSlmCfgEntry 10 } + +acdCfmSlmCfgName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the instance" + DEFVAL { "new" } + ::= { acdCfmSlmCfgEntry 11 } + +--------------------------------------------------------------------------- + -- The SLM Results table + -- This table contains all SLM results. +--------------------------------------------------------------------------- + +acdCfmSlmResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmSlmResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "SLM result table of a MEP and remote MEP pair." + ::= { acdCfmSlm 2 } + +acdCfmSlmResultEntry OBJECT-TYPE + SYNTAX AcdCfmSlmResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of SLM result for a specific MEP and + remote MEP pair." + INDEX { acdCfmSlmResultID } + ::= { acdCfmSlmResultTable 1 } + +AcdCfmSlmResultEntry ::= SEQUENCE { + acdCfmSlmResultID Unsigned32, + acdCfmSlmResultPeriodIndex Unsigned32, + acdCfmSlmResultIntervalStart DateAndTime, + acdCfmSlmResultValid TruthValue, + acdCfmSlmResultNearEndAlert TruthValue, + acdCfmSlmResultFarEndAlert TruthValue, + acdCfmSlmResultTxSlm Counter32, + acdCfmSlmResultRxSlr Counter32, + acdCfmSlmResultRemoteRxSlm Counter32, + acdCfmSlmResultNearEndNbrLoss Counter32, + acdCfmSlmResultFarEndNbrLoss Counter32, + acdCfmSlmResultNearEndRatio Gauge32, + acdCfmSlmResultFarEndRatio Gauge32, + acdCfmSlmResultNbrGaps Counter32, + acdCfmSlmResultLargestGap Counter32, + acdCfmSlmResultName DisplayString +} + +acdCfmSlmResultID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each SLM instance. This + value follows the ordering of the SLM table." + ::= { acdCfmSlmResultEntry 1 } + +acdCfmSlmResultPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PL instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmSlmResultEntry 2 } + +acdCfmSlmResultIntervalStart OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the start of the period." + ::= { acdCfmSlmResultEntry 3 } + +acdCfmSlmResultValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reserved for future use." + ::= { acdCfmSlmResultEntry 4 } + +acdCfmSlmResultNearEndAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the SLM near end alert." + ::= { acdCfmSlmResultEntry 5 } + +acdCfmSlmResultFarEndAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the SLM far end alert." + ::= { acdCfmSlmResultEntry 6 } + +acdCfmSlmResultTxSlm OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of SLM frames sent." + ::= { acdCfmSlmResultEntry 7 } + +acdCfmSlmResultRxSlr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of SLR frames received." + ::= { acdCfmSlmResultEntry 8 } + +acdCfmSlmResultRemoteRxSlm OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of SLM frames received at the far end." + ::= { acdCfmSlmResultEntry 9 } + +acdCfmSlmResultNearEndNbrLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of packets lost at the near end." + ::= { acdCfmSlmResultEntry 10 } + +acdCfmSlmResultFarEndNbrLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of packets lost at the far end." + ::= { acdCfmSlmResultEntry 11 } + +acdCfmSlmResultNearEndRatio OBJECT-TYPE + SYNTAX Gauge32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the packet loss ratio at the near end. + Indicates the availability ratio in millionth of a percent + (1,000,000 is 1%)." + ::= { acdCfmSlmResultEntry 12 } + +acdCfmSlmResultFarEndRatio OBJECT-TYPE + SYNTAX Gauge32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the packet loss ratio at the far end. + Indicates the availability ratio in millionth of a percent + (1,000,000 is 1%)." + ::= { acdCfmSlmResultEntry 13 } + +acdCfmSlmResultNbrGaps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of gap." + ::= { acdCfmSlmResultEntry 14 } + +acdCfmSlmResultLargestGap OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the largest gap." + ::= { acdCfmSlmResultEntry 15 } + +acdCfmSlmResultName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique string for each SLM instance. The length includes the terminating + NULL character. This is a duplicate of acdCfmSlmCfgName" + DEFVAL { ''H } -- the empty string + ::= { acdCfmSlmResultEntry 16 } + +--------------------------------------------------------------------------- + -- The SLM History Results table + -- This table contains all CFM Packet Loss History results. +--------------------------------------------------------------------------- + +acdCfmSlmHistResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmSlmHistResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "SLM history result table of a MEP and remote MEP pair." + ::= { acdCfmSlm 3 } + +acdCfmSlmHistResultEntry OBJECT-TYPE + SYNTAX AcdCfmSlmHistResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of SLM history result for a specific + MEP and remote MEP pair." + INDEX { acdCfmSlmHistResultID, acdCfmSlmHistResultPeriodIndex } + ::= { acdCfmSlmHistResultTable 1 } + +AcdCfmSlmHistResultEntry ::= SEQUENCE { + acdCfmSlmHistResultID Unsigned32, + acdCfmSlmHistResultPeriodIndex Unsigned32, + acdCfmSlmHistResultIntervalEnd DateAndTime, + acdCfmSlmHistResultTxSlm Counter32, + acdCfmSlmHistResultRxSlr Counter32, + acdCfmSlmHistResultRemoteRxSlm Counter32, + acdCfmSlmHistResultNearEndRatio Gauge32, + acdCfmSlmHistResultFarEndRatio Gauge32, + acdCfmSlmHistResultNbrGaps Counter32, + acdCfmSlmHistResultLargestGap Counter32, + acdCfmSlmHistResultInstanceIndex Unsigned32, + acdCfmSlmHistResultName DisplayString +} + +acdCfmSlmHistResultID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each SLM instance. This + value follows the ordering of the SLM table." + ::= { acdCfmSlmHistResultEntry 1 } + + +acdCfmSlmHistResultPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PL instance. + This index starts at 1 and increases by one as each new period." + ::= { acdCfmSlmHistResultEntry 2 } + +acdCfmSlmHistResultIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of the period." + ::= { acdCfmSlmHistResultEntry 3 } + +acdCfmSlmHistResultTxSlm OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of SLM frames sent." + ::= { acdCfmSlmHistResultEntry 4 } + +acdCfmSlmHistResultRxSlr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of SLR frames received." + ::= { acdCfmSlmHistResultEntry 5 } + +acdCfmSlmHistResultRemoteRxSlm OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of SLM frames received at the far end." + ::= { acdCfmSlmHistResultEntry 6 } + +acdCfmSlmHistResultNearEndRatio OBJECT-TYPE + SYNTAX Gauge32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the packet loss ratio at the near end. + Indicates the availability ratio in millionth of a percent + (1,000,000 is 1%)." + ::= { acdCfmSlmHistResultEntry 7 } + +acdCfmSlmHistResultFarEndRatio OBJECT-TYPE + SYNTAX Gauge32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the packet loss ratio at the far end. + Indicates the availability ratio in millionth of a percent + (1,000,000 is 1%)." + ::= { acdCfmSlmHistResultEntry 8 } + +acdCfmSlmHistResultNbrGaps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of gap." + ::= { acdCfmSlmHistResultEntry 9 } + +acdCfmSlmHistResultLargestGap OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the largest gap." + ::= { acdCfmSlmHistResultEntry 10 } + +acdCfmSlmHistResultInstanceIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The instance index." + ::= { acdCfmSlmHistResultEntry 11 } + +acdCfmSlmHistResultName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique string for each SLM instance. The length includes the terminating + NULL character. This is a duplicate of acdCfmSlmCfgName" + DEFVAL { ''H } -- the empty string + ::= { acdCfmSlmHistResultEntry 12 } + +--------------------------------------------------------------------------- + -- The MEP Transmit Statistics table + -- This table contains all transmit statistics related to all MEP entries. +--------------------------------------------------------------------------- + +acdCfmMepStatsTxTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmMepStatsTxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Transmit Statictics table of all MEP entries." + ::= { acdCfmMep 2 } + +acdCfmMepStatsTxEntry OBJECT-TYPE + SYNTAX AcdCfmMepStatsTxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all transmit statistics related to a MEP entry." + INDEX { acdCfmMepStatsTxID } + ::= { acdCfmMepStatsTxTable 1 } + +AcdCfmMepStatsTxEntry ::= SEQUENCE { + acdCfmMepStatsTxID Unsigned32, + acdCfmMepStatsTxCcmPdu Counter64, + acdCfmMepStatsTxLbmPdu Counter64, + acdCfmMepStatsTxLbrPdu Counter64, + acdCfmMepStatsTxLtmPdu Counter64, + acdCfmMepStatsTxLtrPdu Counter64, + acdCfmMepStatsTxAisPdu Counter64, + acdCfmMepStatsTxLckPdu Counter64, + acdCfmMepStatsTxTstPdu Counter64, + acdCfmMepStatsTxLinearApsPdu Counter64, + acdCfmMepStatsTxRingApsPdu Counter64, + acdCfmMepStatsTxMccPdu Counter64, + acdCfmMepStatsTxLmmPdu Counter64, + acdCfmMepStatsTxLmrPdu Counter64, + acdCfmMepStatsTx1dmPdu Counter64, + acdCfmMepStatsTxDmmPdu Counter64, + acdCfmMepStatsTxDmrPdu Counter64, + acdCfmMepStatsTxExmPdu Counter64, + acdCfmMepStatsTxExrPdu Counter64, + acdCfmMepStatsTxVsmPdu Counter64, + acdCfmMepStatsTxVsrPdu Counter64, + acdCfmMepStatsTxCsfPdu Counter64, + acdCfmMepStatsTxSlmPdu Counter64, + acdCfmMepStatsTxSlrPdu Counter64, + acdCfmMepStatsTxName DisplayString + +} + +acdCfmMepStatsTxID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each MEP instance. This value follows the ordering + of the MEP table." + ::= { acdCfmMepStatsTxEntry 1 } + +acdCfmMepStatsTxCcmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Continuity Check Message (CCM) + PDU transmitted by the MEP (OpCode 1)." + ::= { acdCfmMepStatsTxEntry 2 } + +acdCfmMepStatsTxLbmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of LoopBack Message (LBM) + PDU transmitted by the MEP (OpCode 3)." + ::= { acdCfmMepStatsTxEntry 3 } + +acdCfmMepStatsTxLbrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of LoopBack Reply (LBR) + PDU transmitted by the MEP (OpCode 2)." + ::= { acdCfmMepStatsTxEntry 4 } + +acdCfmMepStatsTxLtmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Link Trace Message (LTM) + PDU transmitted by the MEP (OpCode 5)." + ::= { acdCfmMepStatsTxEntry 5 } + +acdCfmMepStatsTxLtrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Link Trace Reply (LTR) + PDU transmitted by the MEP (OpCode 4)." + ::= { acdCfmMepStatsTxEntry 6 } + +acdCfmMepStatsTxAisPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Alarm Indication Signal (AIS) + PDU transmitted by the MEP (OpCode 33)." + ::= { acdCfmMepStatsTxEntry 7 } + +acdCfmMepStatsTxLckPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Locked (LCK) PDU transmitted + by the MEP (OpCode 35)." + ::= { acdCfmMepStatsTxEntry 8 } + +acdCfmMepStatsTxTstPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Test (TST) PDU transmitted by + the MEP (OpCode 37)." + ::= { acdCfmMepStatsTxEntry 9 } + +acdCfmMepStatsTxLinearApsPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of linear Automatic Protection Switching + (APS) PDU transmitted by the MEP (OpCode 39)." + ::= { acdCfmMepStatsTxEntry 10 } + +acdCfmMepStatsTxRingApsPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of ring Automatic Protection Switching + (APS) PDU transmitted by the MEP (OpCode 40)." + ::= { acdCfmMepStatsTxEntry 11 } + +acdCfmMepStatsTxMccPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Maintenance Communication + Channel (MCC) PDU transmitted by the MEP (OpCode 41)." + ::= { acdCfmMepStatsTxEntry 12 } + +acdCfmMepStatsTxLmmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Loss Measurement Message (LMM) + PDU transmitted by the MEP (OpCode 43)." + ::= { acdCfmMepStatsTxEntry 13 } + +acdCfmMepStatsTxLmrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Loss Measurement Reply (LMR) + PDU transmitted by the MEP (OpCode 42)." + ::= { acdCfmMepStatsTxEntry 14 } + +acdCfmMepStatsTx1dmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of One-way Delay Measurement (1DM) + PDU transmitted by the MEP (OpCode 45)." + ::= { acdCfmMepStatsTxEntry 15 } + +acdCfmMepStatsTxDmmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Message (DMM) + PDU transmitted by the MEP (OpCode 47)." + ::= { acdCfmMepStatsTxEntry 16 } + +acdCfmMepStatsTxDmrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Reply (DMR) + PDU transmitted by the MEP (OpCode 46)." + ::= { acdCfmMepStatsTxEntry 17 } + +acdCfmMepStatsTxExmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of EXperimental Message (EXM) + PDU transmitted by the MEP (OpCode 49)." + ::= { acdCfmMepStatsTxEntry 18 } + +acdCfmMepStatsTxExrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of EXperimental Reply (EXR) + PDU transmitted by the MEP (OpCode 48)." + ::= { acdCfmMepStatsTxEntry 19 } + +acdCfmMepStatsTxVsmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Vendor Specific Message (VSM) + PDU transmitted by the MEP (OpCode 51)." + ::= { acdCfmMepStatsTxEntry 20 } + +acdCfmMepStatsTxVsrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Vendor Specific Reply (VSR) + PDU transmitted by the MEP (OpCode 50)." + ::= { acdCfmMepStatsTxEntry 21 } + +acdCfmMepStatsTxCsfPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Client Signal Fail (CSF) + PDU transmitted by the MEP (OpCode 52)." + ::= { acdCfmMepStatsTxEntry 22 } + +acdCfmMepStatsTxSlmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Synthetic Loss Message (SLM) + PDU transmitted by the MEP (OpCode 55)." + ::= { acdCfmMepStatsTxEntry 23 } + +acdCfmMepStatsTxSlrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Synthetic Loss Reply (SLR) + PDU transmitted by the MEP (OpCode 54)." + ::= { acdCfmMepStatsTxEntry 24 } + +acdCfmMepStatsTxName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique string for each Mep instance. The length includes the terminating + NULL character. This is a duplicate of acdCfmMepCfgName" + DEFVAL { ''H } -- the empty string + ::= { acdCfmMepStatsTxEntry 25 } + + + +--------------------------------------------------------------------------- + -- The MEP Receive Statistics table + -- This table contains all receive statistics related to all MEP entries. +--------------------------------------------------------------------------- + +acdCfmMepStatsRxTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmMepStatsRxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Receive Statictics table of all MEP entries." + ::= { acdCfmMep 3 } + +acdCfmMepStatsRxEntry OBJECT-TYPE + SYNTAX AcdCfmMepStatsRxEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all receive statistics related to a MEP entry." + INDEX { acdCfmMepStatsRxID } + ::= { acdCfmMepStatsRxTable 1 } + +AcdCfmMepStatsRxEntry ::= SEQUENCE { + acdCfmMepStatsRxID Unsigned32, + acdCfmMepStatsRxCcmPdu Counter64, + acdCfmMepStatsRxLbmPdu Counter64, + acdCfmMepStatsRxLbrPdu Counter64, + acdCfmMepStatsRxLtmPdu Counter64, + acdCfmMepStatsRxLtrPdu Counter64, + acdCfmMepStatsRxAisPdu Counter64, + acdCfmMepStatsRxLckPdu Counter64, + acdCfmMepStatsRxTstPdu Counter64, + acdCfmMepStatsRxLinearApsPdu Counter64, + acdCfmMepStatsRxRingApsPdu Counter64, + acdCfmMepStatsRxMccPdu Counter64, + acdCfmMepStatsRxLmmPdu Counter64, + acdCfmMepStatsRxLmrPdu Counter64, + acdCfmMepStatsRx1dmPdu Counter64, + acdCfmMepStatsRxDmmPdu Counter64, + acdCfmMepStatsRxDmrPdu Counter64, + acdCfmMepStatsRxExmPdu Counter64, + acdCfmMepStatsRxExrPdu Counter64, + acdCfmMepStatsRxVsmPdu Counter64, + acdCfmMepStatsRxVsrPdu Counter64, + + acdCfmMepStatsRxCcmSeqErrors Counter64, + acdCfmMepStatsRxLtrUnexpectedPdu Counter64, + acdCfmMepStatsRxLtrMacErrors Counter64, + acdCfmMepStatsRxLbrOooErrors Counter64, + acdCfmMepStatsRxLbrUnexpectedPdu Counter64, + acdCfmMepStatsRxLbrDataErrors Counter64, + acdCfmMepStatsRxCsfPdu Counter64, + acdCfmMepStatsRxSlmPdu Counter64, + acdCfmMepStatsRxSlrPdu Counter64, + acdCfmMepStatsRxCsfInvalidFlags Counter64, + acdCfmMepStatsRxName DisplayString + +} + +acdCfmMepStatsRxID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "." + ::= { acdCfmMepStatsRxEntry 1 } + +acdCfmMepStatsRxCcmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Continuity Check Message (CCM) + PDU received by the MEP (OpCode 1)." + ::= { acdCfmMepStatsRxEntry 2 } + +acdCfmMepStatsRxLbmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of LoopBack Message (LBM) + PDU received by the MEP (OpCode 3)." + ::= { acdCfmMepStatsRxEntry 3 } + +acdCfmMepStatsRxLbrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of LoopBack Reply (LBR) + PDU received by the MEP (OpCode 2)." + ::= { acdCfmMepStatsRxEntry 4 } + +acdCfmMepStatsRxLtmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Link Trace Message (LTM) + PDU received by the MEP (OpCode 5)." + ::= { acdCfmMepStatsRxEntry 5 } + +acdCfmMepStatsRxLtrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Link Trace Reply (LTR) + PDU received by the MEP (OpCode 4)." + ::= { acdCfmMepStatsRxEntry 6 } + +acdCfmMepStatsRxAisPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Alarm Indication Signal (AIS) + PDU received by the MEP (OpCode 33)." + ::= { acdCfmMepStatsRxEntry 7 } + +acdCfmMepStatsRxLckPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Locked (LCK) PDU received + by the MEP (OpCode 35)." + ::= { acdCfmMepStatsRxEntry 8 } + +acdCfmMepStatsRxTstPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Test (TST) PDU received by + the MEP (OpCode 37)." + ::= { acdCfmMepStatsRxEntry 9 } + +acdCfmMepStatsRxLinearApsPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of linear Automatic Protection Switching + (APS) PDU received by the MEP (OpCode 39)." + ::= { acdCfmMepStatsRxEntry 10 } + +acdCfmMepStatsRxRingApsPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of ring Automatic Protection Switching + (APS) PDU received by the MEP (OpCode 40)." + ::= { acdCfmMepStatsRxEntry 11 } + +acdCfmMepStatsRxMccPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Maintenance Communication + Channel (MCC) PDU received by the MEP (OpCode 41)." + ::= { acdCfmMepStatsRxEntry 12 } + +acdCfmMepStatsRxLmmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Loss Measurement Message (LMM) + PDU received by the MEP (OpCode 43)." + ::= { acdCfmMepStatsRxEntry 13 } + +acdCfmMepStatsRxLmrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Loss Measurement Reply (LMR) + PDU received by the MEP (OpCode 42)." + ::= { acdCfmMepStatsRxEntry 14 } + +acdCfmMepStatsRx1dmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of One-way Delay Measurement (1DM) + PDU received by the MEP (OpCode 45)." + ::= { acdCfmMepStatsRxEntry 15 } + +acdCfmMepStatsRxDmmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Message (DMM) + PDU received by the MEP (OpCode 47)." + ::= { acdCfmMepStatsRxEntry 16 } + +acdCfmMepStatsRxDmrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Reply (DMR) + PDU received by the MEP (OpCode 46)." + ::= { acdCfmMepStatsRxEntry 17 } + +acdCfmMepStatsRxExmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of EXperimental Message (EXM) + PDU received by the MEP (OpCode 49)." + ::= { acdCfmMepStatsRxEntry 18 } + +acdCfmMepStatsRxExrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of EXperimental Reply (EXR) + PDU received by the MEP (OpCode 48)." + ::= { acdCfmMepStatsRxEntry 19 } + +acdCfmMepStatsRxVsmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Vendor Specific Message (VSM) + PDU received by the MEP (OpCode 51)." + ::= { acdCfmMepStatsRxEntry 20 } + +acdCfmMepStatsRxVsrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Vendor Specific Reply (VSR) + PDU received by the MEP (OpCode 50)." + ::= { acdCfmMepStatsRxEntry 21 } + + acdCfmMepStatsRxCcmSeqErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of out-of-sequence CCMs received from all remote + MEPs." + ::= { acdCfmMepStatsRxEntry 22 } + + acdCfmMepStatsRxLtrUnexpectedPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of LTRs received when no linktrace request is active + for that MEP." + ::= { acdCfmMepStatsRxEntry 23 } + + acdCfmMepStatsRxLtrMacErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Link Trace Replies dropped because of bad MAC + address." + ::= { acdCfmMepStatsRxEntry 24 } + + acdCfmMepStatsRxLbrOooErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of valid, out-of-order Loopback Replies received." + ::= { acdCfmMepStatsRxEntry 25 } + + acdCfmMepStatsRxLbrUnexpectedPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of LBRs received when no loopback request is active + for that MEP." + ::= { acdCfmMepStatsRxEntry 26 } + + acdCfmMepStatsRxLbrDataErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of LBRs received whose MACService Data Unit did not + match (except for the OpCode) that of the corresponding LBM." + ::= { acdCfmMepStatsRxEntry 27 } + +acdCfmMepStatsRxCsfPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Client Signal Fail (CSF) + PDU received by the MEP (OpCode 52)." + ::= { acdCfmMepStatsRxEntry 28 } + +acdCfmMepStatsRxSlmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Synthetic Loss Message (SLM) + PDU received by the MEP (OpCode 55)." + ::= { acdCfmMepStatsRxEntry 29 } + +acdCfmMepStatsRxSlrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Synthetic Loss Reply (SLR) + PDU received by the MEP (OpCode 54)." + ::= { acdCfmMepStatsRxEntry 30 } + +acdCfmMepStatsRxCsfInvalidFlags OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of ETH-CSF PDUs received with + invalid flags." + ::= { acdCfmMepStatsRxEntry 31 } + +acdCfmMepStatsRxName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique string for each Mep instance. The length includes the terminating + NULL character. This is a duplicate of acdCfmMepCfgName" + DEFVAL { ''H } -- the empty string + ::= { acdCfmMepStatsRxEntry 32 } + + + +--------------------------------------------------------------------------- + -- The DMM/DMR Statistics table + -- This table contains all DMM/DMR statistics related to a MEP entry. +--------------------------------------------------------------------------- + +acdCfmMepDmStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmMepDmStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Transmit DMM/DMR statictics per priority table for a MEP entry." + ::= { acdCfmMep 4 } + +acdCfmMepDmStatsEntry OBJECT-TYPE + SYNTAX AcdCfmMepDmStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all DMM/DMR statistics related to a MEP entry." + INDEX { acdCfmMepDmStatsID, acdCfmMepDmStatsPriority } + ::= { acdCfmMepDmStatsTable 1 } + +AcdCfmMepDmStatsEntry ::= SEQUENCE { + acdCfmMepDmStatsID Unsigned32, + acdCfmMepDmStatsPriority Unsigned32, + acdCfmMepDmStatsTxDmmPdu Counter64, + acdCfmMepDmStatsRxDmmPdu Counter64, + acdCfmMepDmStatsTxDmrPdu Counter64, + acdCfmMepDmStatsRxDmrPdu Counter64, + acdCfmMepDmStatsName DisplayString +} + +acdCfmMepDmStatsID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each MEP instance. This value follows the ordering + of the MEP table. Same as acdCfmMepStatsTxID and acdCfmMepStatsRxID." + ::= { acdCfmMepDmStatsEntry 1 } + +acdCfmMepDmStatsPriority OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each priority level." + ::= { acdCfmMepDmStatsEntry 2 } + +acdCfmMepDmStatsTxDmmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Message (DMM) + (OpCode 47) PDU transmitted by the MEP for this specific priority level." + ::= { acdCfmMepDmStatsEntry 3 } + +acdCfmMepDmStatsRxDmmPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Message (DMM) + (OpCode 47) PDU received by the MEP for this specific priority level." + ::= { acdCfmMepDmStatsEntry 4 } + +acdCfmMepDmStatsTxDmrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Reply (DMR) + (OpCode 46) PDU transmitted by the MEP for this specific priority level." + ::= { acdCfmMepDmStatsEntry 5 } + +acdCfmMepDmStatsRxDmrPdu OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of Delay Measurement Reply (DMR) + (OpCode 46) PDU received by the MEP for this specific priority level." + ::= { acdCfmMepDmStatsEntry 6 } + +acdCfmMepDmStatsName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique string for each Mep instance. The length includes the terminating + NULL character. This is a duplicate of acdCfmMepCfgName" + DEFVAL { ''H } -- the empty string + ::= { acdCfmMepDmStatsEntry 7 } + +--------------------------------------------------------------------------- + -- The MEP configuration table + -- This table contains all MEP entry configurations. +--------------------------------------------------------------------------- + +acdCfmMepCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmMepCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of all MEP entries." + ::= { acdCfmMep 5 } + +acdCfmMepCfgEntry OBJECT-TYPE + SYNTAX AcdCfmMepCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a MEP instance." + INDEX { acdCfmMepCfgIdx } + ::= { acdCfmMepCfgTable 1 } + + +AcdCfmMepCfgEntry ::= SEQUENCE { + acdCfmMepCfgIdx Unsigned32, + acdCfmMepCfgRowStatus RowStatus, + acdCfmMepCfgMdIdx Unsigned32, + acdCfmMepCfgMaIdx Unsigned32, + acdCfmMepCfgMepId Unsigned32, + acdCfmMepCfgName DisplayString, + acdCfmMepCfgPortId Unsigned32, + acdCfmMepCfgPortIdMacAddr MacAddress, + acdCfmMepCfgDirection AcdCfmMepDirection, + acdCfmMepCfgPrimaryVid VlanIdOrNone, + acdCfmMepCfgActive TruthValue, + acdCfmMepCfgCciEnable TruthValue, + acdCfmMepCfgCcmSeqEnable TruthValue, + acdCfmMepCfgPriority Unsigned32, + acdCfmMepCfgAlarmPri AcdCfmMepLowestAlarmPri, + acdCfmMepCfgFngAlarmTime Unsigned32, + acdCfmMepCfgFngResetTime Unsigned32, + acdCfmMepCfgFpEnable TruthValue, + acdCfmMepCfgFpPortId Unsigned32, + acdCfmMepCfgCsfEnable TruthValue, + acdCfmMepCfgInterfaceStatusTLVEnable TruthValue +} + +acdCfmMepCfgIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each MEP instance. This value follows the + ordering the status table." + ::= { acdCfmMepCfgEntry 1 } + +acdCfmMepCfgRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The writable columns in a row can not be changed if the row is active. + All columns must have a valid value before a row can be activated." + ::= { acdCfmMepCfgEntry 2 } + +acdCfmMepCfgMdIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maintenance Domain instance index." + ::= { acdCfmMepCfgEntry 3 } + +acdCfmMepCfgMaIdx OBJECT-TYPE + SYNTAX Unsigned32 (1..8191) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Maintenance Association instance index." + ::= { acdCfmMepCfgEntry 4 } + +acdCfmMepCfgMepId OBJECT-TYPE + SYNTAX Unsigned32 (1..8191) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Maintenance association End Point Identifier." + ::= { acdCfmMepCfgEntry 5 } + +acdCfmMepCfgName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unique string for each Mep instance. The length includes the terminating NULL character." + DEFVAL { ''H } -- the empty string + ::= { acdCfmMepCfgEntry 6 } + +acdCfmMepCfgPortId OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Port Identifier." + DEFVAL { 1 } + ::= { acdCfmMepCfgEntry 7 } + +acdCfmMepCfgPortIdMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MAC Address of the port." + ::= { acdCfmMepCfgEntry 8 } + +acdCfmMepCfgDirection OBJECT-TYPE + SYNTAX AcdCfmMepDirection + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Direction in which the Maintenance association (MEP) faces on the bridge port." + DEFVAL { 1 } + ::= { acdCfmMepCfgEntry 9 } + +acdCfmMepCfgPrimaryVid OBJECT-TYPE + SYNTAX VlanIdOrNone + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Primary Vlan Id." + DEFVAL { 0 } + ::= { acdCfmMepCfgEntry 10 } + +acdCfmMepCfgActive OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administrative state of the MEP. + A Boolean indicating the administrative state of the MEP." + DEFVAL { false } + ::= { acdCfmMepCfgEntry 11 } + +acdCfmMepCfgCciEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If set to true, the MEP will generate CCM messages." + DEFVAL { false } + ::= { acdCfmMepCfgEntry 12 } + +acdCfmMepCfgCcmSeqEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If set to true, the sequence number in the CCM PDU will increment." + DEFVAL { false } + ::= { acdCfmMepCfgEntry 13 } + +acdCfmMepCfgPriority OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The priority value for CCMs and LTMs transmitted by the MEP." + ::= { acdCfmMepCfgEntry 14 } + +acdCfmMepCfgAlarmPri OBJECT-TYPE + SYNTAX AcdCfmMepLowestAlarmPri + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The highest priority defect that has been present since the + MEPs Fault Notification Generator State Machine was last in + the FNG_RESET state." + ::= { acdCfmMepCfgEntry 15 } + +acdCfmMepCfgFngAlarmTime OBJECT-TYPE + SYNTAX Unsigned32 (2500..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time that defects must be present before a Fault Alarm is + issued (default 2500 milliseconds)." + DEFVAL { 2500 } + ::= { acdCfmMepCfgEntry 16 } + +acdCfmMepCfgFngResetTime OBJECT-TYPE + SYNTAX Unsigned32 (2500..10000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time that defects must be present before a Fault Alarm is + issued (default 10000 milliseconds)." + DEFVAL { 10000 } + ::= { acdCfmMepCfgEntry 17 } + +acdCfmMepCfgFpEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If set to true, the faults generated by this MEP will be propagated to the Fault Propagation port." + DEFVAL { false } + ::= { acdCfmMepCfgEntry 18 } + +acdCfmMepCfgFpPortId OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The fault propagation port used to propagate faults." + ::= { acdCfmMepCfgEntry 19 } + +acdCfmMepCfgCsfEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If set to true, Client Signal Fail errors will be propagated to the Fault Propagation port." + DEFVAL { false } + ::= { acdCfmMepCfgEntry 20 } + +acdCfmMepCfgInterfaceStatusTLVEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If set to true, Interface Status TLV will be included in Down MEP CCM PDU. Interface status is obtained from the Fault Propagation port." + DEFVAL { false } + ::= { acdCfmMepCfgEntry 21 } + + + +--------------------------------------------------------------------------- + -- The Configuration manager Stack Table... + -- This table ties some information together +--------------------------------------------------------------------------- + +acdCfmStackTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmStackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of stack entries." + ::= { acdCfmStack 1 } + +acdCfmStackEntry OBJECT-TYPE + SYNTAX AcdCfmStackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all informations to tie together." + INDEX { acdCfmMdIdx, acdCfmMaIdx, acdCfmMepID} + ::= { acdCfmStackTable 1 } + +AcdCfmStackEntry ::= SEQUENCE { + acdCfmMdIdx Unsigned32, + acdCfmMaIdx Unsigned32, + acdCfmMepID Unsigned32, + acdCfmMepIdx Unsigned32 + } + +acdCfmMdIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Maintenance Domain(MD) index from table dot1agCfmMepTable in IEEE8021-CFM-MIB." + ::= { acdCfmStackEntry 1 } + +acdCfmMaIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Maintenance Association(MA) index from table dot1agCfmMepTable in IEEE8021-CFM-MIB." + ::= { acdCfmStackEntry 2 } + +acdCfmMepID OBJECT-TYPE + SYNTAX Unsigned32 (1..8191) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Maintenance End Point(Mep) index from table dot1agCfmMepTable in IEEE8021-CFM-MIB." + ::= { acdCfmStackEntry 3 } + +acdCfmMepIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maintenance End Point(Mep) index from table acdCfmDmCfgTable in ACD-CFM-MIB." + ::= { acdCfmStackEntry 4 } + + +--------------------------------------------------------------------------- + -- The Interface Assign configuration table + -- This table contains the Interface Assign entry configurations. +--------------------------------------------------------------------------- + +acdCfmCfgIfAssignTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdCfmCfgIfAssignEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of interface assign entries." + ::= { acdCfmConfig 1 } + +acdCfmCfgIfAssignEntry OBJECT-TYPE + SYNTAX AcdCfmCfgIfAssignEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to assign/unassign an + interface to a mep." + INDEX { acdCfmCfgIfAssignInstIdx } + ::= { acdCfmCfgIfAssignTable 1 } + +AcdCfmCfgIfAssignEntry ::= SEQUENCE { + acdCfmCfgIfAssignRowStatus RowStatus, + acdCfmCfgIfAssignInstIdx Unsigned32, + acdCfmCfgIfAssignIfName DisplayString, + acdCfmCfgIfAssignLockAssign AcdCfmInterfaceAssign +} + +acdCfmCfgIfAssignRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated." + ::= { acdCfmCfgIfAssignEntry 1 } + +acdCfmCfgIfAssignInstIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Interface ID of interface to assign/unassing. The numbering of + this index is non-contiguous. Interfaces not present in the + table cannot be assigned to a mep." + ::= { acdCfmCfgIfAssignEntry 2 } + +acdCfmCfgIfAssignIfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System interface name of the interface to assign/unassign." + ::= { acdCfmCfgIfAssignEntry 3 } + +acdCfmCfgIfAssignLockAssign OBJECT-TYPE + SYNTAX AcdCfmInterfaceAssign + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current lock assignment configuration on an interface." + DEFVAL { unassigned } + ::= { acdCfmCfgIfAssignEntry 4 } + +-------------------------------------------------------------------------- + -- ACD-CFM-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdCfmCompliances OBJECT IDENTIFIER ::= { acdCfmConformance 1 } +acdCfmGroups OBJECT IDENTIFIER ::= { acdCfmConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdCfmDmCfgGroup OBJECT-GROUP + OBJECTS { + acdCfmDmCfgRowStatus, + acdCfmDmCfgMepIdx, + acdCfmDmCfgRemoteMepId, + acdCfmDmCfgPriority, + acdCfmDmCfgEnable, + acdCfmDmCfgInterval, + acdCfmDmCfgRefPeriod, + acdCfmDmCfgOneWayDelayEnable, + acdCfmDmCfgOneWayDelayMax, + acdCfmDmCfgOneWayDelayThresh, + acdCfmDmCfgOneWayAvgDelayThresh, + acdCfmDmCfgOneWayDvEnable, + acdCfmDmCfgOneWayDvMax, + acdCfmDmCfgOneWayDvThresh, + acdCfmDmCfgOneWayAvgDvThresh, + acdCfmDmCfgTwoWayDelayEnable, + acdCfmDmCfgTwoWayDelayMax, + acdCfmDmCfgTwoWayDelayThresh, + acdCfmDmCfgTwoWayAvgDelayThresh, + acdCfmDmCfgTwoWayDvEnable, + acdCfmDmCfgTwoWayDvMax, + acdCfmDmCfgTwoWayDvThresh, + acdCfmDmCfgTwoWayAvgDvThresh, + acdCfmDmCfgName + } + STATUS current + DESCRIPTION + "Objects for the Delay Measurement configuration Group." + ::= { acdCfmGroups 1 } + +acdCfmResultOneWayDelayGroup OBJECT-GROUP + OBJECTS { + acdCfmResultOneWayDelayPeriodIndex, + acdCfmResultOneWayDelayIntervalStart, + acdCfmResultOneWayDelayValid, + acdCfmResultOneWayDelayAlert, + acdCfmResultOneWayDelayAvgAlert, + acdCfmResultOneWayDelaySamples, + acdCfmResultOneWayDelayMinValue, + acdCfmResultOneWayDelayMaxValue, + acdCfmResultOneWayDelayAvgValue, + acdCfmResultOneWayDelayThreshExc, + acdCfmResultOneWayDelayInstValue, + acdCfmResultOneWayDelayName + } + STATUS current + DESCRIPTION + "Objects for the One Way Delay result Group." + ::= { acdCfmGroups 2 } + +acdCfmResultOneWayDvGroup OBJECT-GROUP + OBJECTS { + acdCfmResultOneWayDvPeriodIndex, + acdCfmResultOneWayDvIntervalStart, + acdCfmResultOneWayDvValid, + acdCfmResultOneWayDvAlert, + acdCfmResultOneWayDvAvgAlert, + acdCfmResultOneWayDvSamples, + acdCfmResultOneWayDvMinValue, + acdCfmResultOneWayDvMaxValue, + acdCfmResultOneWayDvAvgValue, + acdCfmResultOneWayDvThreshExc, + acdCfmResultOneWayDvInstValue, + acdCfmResultOneWayDvName + } + STATUS current + DESCRIPTION + "Objects for the One Way Delay variation result Group." + ::= { acdCfmGroups 3 } + +acdCfmResultTwoWayDelayGroup OBJECT-GROUP + OBJECTS { + acdCfmResultTwoWayDelayPeriodIndex, + acdCfmResultTwoWayDelayIntervalStart, + acdCfmResultTwoWayDelayValid, + acdCfmResultTwoWayDelayAlert, + acdCfmResultTwoWayDelayAvgAlert, + acdCfmResultTwoWayDelaySamples, + acdCfmResultTwoWayDelayMinValue, + acdCfmResultTwoWayDelayMaxValue, + acdCfmResultTwoWayDelayAvgValue, + acdCfmResultTwoWayDelayThreshExc, + acdCfmResultTwoWayDelayInstValue, + acdCfmResultTwoWayDelayName + } + STATUS current + DESCRIPTION + "Objects for the Two Way Delay result Group." + ::= { acdCfmGroups 4 } + +acdCfmResultTwoWayDvGroup OBJECT-GROUP + OBJECTS { + acdCfmResultTwoWayDvPeriodIndex, + acdCfmResultTwoWayDvIntervalStart, + acdCfmResultTwoWayDvValid, + acdCfmResultTwoWayDvAlert, + acdCfmResultTwoWayDvAvgAlert, + acdCfmResultTwoWayDvSamples, + acdCfmResultTwoWayDvMinValue, + acdCfmResultTwoWayDvMaxValue, + acdCfmResultTwoWayDvAvgValue, + acdCfmResultTwoWayDvThreshExc, + acdCfmResultTwoWayDvInstValue, + acdCfmResultTwoWayDvName + } + STATUS current + DESCRIPTION + "Objects for the Two Way Delay varition result Group." + ::= { acdCfmGroups 5 } + +acdCfmHistResultOneWayDelayGroup OBJECT-GROUP + OBJECTS { + acdCfmHistResultOneWayDelayID, + acdCfmHistResultOneWayDelaySampleIndex, + acdCfmHistResultOneWayDelayStatus, + acdCfmHistResultOneWayDelayDuration, + acdCfmHistResultOneWayDelayIntervalEnd, + acdCfmHistResultOneWayDelaySamples, + acdCfmHistResultOneWayDelayMinValue, + acdCfmHistResultOneWayDelayMaxValue, + acdCfmHistResultOneWayDelayAvgValue, + acdCfmHistResultOneWayDelayThreshExc, + acdCfmHistResultOneWayDelayName + } + STATUS current + DESCRIPTION + "Objects for the One Way Delay history result Group." + ::= { acdCfmGroups 6 } + +acdCfmHistResultOneWayDvGroup OBJECT-GROUP + OBJECTS { + acdCfmHistResultOneWayDvID, + acdCfmHistResultOneWayDvSampleIndex, + acdCfmHistResultOneWayDvStatus, + acdCfmHistResultOneWayDvDuration, + acdCfmHistResultOneWayDvIntervalEnd, + acdCfmHistResultOneWayDvSamples, + acdCfmHistResultOneWayDvMinValue, + acdCfmHistResultOneWayDvMaxValue, + acdCfmHistResultOneWayDvAvgValue, + acdCfmHistResultOneWayDvThreshExc, + acdCfmHistResultOneWayDvName + } + STATUS current + DESCRIPTION + "Objects for the One Way Delay variation history result Group." + ::= { acdCfmGroups 7 } + +acdCfmHistResultTwoWayDelayGroup OBJECT-GROUP + OBJECTS { + acdCfmHistResultTwoWayDelayID, + acdCfmHistResultTwoWayDelaySampleIndex, + acdCfmHistResultTwoWayDelayStatus, + acdCfmHistResultTwoWayDelayDuration, + acdCfmHistResultTwoWayDelayIntervalEnd, + acdCfmHistResultTwoWayDelaySamples, + acdCfmHistResultTwoWayDelayMinValue, + acdCfmHistResultTwoWayDelayMaxValue, + acdCfmHistResultTwoWayDelayAvgValue, + acdCfmHistResultTwoWayDelayThreshExc, + acdCfmHistResultTwoWayDelayName + } + STATUS current + DESCRIPTION + "Objects for the Two Way Delay history result Group." + ::= { acdCfmGroups 8 } + +acdCfmHistResultTwoWayDvGroup OBJECT-GROUP + OBJECTS { + acdCfmHistResultTwoWayDvID, + acdCfmHistResultTwoWayDvSampleIndex, + acdCfmHistResultTwoWayDvStatus, + acdCfmHistResultTwoWayDvDuration, + acdCfmHistResultTwoWayDvIntervalEnd, + acdCfmHistResultTwoWayDvSamples, + acdCfmHistResultTwoWayDvMinValue, + acdCfmHistResultTwoWayDvMaxValue, + acdCfmHistResultTwoWayDvAvgValue, + acdCfmHistResultTwoWayDvThreshExc, + acdCfmHistResultTwoWayDvName + } + STATUS current + DESCRIPTION + "Objects for the Two Way Delay variation history result Group." + ::= { acdCfmGroups 9 } + + +acdCfmPktLossCfgGroup OBJECT-GROUP + OBJECTS { + acdCfmPktLossCfgRowStatus, + acdCfmPktLossCfgMepIdx, + acdCfmPktLossCfgRemoteMepId, + acdCfmPktLossCfgPriority, + acdCfmPktLossCfgEnable, + acdCfmPktLossCfgInterval, + acdCfmPktLossCfgRefPeriod, + acdCfmPktLossCfgThresh, + acdCfmPktLossCfgRatioThresh, + acdCfmPktLossCfgName + } + STATUS current + DESCRIPTION + "Objects for Packet loss configuration Group." + ::= { acdCfmGroups 10 } + +acdCfmResultPktLossGroup OBJECT-GROUP + OBJECTS { + acdCfmResultPktLossPeriodIndex, + acdCfmResultPktLossIntervalStart, + acdCfmResultPktLossValid, + acdCfmResultPktLossAlert, + acdCfmResultPktLossSamples, + acdCfmResultPktLossOverflowSamples, + acdCfmResultPktLossHCSamples, + acdCfmResultPktLossNbrLoss, + acdCfmResultPktLossOverflowNbrLoss, + acdCfmResultPktLossHCNbrLoss, + acdCfmResultPktLossNbrGaps, + acdCfmResultPktLossOverflowNbrGaps, + acdCfmResultPktLossHCNbrGaps, + acdCfmResultPktLossLargestGap, + acdCfmResultPktLossOverflowLargestGap, + acdCfmResultPktLossHCLargestGap, + acdCfmResultPktLossRatio, + acdCfmResultPktLossName + } + STATUS current + DESCRIPTION + "Objects for Packet loss result Group." + ::= { acdCfmGroups 11 } + +acdCfmHistResultPktLossGroup OBJECT-GROUP + OBJECTS { + acdCfmHistResultPktLossID, + acdCfmHistResultPktLossSampleIndex, + acdCfmHistResultPktLossStatus, + acdCfmHistResultPktLossDuration, + acdCfmHistResultPktLossIntervalEnd, + acdCfmHistResultPktLossSamples, + acdCfmHistResultPktLossOverflowSamples, + acdCfmHistResultPktLossHCSamples, + acdCfmHistResultPktLossNbrLoss, + acdCfmHistResultPktLossOverflowNbrLoss, + acdCfmHistResultPktLossHCNbrLoss, + acdCfmHistResultPktLossNbrGaps, + acdCfmHistResultPktLossOverflowNbrGaps, + acdCfmHistResultPktLossHCNbrGaps, + acdCfmHistResultPktLossLargestGap, + acdCfmHistResultPktLossOverflowLargestGap, + acdCfmHistResultPktLossHCLargestGap, + acdCfmHistResultPktLossRatio, + acdCfmHistResultPktLossName + } + STATUS current + DESCRIPTION + "Objects for Packet loss history result Group." + ::= { acdCfmGroups 12 } + +acdCfmMepStatsTxGroup OBJECT-GROUP + OBJECTS { + acdCfmMepStatsTxCcmPdu, + acdCfmMepStatsTxLbmPdu, + acdCfmMepStatsTxLbrPdu, + acdCfmMepStatsTxLtmPdu, + acdCfmMepStatsTxLtrPdu, + acdCfmMepStatsTxAisPdu, + acdCfmMepStatsTxLckPdu, + acdCfmMepStatsTxTstPdu, + acdCfmMepStatsTxLinearApsPdu, + acdCfmMepStatsTxRingApsPdu, + acdCfmMepStatsTxMccPdu, + acdCfmMepStatsTxLmmPdu, + acdCfmMepStatsTxLmrPdu, + acdCfmMepStatsTx1dmPdu, + acdCfmMepStatsTxDmmPdu, + acdCfmMepStatsTxDmrPdu, + acdCfmMepStatsTxExmPdu, + acdCfmMepStatsTxExrPdu, + acdCfmMepStatsTxVsmPdu, + acdCfmMepStatsTxVsrPdu, + acdCfmMepStatsTxCsfPdu, + acdCfmMepStatsTxSlmPdu, + acdCfmMepStatsTxSlrPdu, + acdCfmMepStatsTxName + } + STATUS current + DESCRIPTION + "Objects for MEP transmit statistics Group." + ::= { acdCfmGroups 13 } + +acdCfmMepStatsRxGroup OBJECT-GROUP + OBJECTS { + acdCfmMepStatsRxCcmPdu, + acdCfmMepStatsRxLbmPdu, + acdCfmMepStatsRxLbrPdu, + acdCfmMepStatsRxLtmPdu, + acdCfmMepStatsRxLtrPdu, + acdCfmMepStatsRxAisPdu, + acdCfmMepStatsRxLckPdu, + acdCfmMepStatsRxTstPdu, + acdCfmMepStatsRxLinearApsPdu, + acdCfmMepStatsRxRingApsPdu, + acdCfmMepStatsRxMccPdu, + acdCfmMepStatsRxLmmPdu, + acdCfmMepStatsRxLmrPdu, + acdCfmMepStatsRx1dmPdu, + acdCfmMepStatsRxDmmPdu, + acdCfmMepStatsRxDmrPdu, + acdCfmMepStatsRxExmPdu, + acdCfmMepStatsRxExrPdu, + acdCfmMepStatsRxVsmPdu, + acdCfmMepStatsRxVsrPdu, + acdCfmMepStatsRxCcmSeqErrors, + acdCfmMepStatsRxLtrUnexpectedPdu, + acdCfmMepStatsRxLtrMacErrors, + acdCfmMepStatsRxLbrOooErrors, + acdCfmMepStatsRxLbrUnexpectedPdu, + acdCfmMepStatsRxLbrDataErrors, + acdCfmMepStatsRxCsfPdu, + acdCfmMepStatsRxSlrPdu, + acdCfmMepStatsRxCsfInvalidFlags, + acdCfmMepStatsRxName + } + STATUS current + DESCRIPTION + "Objects for MEP receive statistics Group." + ::= { acdCfmGroups 14 } + +acdCfmMepDmStatsGroup OBJECT-GROUP + OBJECTS { + acdCfmMepDmStatsTxDmmPdu, + acdCfmMepDmStatsRxDmmPdu, + acdCfmMepDmStatsTxDmrPdu, + acdCfmMepDmStatsRxDmrPdu, + acdCfmMepDmStatsName + } + STATUS current + DESCRIPTION + "Objects for DMM/DMR MEP statistics Group." + ::= { acdCfmGroups 15 } + +acdCfmMepStackGroup OBJECT-GROUP + OBJECTS { + acdCfmMepIdx + } + STATUS current + DESCRIPTION + "Objects for cfm Stack Group." + ::= { acdCfmGroups 16 } + +acdCfmMepSlmStatsGroup OBJECT-GROUP + OBJECTS { + acdCfmMepStatsTxSlmPdu, + acdCfmMepStatsRxSlmPdu, + acdCfmMepStatsTxSlrPdu, + acdCfmMepStatsRxSlrPdu + } + STATUS current + DESCRIPTION + "Objects for SLM/SLR MEP statistics Group." + ::= { acdCfmGroups 17 } + +acdCfmSlmCfgGroup OBJECT-GROUP + OBJECTS { + acdCfmSlmCfgRowStatus, + acdCfmSlmCfgMepIdx, + acdCfmSlmCfgRemoteMepId, + acdCfmSlmCfgPriority, + acdCfmSlmCfgState, + acdCfmSlmCfgInterval, + acdCfmSlmCfgRefPeriod, + acdCfmSlmCfgNearEndThresh, + acdCfmSlmCfgFarEndThresh, + acdCfmSlmCfgName + } + STATUS current + DESCRIPTION + "Objects for SLM configuration Group." + ::= { acdCfmGroups 18 } + +acdCfmSlmResultGroup OBJECT-GROUP + OBJECTS { + acdCfmSlmResultPeriodIndex, + acdCfmSlmResultIntervalStart, + acdCfmSlmResultValid, + acdCfmSlmResultNearEndAlert, + acdCfmSlmResultFarEndAlert, + acdCfmSlmResultTxSlm, + acdCfmSlmResultRxSlr, + acdCfmSlmResultRemoteRxSlm, + acdCfmSlmResultNearEndNbrLoss, + acdCfmSlmResultFarEndNbrLoss, + acdCfmSlmResultNearEndRatio, + acdCfmSlmResultFarEndRatio, + acdCfmSlmResultNbrGaps, + acdCfmSlmResultLargestGap, + acdCfmSlmResultName + } + STATUS current + DESCRIPTION + "Objects for SLM result Group." + ::= { acdCfmGroups 19 } + +acdCfmSlmHistResultGroup OBJECT-GROUP + OBJECTS { + acdCfmSlmHistResultID, + acdCfmSlmHistResultPeriodIndex, + acdCfmSlmHistResultIntervalEnd, + acdCfmSlmHistResultTxSlm, + acdCfmSlmHistResultRxSlr, + acdCfmSlmHistResultRemoteRxSlm, + acdCfmSlmHistResultNearEndRatio, + acdCfmSlmHistResultFarEndRatio, + acdCfmSlmHistResultNbrGaps, + acdCfmSlmHistResultLargestGap, + acdCfmSlmHistResultInstanceIndex, + acdCfmSlmHistResultName + } + STATUS current + DESCRIPTION + "Objects for SLM history result Group." + ::= { acdCfmGroups 20 } + +acdCfmMepCfgGroup OBJECT-GROUP + OBJECTS { + acdCfmMepCfgRowStatus, + acdCfmMepCfgMdIdx, + acdCfmMepCfgMaIdx, + acdCfmMepCfgMepId, + acdCfmMepCfgName, + acdCfmMepCfgPortId, + acdCfmMepCfgPortIdMacAddr, + acdCfmMepCfgDirection, + acdCfmMepCfgPrimaryVid, + acdCfmMepCfgActive, + acdCfmMepCfgCciEnable, + acdCfmMepCfgCcmSeqEnable, + acdCfmMepCfgPriority, + acdCfmMepCfgAlarmPri, + acdCfmMepCfgFngAlarmTime, + acdCfmMepCfgFngResetTime, + acdCfmMepCfgFpEnable, + acdCfmMepCfgFpPortId, + acdCfmMepCfgCsfEnable, + acdCfmMepCfgInterfaceStatusTLVEnable + } + STATUS current + DESCRIPTION + "Objects for MEP Config Group." + ::= { acdCfmGroups 21 } + +acdCfmCfgIfAssignGroup OBJECT-GROUP + OBJECTS { + acdCfmCfgIfAssignRowStatus, + acdCfmCfgIfAssignIfName, + acdCfmCfgIfAssignLockAssign + } + STATUS current + DESCRIPTION + "Objects for configuration of interface assign Group." + ::= { acdCfmGroups 22 } + + +acdCfmCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-CFM-MIB module." + MODULE + MANDATORY-GROUPS { + acdCfmDmCfgGroup, + acdCfmResultOneWayDelayGroup, + acdCfmResultOneWayDvGroup, + acdCfmResultTwoWayDelayGroup, + acdCfmResultTwoWayDvGroup, + acdCfmHistResultOneWayDelayGroup, + acdCfmHistResultOneWayDvGroup, + acdCfmHistResultTwoWayDelayGroup, + acdCfmHistResultTwoWayDvGroup, + acdCfmPktLossCfgGroup, + acdCfmResultPktLossGroup, + acdCfmHistResultPktLossGroup, + acdCfmMepStatsTxGroup, + acdCfmMepStatsRxGroup, + acdCfmMepDmStatsGroup, + acdCfmMepStackGroup, + acdCfmMepSlmStatsGroup, + acdCfmSlmCfgGroup, + acdCfmSlmResultGroup, + acdCfmSlmHistResultGroup, + acdCfmMepCfgGroup, + acdCfmCfgIfAssignGroup + } + + OBJECT acdCfmDmCfgRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdCfmPktLossCfgRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdCfmSlmCfgRowStatus + SYNTAX RowStatus { active(1) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdCfmMepCfgRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdCfmCfgIfAssignRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + + ::= { acdCfmCompliances 1 } +END + diff --git a/mibs/accedian/ACD-DESC-MIB b/mibs/accedian/ACD-DESC-MIB new file mode 100644 index 0000000..a25167d --- /dev/null +++ b/mibs/accedian/ACD-DESC-MIB @@ -0,0 +1,544 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2015, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document is subject to change without notice. +-- + +ACD-DESC-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Integer32, Unsigned32, Gauge32 + FROM SNMPv2-SMI + DisplayString, TruthValue, MacAddress + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + sysName + FROM SNMPv2-MIB + acdProducts + FROM ACCEDIAN-SMI; + +acdDesc MODULE-IDENTITY + + LAST-UPDATED "201512250100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Accedian Networks device Description MIB." + + REVISION "201512250100Z" -- 25 Dec 2015 + DESCRIPTION + "Added hardware options information." + + REVISION "201407020100Z" -- 2 July 2014 + DESCRIPTION + "Added system uptime in seconds." + + REVISION "201308100100Z" -- 10 August 2013 + DESCRIPTION + "Add label for Temperature sensors. Add note about LT + products truncating of values" + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Fix compliance statement." + + REVISION "201006300100Z" -- 30 june 2010 + DESCRIPTION + "Revision for 10GE product introduction." + + REVISION "200902040100Z" -- 4 Feb 2009 + DESCRIPTION + "Add sysName in power lost (Dying gasp) notification." + + REVISION "200812010100Z" -- 1 Dec 2008 + DESCRIPTION + "Add power lost (Dying gasp) notification." + + REVISION "200608060100Z" -- 6 Aug 2006 + DESCRIPTION + "Initial version of MIB module ACD-DESC-MIB." + + ::= { acdProducts 1 } + +acdDescNotifications OBJECT IDENTIFIER ::= { acdDesc 0 } +acdDescMIBObjects OBJECT IDENTIFIER ::= { acdDesc 15 } +acdDescConformance OBJECT IDENTIFIER ::= { acdDescMIBObjects 1 } + +--------------------------------------------------------------------------- + -- EtherNID General information +--------------------------------------------------------------------------- + +acdDescCommercialName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This string is to describe the type of device." + ::= { acdDesc 1 } + +acdDescMacBaseAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the Base of the EtherNID MAC addresses." + ::= { acdDesc 2 } + +acdDescIdentifier OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the EtherNID on your network." + ::= { acdDesc 3 } + +acdDescFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the version of the firmware currently loaded." + ::= { acdDesc 4 } + +acdDescHardwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the assembly ID of the hardware." + ::= { acdDesc 5 } + +acdDescSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the serial number." + ::= { acdDesc 6 } + +acdDescHardwareOptions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Hardware options." + ::= { acdDesc 7 } + +acdDescCpuUsageCurrent OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current percentage of CPU usage." + ::= { acdDesc 20 } + +acdDescCpuUsageAverage15 OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average percentage of CPU usage over the last 15 seconds. + This object range from (0..100)." + ::= { acdDesc 21 } + +acdDescCpuUsageAverage30 OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average percentage of CPU usage over the last 30 seconds. + This object range from (0..100)." + ::= { acdDesc 22 } + +acdDescCpuUsageAverage60 OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average percentage of CPU usage over the last 60 seconds. + This object range from (0..100)." + ::= { acdDesc 23 } + +acdDescCpuUsageAverage900 OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average percentage of CPU usage over the last 900 + seconds. This object range from (0..100)." + ::= { acdDesc 24 } + +acdDescUptime OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of seconds elapsed since boot." + ::= { acdDesc 25 } + +--------------------------------------------------------------------------- + -- The connector table + -- This table contains all the information related to the connector. +--------------------------------------------------------------------------- + +acdDescConnectorTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdDescConnectorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all connectors info" + ::= { acdDesc 10 } + +acdDescConnectorEntry OBJECT-TYPE + SYNTAX AcdDescConnectorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is the product connector definition." + INDEX { acdDescConnectorID } + ::= { acdDescConnectorTable 1 } + + +AcdDescConnectorEntry ::= SEQUENCE { + acdDescConnectorID Unsigned32, + acdDescConnectorName DisplayString, + acdDescConnectorType INTEGER, + acdDescConnectorPoESupport TruthValue +} + +acdDescConnectorID OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each connector. Starting to one from left to right." + ::= { acdDescConnectorEntry 1 } + +acdDescConnectorName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the connector on the silkscreen." + ::= { acdDescConnectorEntry 2 } + +acdDescConnectorType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + rj45(2), + rj45S(3), -- rj45 shielded + db9(4), + bnc(5), + fAUI(6), -- female aui + mAUI(7), -- male aui + fiberSC(8), + fiberMIC(9), + fiberST(10), + telco(11), + mtrj(12), -- fiber MT-RJ + hssdc(13), -- fiber channel style-2 + fiberLC(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Describe the connector type, for instance an RJ-45 or an SFP." + ::= { acdDescConnectorEntry 3 } + +acdDescConnectorPoESupport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the port support PoE or not." + ::= { acdDescConnectorEntry 4 } + +--------------------------------------------------------------------------- + -- The Power Supply table + -- This table contains all the information related to the Power supplies. +--------------------------------------------------------------------------- + +acdDescPwrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdDescPwrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Power Supplies" + ::= { acdDesc 11 } + +acdDescPwrEntry OBJECT-TYPE + SYNTAX AcdDescPwrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is the product available power supplies information." + INDEX { acdDescPwrID } + ::= { acdDescPwrTable 1 } + + +AcdDescPwrEntry ::= SEQUENCE { + acdDescPwrID Unsigned32, + acdDescPwrName DisplayString, + acdDescPwrType INTEGER, + acdDescPwrPresent TruthValue +} + +acdDescPwrID OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each power supply." + ::= { acdDescPwrEntry 1 } + +acdDescPwrName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the power supply." + ::= { acdDescPwrEntry 2 } + +acdDescPwrType OBJECT-TYPE + SYNTAX INTEGER { + pwrplus5volts(1), + pwrminus48volts(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Describe the Power Supply type." + ::= { acdDescPwrEntry 3 } + +acdDescPwrPresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the power supply is present or not." + ::= { acdDescPwrEntry 4 } + +--------------------------------------------------------------------------- + -- The Temperature sensor table + -- This table contains all the information for the Temperature sensors. +--------------------------------------------------------------------------- + +acdDescTsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdDescTsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Teperature Sensors." + ::= { acdDesc 12 } + +acdDescTsEntry OBJECT-TYPE + SYNTAX AcdDescTsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is the product available Temperature sensor information." + INDEX { acdDescTsID } + ::= { acdDescTsTable 1 } + + +AcdDescTsEntry ::= SEQUENCE { + acdDescTsID Unsigned32, + acdDescTsCurrentTemp Integer32, + acdDescTsFirstThres Integer32, + acdDescTsFisrtThresPass TruthValue, + acdDescTsSecondThres Integer32, + acdDescTsSecondThresPass TruthValue, + acdDescTsLabel DisplayString +} + +acdDescTsID OBJECT-TYPE + SYNTAX Unsigned32(1..4294967295) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Temperature Sensor." + ::= { acdDescTsEntry 1 } + +acdDescTsCurrentTemp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current temperature in Celsius around the temperature sensor. + On LT and LT-S units this value is truncated and does not + include the decimals." + ::= { acdDescTsEntry 2 } + +acdDescTsFirstThres OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Temperature value in Celsius to declare this threshold crossed. + On LT and LT-S units this value is truncated and does not + include the decimals." + ::= { acdDescTsEntry 3 } + +acdDescTsFisrtThresPass OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the temperature cross the first threshold." + ::= { acdDescTsEntry 4 } + +acdDescTsSecondThres OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Temperature value in Celsius to declare this second threshold crossed. + On LT and LT-S units this value is truncated and does not + include the decimals." + ::= { acdDescTsEntry 5 } + +acdDescTsSecondThresPass OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the temperature cross the second threshold." + ::= { acdDescTsEntry 6 } + +acdDescTsLabel OBJECT-TYPE + SYNTAX DisplayString(SIZE(1..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Label of the temperature sensor." + ::= { acdDescTsEntry 7 } + +-- **************************************************************************** +-- NOTIFICATIONS (TRAPS) +-- **************************************************************************** + +acdPowerLost NOTIFICATION-TYPE + OBJECTS { acdDescCommercialName, + acdDescMacBaseAddr, + acdDescIdentifier, + acdDescSerialNumber, + sysName } + STATUS current + DESCRIPTION + "The SNMP trap that is generated by a unit when it detect a power lost. + It's the equivalent of the 802.3ah dying gasp." + + ::= { acdDescNotifications 1 } + + +--------------------------------------------------------------------------- + -- ACD-DESC-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdDescCompliances OBJECT IDENTIFIER ::= { acdDescConformance 1 } +acdDescGroups OBJECT IDENTIFIER ::= { acdDescConformance 2 } + +--------------------------------------------------------------------------- +-- Units of conformance +--------------------------------------------------------------------------- + +acdDescGenGroup OBJECT-GROUP + OBJECTS { + acdDescCommercialName, + acdDescMacBaseAddr, + acdDescIdentifier, + acdDescFirmwareVersion, + acdDescHardwareVersion, + acdDescSerialNumber, + acdDescHardwareOptions, + acdDescCpuUsageCurrent, + acdDescCpuUsageAverage15, + acdDescCpuUsageAverage30, + acdDescCpuUsageAverage60, + acdDescCpuUsageAverage900, + acdDescUptime + } + STATUS current + DESCRIPTION + "." + ::= { acdDescGroups 1 } + +acdDescConnectorGroup OBJECT-GROUP + OBJECTS { + acdDescConnectorName, + acdDescConnectorType, + acdDescConnectorPoESupport + } + STATUS current + DESCRIPTION + "." + ::= { acdDescGroups 2 } + +acdDescPwrGroup OBJECT-GROUP + OBJECTS { + acdDescPwrName, + acdDescPwrType, + acdDescPwrPresent + } + STATUS current + DESCRIPTION + "." + ::= { acdDescGroups 3 } + +acdDescTsGroup OBJECT-GROUP + OBJECTS { + acdDescTsCurrentTemp, + acdDescTsFirstThres, + acdDescTsFisrtThresPass, + acdDescTsSecondThres, + acdDescTsSecondThresPass, + acdDescTsLabel + } + STATUS current + DESCRIPTION + "." + ::= { acdDescGroups 4 } + +acdDescNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { + acdPowerLost + } + STATUS current + DESCRIPTION + "Objects for the Notifications group." + ::= { acdDescGroups 5 } + +--------------------------------------------------------------------------- +-- MIB Module Compliance statements +--------------------------------------------------------------------------- +acdDescCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-DESC-MIB module." + MODULE + MANDATORY-GROUPS { + acdDescGenGroup, + acdDescConnectorGroup, + acdDescPwrGroup, + acdDescTsGroup, + acdDescNotificationsGroup + } + + ::= { acdDescCompliances 1 } + +END diff --git a/mibs/accedian/ACD-DISCOVERY-MIB b/mibs/accedian/ACD-DISCOVERY-MIB new file mode 100644 index 0000000..356684e --- /dev/null +++ b/mibs/accedian/ACD-DISCOVERY-MIB @@ -0,0 +1,511 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2011, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-DISCOVERY-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress, Unsigned32 FROM SNMPv2-SMI + DisplayString, DateAndTime, MacAddress FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF + acdMibs FROM ACCEDIAN-SMI; + +acdDiscovery MODULE-IDENTITY + + LAST-UPDATED "201210110100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The discovery inventory information for this Accedian Networks device." + + REVISION "201210110100Z" -- 11 October 2012 + DESCRIPTION + "Addition of MAC Address List table." + + REVISION "201111010100Z" -- 1 November 2011 + DESCRIPTION + "Addition of MAC Address List table." + + REVISION "200810010100Z" -- 1 October 2008 + DESCRIPTION + "Initial version of MIB module ACD-DISCOVERY-MIB." + + ::= { acdMibs 11 } + +acdDiscoveryNotifications OBJECT IDENTIFIER ::= { acdDiscovery 0 } +acdDiscoveryMIBObjects OBJECT IDENTIFIER ::= { acdDiscovery 1 } +acdDiscoveryConformance OBJECT IDENTIFIER ::= { acdDiscovery 2 } + +-- +-- ACD Discovery MIB Objects +-- + +acdDiscoveryInventory OBJECT IDENTIFIER ::= { acdDiscoveryMIBObjects 1 } + +------------------------------------------------------------------------------- + -- The discovery inventory table. + -- This table contains the information on all the NID neighbors. +------------------------------------------------------------------------------- + +acdDiscoveryInventoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdDiscoveryInventoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of information on neighboring NIDs" + ::= { acdDiscoveryInventory 1 } + +acdDiscoveryInventoryEntry OBJECT-TYPE + SYNTAX AcdDiscoveryInventoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Inventory information." + INDEX { acdDiscoveryIndex } + ::= { acdDiscoveryInventoryTable 1 } + + +AcdDiscoveryInventoryEntry ::= SEQUENCE { + acdDiscoveryIndex Unsigned32, + acdDiscoveryMgmtIpAddress IpAddress, + acdDiscoverySystemName DisplayString, + acdDiscoverySystemDesc DisplayString, + acdDiscoverySerialNumber DisplayString, + acdDiscoveryLastChange DateAndTime, + acdDiscoveryDomain DisplayString, + acdDiscoveryFirmware DisplayString, + acdDiscoveryBaseMacAddress MacAddress, + acdDiscoveryInterfaceMacAddress MacAddress, + acdDiscoveryChassisIdSubtype Unsigned32, + acdDiscoveryChassisId DisplayString, + acdDiscoveryLocalPortId DisplayString, + acdDiscoveryRemotePortId DisplayString, + acdDiscoveryWebServerPort Unsigned32, + acdDiscoverySnmpAgentPort Unsigned32, + acdDiscoverySshPort Unsigned32, + acdDiscoveryVlan1 Unsigned32, + acdDiscoveryVlan2 Unsigned32 +} + +acdDiscoveryIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdDiscovery + entry." + ::= { acdDiscoveryInventoryEntry 1 } + +acdDiscoveryMgmtIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the management interface." + ::= { acdDiscoveryInventoryEntry 2 } + +acdDiscoverySystemName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An administratively-assigned name for this managed node." + ::= { acdDiscoveryInventoryEntry 3 } + +acdDiscoverySystemDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system description." + ::= { acdDiscoveryInventoryEntry 4 } + +acdDiscoverySerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the serial number of the unit." + ::= { acdDiscoveryInventoryEntry 5 } + +acdDiscoveryLastChange OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the last time we received an information frame for the device." + ::= { acdDiscoveryInventoryEntry 6 } + +acdDiscoveryDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the discovery domain." + ::= { acdDiscoveryInventoryEntry 7 } + +acdDiscoveryFirmware OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the unit." + ::= { acdDiscoveryInventoryEntry 8 } + +acdDiscoveryBaseMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The base MAC address of the remote NID based on the last information + frame received from the device. If no information has been received, + this object shall be equal to six octets of zero." + ::= { acdDiscoveryInventoryEntry 9 } + +acdDiscoveryInterfaceMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The management interface MAC address of the remote NID based on the + last information frame received from the device. If no information has + been received, this object shall be equal to six octets of zero." + ::= { acdDiscoveryInventoryEntry 10 } + +acdDiscoveryChassisIdSubtype OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis ID subtype, as defined by IEEE 802.1AB." + ::= { acdDiscoveryInventoryEntry 11 } + +acdDiscoveryChassisId OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The chassis ID of the remote device." + ::= { acdDiscoveryInventoryEntry 12 } + +acdDiscoveryLocalPortId OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the port name where the advertisement frame was received." + ::= { acdDiscoveryInventoryEntry 13 } + +acdDiscoveryRemotePortId OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the advertisement port of the remote device." + ::= { acdDiscoveryInventoryEntry 14 } + +acdDiscoveryWebServerPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The web server port of the remote device." + ::= { acdDiscoveryInventoryEntry 15 } + +acdDiscoverySnmpAgentPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SNMP agent port of the remote device. If 0, SNMP agent is disabled." + ::= { acdDiscoveryInventoryEntry 16 } + +acdDiscoverySshPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SSH port of the remote device." + ::= { acdDiscoveryInventoryEntry 17 } + +acdDiscoveryVlan1 OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The first VLAN on the remote device interface. No VLAN when this value is zero." + ::= { acdDiscoveryInventoryEntry 18 } + +acdDiscoveryVlan2 OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The second VLAN on the remote device interface. No VLAN when this value is zero." + ::= { acdDiscoveryInventoryEntry 19 } + +--------------------------------------------------------------------------- + -- The IP interface table + -- This table contains all interfaces found on the remote device, excluding the + -- management interface, which was configured by a beacon frame. +--------------------------------------------------------------------------- + +acdDiscoveryIpListTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdDiscoveryIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all interfaces found on the remote device, excluding the + management interface, which was configured by a beacon frame." + ::= { acdDiscoveryInventory 2 } + +acdDiscoveryIpListEntry OBJECT-TYPE + SYNTAX AcdDiscoveryIpListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of the IP address of an interface on the remote device." + INDEX { acdDiscoveryIndex, acdDiscoveryIpListIndex } + ::= { acdDiscoveryIpListTable 1 } + +AcdDiscoveryIpListEntry ::= SEQUENCE { + acdDiscoveryIpListIndex Unsigned32, + acdDiscoveryIpListAddress IpAddress +} + +acdDiscoveryIpListIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each row. Based on number of interface found." + ::= { acdDiscoveryIpListEntry 1 } + +acdDiscoveryIpListAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the IP address on one of the interfaces found on the remote NID." + ::= { acdDiscoveryIpListEntry 2 } + +--------------------------------------------------------------------------- + -- The port MAC address table. + -- This table contains MAC address or ports found on the remote device. + -- For a first phase, only the MAC addresses for ports of a line cards in + -- a MetroNODE chassis are listed. Eventually, we may add to the list the + -- MAC address of all available ports including those of a MetroNID and + -- those of a controller card of a MetroNODE. +--------------------------------------------------------------------------- + +acdDiscoveryMacAddressListTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdDiscoveryMacAddressListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains MAC addresses of ports found on the remote device. Not + all port MAC addresses are necessary listed." + ::= { acdDiscoveryInventory 3 } + +acdDiscoveryMacAddressListEntry OBJECT-TYPE + SYNTAX AcdDiscoveryMacAddressListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of the MAC address of a port on the remote device." + INDEX { acdDiscoveryIndex, acdDiscoveryMacAddressListIndex } + ::= { acdDiscoveryMacAddressListTable 1 } + +AcdDiscoveryMacAddressListEntry ::= SEQUENCE { + acdDiscoveryMacAddressListIndex Unsigned32, + acdDiscoveryMacAddressListSystemSlotId Unsigned32, + acdDiscoveryMacAddressListPortId Unsigned32, + acdDiscoveryMacAddressListPortName DisplayString, + acdDiscoveryMacAddressListPortMacAddress MacAddress +} + +acdDiscoveryMacAddressListIndex OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each row. Based on number of port MAC addresses found." + ::= { acdDiscoveryMacAddressListEntry 1 } + +acdDiscoveryMacAddressListSystemSlotId OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System slot identifier of module on which the port is located. + Applies only to a MetroNODE module. Value is 0 for a MetroNID device." + ::= { acdDiscoveryMacAddressListEntry 2 } + +acdDiscoveryMacAddressListPortId OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port identifier." + ::= { acdDiscoveryMacAddressListEntry 3 } + +acdDiscoveryMacAddressListPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port name." + ::= { acdDiscoveryMacAddressListEntry 4 } + +acdDiscoveryMacAddressListPortMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the MAC address of one of the ports found on the remote device." + ::= { acdDiscoveryMacAddressListEntry 5 } + + +acdDiscoveryInventoryInserts OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + UNITS "table entries" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the complete set of information + advertised by a particular device has been inserted into the + inventory database. + + This counter should be incremented only once after the + complete set of information is successfully recorded + in the inventory database." + ::= { acdDiscoveryInventory 4 } + +acdDiscoveryInventoryAgeouts OBJECT-TYPE + SYNTAX Unsigned32 (0..4294967295) + UNITS "table entries" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the complete set of information + advertised by a particular device has been deleted from the + inventory database because the information timeliness interval + has expired. + + This counter should be incremented only once when the complete + set of information is completely invalidated (aged out)." + ::= { acdDiscoveryInventory 5 } + + +acdDiscoveryInventoryChange NOTIFICATION-TYPE + OBJECTS { acdDiscoveryInventoryInserts, + acdDiscoveryInventoryAgeouts + } + STATUS current + DESCRIPTION + "The SNMP notification generated when a change is detected in the + inventory database." + + ::= { acdDiscoveryNotifications 1 } + +-- +-- *********************************************************** +-- +-- D I S C O V E R Y M I B C O N F O R M A N C E +-- +-- *********************************************************** +-- +-- ACD-DISCOVERY-MIB Module - Conformance Information + +acdDiscoveryCompliances OBJECT IDENTIFIER ::= { acdDiscoveryConformance 1 } +acdDiscoveryGroups OBJECT IDENTIFIER ::= { acdDiscoveryConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdDiscoveryInventoryGroup OBJECT-GROUP + OBJECTS { + acdDiscoveryMgmtIpAddress, + acdDiscoverySystemName, + acdDiscoverySystemDesc, + acdDiscoverySerialNumber, + acdDiscoveryLastChange, + acdDiscoveryDomain, + acdDiscoveryFirmware, + acdDiscoveryBaseMacAddress, + acdDiscoveryInterfaceMacAddress, + acdDiscoveryChassisIdSubtype, + acdDiscoveryChassisId, + acdDiscoveryLocalPortId, + acdDiscoveryRemotePortId, + acdDiscoveryWebServerPort, + acdDiscoverySnmpAgentPort, + acdDiscoverySshPort, + acdDiscoveryVlan1, + acdDiscoveryVlan2, + acdDiscoveryInventoryInserts, + acdDiscoveryInventoryAgeouts + } + STATUS current + DESCRIPTION + "." + ::= { acdDiscoveryGroups 1 } + +acdDiscoveryIpListGroup OBJECT-GROUP + OBJECTS { + acdDiscoveryIpListAddress + } + STATUS current + DESCRIPTION + "." + ::= { acdDiscoveryGroups 2 } + +acdDiscoveryMacAddressListGroup OBJECT-GROUP + OBJECTS { + acdDiscoveryMacAddressListSystemSlotId, + acdDiscoveryMacAddressListPortId, + acdDiscoveryMacAddressListPortName, + acdDiscoveryMacAddressListPortMacAddress + } + STATUS current + DESCRIPTION + "." + ::= { acdDiscoveryGroups 3 } + +acdDiscoveryNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { + acdDiscoveryInventoryChange + } + STATUS current + DESCRIPTION + "Objects for the Inventory Notifications group." + ::= { acdDiscoveryGroups 4 } + +acdDiscoveryCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-DISCOVERY-MIB module." + MODULE + MANDATORY-GROUPS { + acdDiscoveryInventoryGroup, + acdDiscoveryIpListGroup, + acdDiscoveryMacAddressListGroup, + acdDiscoveryNotificationsGroup + } + + ::= { acdDiscoveryCompliances 1 } + +END + diff --git a/mibs/accedian/ACD-FILTER-MIB b/mibs/accedian/ACD-FILTER-MIB new file mode 100644 index 0000000..3d374bb --- /dev/null +++ b/mibs/accedian/ACD-FILTER-MIB @@ -0,0 +1,2102 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2015, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-FILTER-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + IpAddress, Unsigned32 + FROM SNMPv2-SMI + DisplayString, TruthValue, MacAddress, TEXTUAL-CONVENTION, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + acdMibs + FROM ACCEDIAN-SMI; + +acdFilter MODULE-IDENTITY + + LAST-UPDATED "201506180100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Filter database for this Accedian Networks device." + + REVISION "201506180100Z" -- 18 June 2015 + DESCRIPTION + "Add acdSmapIPv4FilterSrcPortLast, acdSmapIPv4FilterSrcPortOper, + acdSmapIPv4FilterDstPortLast and acdSmapIPv4FilterDstPortOper." + + REVISION "201302130100Z" -- 13 February 2013 + DESCRIPTION + "Update AcdFilterVlanType textual convention to add t-vlan support." + + REVISION "201110100100Z" -- 10 October 2011 + DESCRIPTION + "Add acdSmapL2FilterTableLastChangeTid and + acdSmapIPv4FilterTableLastChangeTid. + + Deprecated acdL2FilterTable and acdIPv4FilterTable tables." + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Add compliance section." + + REVISION "200805010100Z" -- 1 May 2008 + DESCRIPTION + "Add SMAP filter tables and RowStatus in acdL2FilterTable and + acdIPv4FilterTable tables." + + REVISION "200608060100Z" -- 6 Aug 2006 + DESCRIPTION + "Initial version of MIB module ACD-FILTER-MIB." + + ::= { acdMibs 2 } + +acdFilterNotifications OBJECT IDENTIFIER ::= { acdFilter 5 } +acdFilterMIBObjects OBJECT IDENTIFIER ::= { acdFilter 6 } +acdFilterConformance OBJECT IDENTIFIER ::= { acdFilter 7 } + +acdFilterTableTid OBJECT IDENTIFIER ::= { acdFilterMIBObjects 1 } + +--------------------------------------------------------------------------- +-- Textual conventions +--------------------------------------------------------------------------- + +AcdFilterOperator ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Operator for field comparaison. Valid operator types are: + Greater than, Less than, Equal to or Range (inclusive range)." + SYNTAX INTEGER { + lessThan(1), + greaterThan(2), + equalTo(3), + range(4) + } + +AcdFilterOperatorEqualRangeOnly ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Operator for field comparaison. Valid operator types are: + Equal to or Range (inclusive range)." + SYNTAX INTEGER { + equalTo(3), + range(4) + } + +AcdFilterVlanType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The type of VLAN to be used." + SYNTAX INTEGER { + cvlan(1), + svlan(2), + both(3), + tvlan(4), + any(5) + } +--------------------------------------------------------------------------- + -- The L2 table + -- This table contains all Layer 2 Filters. +--------------------------------------------------------------------------- + +acdL2FilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdL2FilterEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Table of all Layer 2 filters" + ::= { acdFilter 1 } + +acdL2FilterEntry OBJECT-TYPE + SYNTAX AcdL2FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Filter is a pattern matching a definition against packets." + INDEX { acdL2FilterID } + ::= { acdL2FilterTable 1 } + + +AcdL2FilterEntry ::= SEQUENCE { + acdL2FilterID Unsigned32, + acdL2FilterName DisplayString, + acdL2FilterMacDstEn TruthValue, + acdL2FilterMacDst MacAddress, + acdL2FilterMacDstMask Unsigned32, + acdL2FilterMacSrcEn TruthValue, + acdL2FilterMacSrc MacAddress, + acdL2FilterMacSrcMask Unsigned32, + acdL2FilterEtypeEn TruthValue, + acdL2FilterEtype Unsigned32, + acdL2FilterVlan1PriorEn TruthValue, + acdL2FilterVlan1Prior Unsigned32, + acdL2FilterVlan1CfiEn TruthValue, + acdL2FilterVlan1Cfi Unsigned32, + acdL2FilterVlan1IdEn TruthValue, + acdL2FilterVlan1Id Unsigned32, + acdL2FilterVlan2PriorEn TruthValue, + acdL2FilterVlan2Prior Unsigned32, + acdL2FilterVlan2CfiEn TruthValue, + acdL2FilterVlan2Cfi Unsigned32, + acdL2FilterVlan2IdEn TruthValue, + acdL2FilterVlan2Id Unsigned32, + acdL2FilterRowStatus RowStatus +} + +acdL2FilterID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each filter. Its value ranges from 1 to maximum + value. This maximum value depend of the type of platform." + ::= { acdL2FilterEntry 1 } + +acdL2FilterName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to identify the filter." + ::= { acdL2FilterEntry 2 } + +acdL2FilterMacDstEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the destination MAC address check." + DEFVAL { false } + ::= { acdL2FilterEntry 3 } + +acdL2FilterMacDst OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination MAC address used to compare the incoming traffic." + DEFVAL { '000000000000'H } + ::= { acdL2FilterEntry 4 } + +acdL2FilterMacDstMask OBJECT-TYPE + SYNTAX Unsigned32 (0..48) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Number of destination MAC address bits to compare. Its value ranges + from 0 to 48. Only specific mask are valid per platform." + DEFVAL { 48 } + ::= { acdL2FilterEntry 5 } + +acdL2FilterMacSrcEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the source MAC address check." + DEFVAL { false } + ::= { acdL2FilterEntry 6 } + +acdL2FilterMacSrc OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source MAC address used to compare the incoming traffic." + DEFVAL { '000000000000'H } + ::= { acdL2FilterEntry 7 } + +acdL2FilterMacSrcMask OBJECT-TYPE + SYNTAX Unsigned32 (0..48) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Number of source MAC address bits to compare. Its value ranges + from 0 to 48. Only specific mask are valid per platform." + DEFVAL { 48 } + ::= { acdL2FilterEntry 8 } + +acdL2FilterEtypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Ethernet type check." + DEFVAL { false } + ::= { acdL2FilterEntry 9 } + +acdL2FilterEtype OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Ethernet type used to compare the incoming traffic." + DEFVAL { 0 } + ::= { acdL2FilterEntry 10 } + +acdL2FilterVlan1PriorEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN priority check." + DEFVAL { false } + ::= { acdL2FilterEntry 11 } + +acdL2FilterVlan1Prior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN priority used to compare the incoming traffic. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdL2FilterEntry 12 } + +acdL2FilterVlan1CfiEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN CFI check." + DEFVAL { false } + ::= { acdL2FilterEntry 13 } + +acdL2FilterVlan1Cfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN CFI used to compare the incoming traffic. + Its value is 0 or 1." + DEFVAL { 0 } + ::= { acdL2FilterEntry 14 } + +acdL2FilterVlan1IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN ID check." + DEFVAL { false } + ::= { acdL2FilterEntry 15 } + +acdL2FilterVlan1Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdL2FilterEntry 16 } + +acdL2FilterVlan2PriorEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN priority check." + DEFVAL { false } + ::= { acdL2FilterEntry 17 } + +acdL2FilterVlan2Prior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN priority used to compare the incoming traffic. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdL2FilterEntry 18 } + +acdL2FilterVlan2CfiEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN CFI check." + DEFVAL { false } + ::= { acdL2FilterEntry 19 } + +acdL2FilterVlan2Cfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN CFI used to compare the incoming traffic. + Its value is 0 or 1." + DEFVAL { 0 } + ::= { acdL2FilterEntry 20 } + +acdL2FilterVlan2IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN ID check." + DEFVAL { false } + ::= { acdL2FilterEntry 21 } + +acdL2FilterVlan2Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4065) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdL2FilterEntry 22 } + +acdL2FilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new filter you shall provide the a unique filter name for + an empty row with the RowStatus set to Create and Go. To delete the + row you need to set the RowStatus to destroy." + ::= { acdL2FilterEntry 23 } + +--------------------------------------------------------------------------- + -- The IPv4 table + -- This table contains all IPv4 Filters. +--------------------------------------------------------------------------- + +acdIPv4FilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdIPv4FilterEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Table of all IPv4 filters" + ::= { acdFilter 2 } + +acdIPv4FilterEntry OBJECT-TYPE + SYNTAX AcdIPv4FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Filter is a pattern matching a definition against packets." + INDEX { acdIPv4FilterID } + ::= { acdIPv4FilterTable 1 } + +AcdIPv4FilterEntry ::= SEQUENCE { + acdIPv4FilterID Unsigned32, + acdIPv4FilterName DisplayString, + acdIPv4FilterSrcEn TruthValue, + acdIPv4FilterSrc IpAddress, + acdIPv4FilterSrcMask IpAddress, + acdIPv4FilterDstEn TruthValue, + acdIPv4FilterDst IpAddress, + acdIPv4FilterDstMask IpAddress, + acdIPv4FilterProtoEn TruthValue, + acdIPv4FilterProto Unsigned32, + acdIPv4FilterTTLEn TruthValue, + acdIPv4FilterTTL Unsigned32, + acdIPv4FilterIHLEn TruthValue, + acdIPv4FilterIHL Unsigned32, + acdIPv4FilterDscpEn TruthValue, + acdIPv4FilterDscp Unsigned32, + acdIPv4FilterECNEn TruthValue, + acdIPv4FilterECN Unsigned32, + acdIPv4FilterSrcPortEn TruthValue, + acdIPv4FilterSrcPort Unsigned32, + acdIPv4FilterDstPortEn TruthValue, + acdIPv4FilterDstPort Unsigned32, + acdIPv4FilterIcmpTypeEn TruthValue, + acdIPv4FilterIcmpType Unsigned32, + acdIPv4FilterIcmpCodeEn TruthValue, + acdIPv4FilterIcmpCode Unsigned32, + acdIPv4FilterRowStatus RowStatus +} + +acdIPv4FilterID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each filter. Its value ranges from 1 to maximum + value. This maximum value depend of the type of platform." + ::= { acdIPv4FilterEntry 1 } + +acdIPv4FilterName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to identify the filter." + ::= { acdIPv4FilterEntry 2 } + +acdIPv4FilterSrcEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Source IP address check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 3 } + +acdIPv4FilterSrc OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source IP address used to compare the incoming traffic." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { acdIPv4FilterEntry 4 } + +acdIPv4FilterSrcMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source IP address mask used to compare the incoming traffic." + DEFVAL { 'FFFFFFFF'H } -- 255.255.255.255 + ::= { acdIPv4FilterEntry 5 } + +acdIPv4FilterDstEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Destination IP address check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 6 } + +acdIPv4FilterDst OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address used to compare the incoming traffic." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { acdIPv4FilterEntry 7 } + +acdIPv4FilterDstMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address mask used to compare the incoming + traffic." + DEFVAL { 'FFFFFFFF'H } -- 255.255.255.255 + ::= { acdIPv4FilterEntry 8 } + +acdIPv4FilterProtoEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the IP protocol check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 9 } + +acdIPv4FilterProto OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP protocol used to compare the incoming traffic. Its value + ranges from 0 to 255." + DEFVAL { 1 } + ::= { acdIPv4FilterEntry 10 } + +acdIPv4FilterTTLEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the TTL check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 11 } + +acdIPv4FilterTTL OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The TTL used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 255 } + ::= { acdIPv4FilterEntry 12 } + +acdIPv4FilterIHLEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the IP Header Length check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 13 } + +acdIPv4FilterIHL OBJECT-TYPE + SYNTAX Unsigned32 (5..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP Header Length used to compare the incoming traffic. + Its value ranges from 5 to 15." + DEFVAL { 5 } + ::= { acdIPv4FilterEntry 14 } + +acdIPv4FilterDscpEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the DSCP (Diff-Serv Code Point) check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 15 } + +acdIPv4FilterDscp OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The DSCP value used to compare the incoming traffic. + Its value ranges from 0 to 63." + DEFVAL { 0 } + ::= { acdIPv4FilterEntry 16 } + +acdIPv4FilterECNEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the ECN (Explicite Cogestion Notification) check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 17 } + +acdIPv4FilterECN OBJECT-TYPE + SYNTAX Unsigned32 (0..3) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ECN value used to compare the incoming traffic. + Its value ranges from 0 to 3." + DEFVAL { 0 } + ::= { acdIPv4FilterEntry 18 } + +acdIPv4FilterSrcPortEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the UDP/TCP Source port check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 19 } + +acdIPv4FilterSrcPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Source Port used to compare the incoming traffic. + Its value ranges from 0 to 65535." + DEFVAL { 0 } + ::= { acdIPv4FilterEntry 20 } + +acdIPv4FilterDstPortEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the UDP/TCP Destination port check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 21 } + +acdIPv4FilterDstPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Destination Port used to compare the incoming traffic. + Its value ranges from 0 to 65535." + DEFVAL { 0 } + ::= { acdIPv4FilterEntry 22 } + +acdIPv4FilterIcmpTypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the ICMP type check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 23 } + +acdIPv4FilterIcmpType OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ICMP type used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 0 } + ::= { acdIPv4FilterEntry 24 } + +acdIPv4FilterIcmpCodeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the ICMP code check." + DEFVAL { false } + ::= { acdIPv4FilterEntry 25 } + +acdIPv4FilterIcmpCode OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ICMP code used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 0 } + ::= { acdIPv4FilterEntry 26 } + +acdIPv4FilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new filter you shall provide the a unique filter name for + an empty row with the RowStatus set to Create and Go. To delete the + row you need to set the RowStatus to destroy." + ::= { acdIPv4FilterEntry 27 } + +----------------------------------------------------------------------- + -- The service mapping (SMAP) L2 table + -- This table contains all SMAP Layer 2 Filters. +--------------------------------------------------------------------------- + +acdSmapL2FilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapL2FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all service mapping (SMAP) Layer 2 filters" + ::= { acdFilter 3 } + +acdSmapL2FilterEntry OBJECT-TYPE + SYNTAX AcdSmapL2FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Filter is a pattern matching a definition against packets." + INDEX { acdSmapL2FilterID } + ::= { acdSmapL2FilterTable 1 } + + +AcdSmapL2FilterEntry ::= SEQUENCE { + acdSmapL2FilterID Unsigned32, + acdSmapL2FilterName DisplayString, + acdSmapL2FilterRowStatus RowStatus, + acdSmapL2FilterVlan1PriorEn TruthValue, + acdSmapL2FilterVlan1Prior Unsigned32, + acdSmapL2FilterVlan1PriorLast Unsigned32, + acdSmapL2FilterVlan1PriorOper AcdFilterOperator, + acdSmapL2FilterVlan1IdEn TruthValue, + acdSmapL2FilterVlan1Id Unsigned32, + acdSmapL2FilterVlan1IdLast Unsigned32, + acdSmapL2FilterVlan1IdOper AcdFilterOperator, + acdSmapL2FilterVlan1CfiEn TruthValue, + acdSmapL2FilterVlan1Cfi Unsigned32, + acdSmapL2FilterVlan1TypeEn TruthValue, + acdSmapL2FilterVlan1Type AcdFilterVlanType, + acdSmapL2FilterVlan2PriorEn TruthValue, + acdSmapL2FilterVlan2Prior Unsigned32, + acdSmapL2FilterVlan2PriorLast Unsigned32, + acdSmapL2FilterVlan2PriorOper AcdFilterOperator, + acdSmapL2FilterVlan2IdEn TruthValue, + acdSmapL2FilterVlan2Id Unsigned32, + acdSmapL2FilterVlan2IdLast Unsigned32, + acdSmapL2FilterVlan2IdOper AcdFilterOperator, + acdSmapL2FilterVlan2CfiEn TruthValue, + acdSmapL2FilterVlan2Cfi Unsigned32, + acdSmapL2FilterVlan2TypeEn TruthValue, + acdSmapL2FilterVlan2Type AcdFilterVlanType, + acdSmapL2FilterMacDstEn TruthValue, + acdSmapL2FilterMacDst MacAddress, + acdSmapL2FilterMacDstMask Unsigned32, + acdSmapL2FilterMacSrcEn TruthValue, + acdSmapL2FilterMacSrc MacAddress, + acdSmapL2FilterMacSrcMask Unsigned32, + acdSmapL2FilterEtypeEn TruthValue, + acdSmapL2FilterEtype Unsigned32, + acdSmapL2FilterIpCosEn TruthValue, + acdSmapL2FilterIpCosMode INTEGER, + acdSmapL2FilterDscp Unsigned32, + acdSmapL2FilterDscpLast Unsigned32, + acdSmapL2FilterDscpOper AcdFilterOperator, + acdSmapL2FilterPre Unsigned32, + acdSmapL2FilterPreLast Unsigned32, + acdSmapL2FilterPreOper AcdFilterOperator +} + +acdSmapL2FilterID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each filter. Its value ranges from 1 to maximum + value. This maximum value depend of the type of platform." + ::= { acdSmapL2FilterEntry 1 } + +acdSmapL2FilterName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to identify the filter." + ::= { acdSmapL2FilterEntry 2 } + +acdSmapL2FilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new filter you shall provide the a unique filter name for + an empty row with the RowStatus set to Create and Go. To delete the + row you need to set the RowStatus to destroy." + ::= { acdSmapL2FilterEntry 3 } + +acdSmapL2FilterVlan1PriorEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN priority check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 4 } + +acdSmapL2FilterVlan1Prior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN priority used to compare the incoming traffic. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 5 } + +acdSmapL2FilterVlan1PriorLast OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN priority last value, used in range operation. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 6 } + +acdSmapL2FilterVlan1PriorOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN Priority operator. Valid operator types are: + Greater than, Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapL2FilterEntry 7 } + +acdSmapL2FilterVlan1IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN ID check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 8 } + +acdSmapL2FilterVlan1Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 9 } + +acdSmapL2FilterVlan1IdLast OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN ID last value, used in range operation. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 10 } + +acdSmapL2FilterVlan1IdOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN ID operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapL2FilterEntry 11 } + +acdSmapL2FilterVlan1CfiEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN CFI check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 12 } + +acdSmapL2FilterVlan1Cfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN CFI used to compare the incoming traffic. + Its value is 0 or 1." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 13 } + +acdSmapL2FilterVlan1TypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN Ethertype check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 14 } + +acdSmapL2FilterVlan1Type OBJECT-TYPE + SYNTAX AcdFilterVlanType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Ethernet type." + DEFVAL { cvlan } + ::= { acdSmapL2FilterEntry 15 } + +acdSmapL2FilterVlan2PriorEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN priority check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 16 } + +acdSmapL2FilterVlan2Prior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN priority used to compare the incoming traffic. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 17 } + +acdSmapL2FilterVlan2PriorLast OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Second VLAN priority last value, used in range operation. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 18 } + +acdSmapL2FilterVlan2PriorOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Priority operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapL2FilterEntry 19 } + +acdSmapL2FilterVlan2IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN ID check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 20 } + +acdSmapL2FilterVlan2Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 21 } + +acdSmapL2FilterVlan2IdLast OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Second VLAN ID last value, used in range operation. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 22 } + +acdSmapL2FilterVlan2IdOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Second VLAN ID operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapL2FilterEntry 23 } + +acdSmapL2FilterVlan2CfiEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN CFI check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 24 } + +acdSmapL2FilterVlan2Cfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN CFI used to compare the incoming traffic. + Its value is 0 or 1." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 25 } + +acdSmapL2FilterVlan2TypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN Ethertype check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 26 } + +acdSmapL2FilterVlan2Type OBJECT-TYPE + SYNTAX AcdFilterVlanType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Ethernet type." + DEFVAL { cvlan } + ::= { acdSmapL2FilterEntry 27 } + +acdSmapL2FilterMacDstEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the destination MAC address check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 28 } + +acdSmapL2FilterMacDst OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination MAC address used to compare the incoming traffic." + DEFVAL { '000000000000'H } + ::= { acdSmapL2FilterEntry 29 } + +acdSmapL2FilterMacDstMask OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Number of destination MAC address bits to compare. Its value ranges + from 0 to 48." + DEFVAL { 48 } + ::= { acdSmapL2FilterEntry 30 } + +acdSmapL2FilterMacSrcEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the source MAC address check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 31 } + +acdSmapL2FilterMacSrc OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source MAC address used to compare the incoming traffic." + DEFVAL { '000000000000'H } + ::= { acdSmapL2FilterEntry 32 } + +acdSmapL2FilterMacSrcMask OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Number of source MAC address bits to compare. Its value ranges + from 0 to 48." + DEFVAL { 48 } + ::= { acdSmapL2FilterEntry 33 } + +acdSmapL2FilterEtypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Ethernet type check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 34 } + +acdSmapL2FilterEtype OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Ethernet type used to compare the incoming traffic." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 35 } + +acdSmapL2FilterIpCosEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Ethernet type check." + DEFVAL { false } + ::= { acdSmapL2FilterEntry 36 } + +acdSmapL2FilterIpCosMode OBJECT-TYPE + SYNTAX INTEGER { + dscp(1), + pre(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN ID operator. Valid operator types are: Greater than, Less than, + Equal to or Range (inclusive range)." + DEFVAL { dscp } + ::= { acdSmapL2FilterEntry 37 } + +acdSmapL2FilterDscp OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The DSCP value used to compare the incoming traffic. + Its value ranges from 0 to 63." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 38 } + +acdSmapL2FilterDscpLast OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The last DSCP value, used in range operation. + Its value ranges from 0 to 63." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 39 } + +acdSmapL2FilterDscpOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DSCP operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapL2FilterEntry 40 } + +acdSmapL2FilterPre OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Precedence value used to compare the incoming traffic. + Its value ranges from 0 to 3." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 41 } + +acdSmapL2FilterPreLast OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The last Precedence value, used in range operation. + Its value ranges from 0 to 3." + DEFVAL { 0 } + ::= { acdSmapL2FilterEntry 42 } + +acdSmapL2FilterPreOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Precedence operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapL2FilterEntry 43 } + +--------------------------------------------------------------------------- + -- The Extended IPv4 table + -- This table contains all IPv4 Filters. +--------------------------------------------------------------------------- + +acdSmapIPv4FilterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapIPv4FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Extended IPv4 filters" + ::= { acdFilter 4 } + +acdSmapIPv4FilterEntry OBJECT-TYPE + SYNTAX AcdSmapIPv4FilterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Filter is a pattern matching a definition against packets." + INDEX { acdSmapIPv4FilterID } + ::= { acdSmapIPv4FilterTable 1 } + +AcdSmapIPv4FilterEntry ::= SEQUENCE { + acdSmapIPv4FilterID Unsigned32, + acdSmapIPv4FilterName DisplayString, + acdSmapIPv4FilterRowStatus RowStatus, + acdSmapIPv4FilterVlan1PriorEn TruthValue, + acdSmapIPv4FilterVlan1Prior Unsigned32, + acdSmapIPv4FilterVlan1PriorLast Unsigned32, + acdSmapIPv4FilterVlan1PriorOper AcdFilterOperator, + acdSmapIPv4FilterVlan1IdEn TruthValue, + acdSmapIPv4FilterVlan1Id Unsigned32, + acdSmapIPv4FilterVlan1IdLast Unsigned32, + acdSmapIPv4FilterVlan1IdOper AcdFilterOperator, + acdSmapIPv4FilterVlan1CfiEn TruthValue, + acdSmapIPv4FilterVlan1Cfi Unsigned32, + acdSmapIPv4FilterVlan1TypeEn TruthValue, + acdSmapIPv4FilterVlan1Type AcdFilterVlanType, + acdSmapIPv4FilterVlan2PriorEn TruthValue, + acdSmapIPv4FilterVlan2Prior Unsigned32, + acdSmapIPv4FilterVlan2PriorLast Unsigned32, + acdSmapIPv4FilterVlan2PriorOper AcdFilterOperator, + acdSmapIPv4FilterVlan2IdEn TruthValue, + acdSmapIPv4FilterVlan2Id Unsigned32, + acdSmapIPv4FilterVlan2IdLast Unsigned32, + acdSmapIPv4FilterVlan2IdOper AcdFilterOperator, + acdSmapIPv4FilterVlan2CfiEn TruthValue, + acdSmapIPv4FilterVlan2Cfi Unsigned32, + acdSmapIPv4FilterVlan2TypeEn TruthValue, + acdSmapIPv4FilterVlan2Type AcdFilterVlanType, + acdSmapIPv4FilterSrcEn TruthValue, + acdSmapIPv4FilterSrc IpAddress, + acdSmapIPv4FilterSrcMask IpAddress, + acdSmapIPv4FilterDstEn TruthValue, + acdSmapIPv4FilterDst IpAddress, + acdSmapIPv4FilterDstMask IpAddress, + acdSmapIPv4FilterProtoEn TruthValue, + acdSmapIPv4FilterProto Unsigned32, + acdSmapIPv4FilterTTLEn TruthValue, + acdSmapIPv4FilterTTL Unsigned32, + acdSmapIPv4FilterIHLEn TruthValue, + acdSmapIPv4FilterIHL Unsigned32, + acdSmapIPv4FilterIpCosEn TruthValue, + acdSmapIPv4FilterIpCosMode INTEGER, + acdSmapIPv4FilterDscp Unsigned32, + acdSmapIPv4FilterDscpLast Unsigned32, + acdSmapIPv4FilterDscpOper AcdFilterOperator, + acdSmapIPv4FilterPre Unsigned32, + acdSmapIPv4FilterPreLast Unsigned32, + acdSmapIPv4FilterPreOper AcdFilterOperator, + acdSmapIPv4FilterECNEn TruthValue, + acdSmapIPv4FilterECN Unsigned32, + acdSmapIPv4FilterSrcPortEn TruthValue, + acdSmapIPv4FilterSrcPort Unsigned32, + acdSmapIPv4FilterDstPortEn TruthValue, + acdSmapIPv4FilterDstPort Unsigned32, + acdSmapIPv4FilterIcmpTypeEn TruthValue, + acdSmapIPv4FilterIcmpType Unsigned32, + acdSmapIPv4FilterIcmpCodeEn TruthValue, + acdSmapIPv4FilterIcmpCode Unsigned32, + acdSmapIPv4FilterSrcPortLast Unsigned32, + acdSmapIPv4FilterSrcPortOper AcdFilterOperatorEqualRangeOnly, + acdSmapIPv4FilterDstPortLast Unsigned32, + acdSmapIPv4FilterDstPortOper AcdFilterOperatorEqualRangeOnly +} + +acdSmapIPv4FilterID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each filter. Its value ranges from 1 to maximum + value. This maximum value depend of the type of platform." + ::= { acdSmapIPv4FilterEntry 1 } + +acdSmapIPv4FilterName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to identify the filter." + ::= { acdSmapIPv4FilterEntry 2 } + +acdSmapIPv4FilterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new filter you shall provide the a unique filter name for + an empty row with the RowStatus set to Create and Go. To delete the + row you need to set the RowStatus to destroy." + ::= { acdSmapIPv4FilterEntry 3 } + +acdSmapIPv4FilterVlan1PriorEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN priority check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 4 } + +acdSmapIPv4FilterVlan1Prior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN priority used to compare the incoming traffic. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 5 } + +acdSmapIPv4FilterVlan1PriorLast OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN priority last value, used in range operation. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 6 } + +acdSmapIPv4FilterVlan1PriorOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Priority operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 7 } + +acdSmapIPv4FilterVlan1IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN ID check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 8 } + +acdSmapIPv4FilterVlan1Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 9 } + +acdSmapIPv4FilterVlan1IdLast OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN ID last value, used in range operation. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 10 } + +acdSmapIPv4FilterVlan1IdOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "First VLAN ID operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 11 } + +acdSmapIPv4FilterVlan1CfiEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN CFI check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 12 } + +acdSmapIPv4FilterVlan1Cfi OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first VLAN CFI used to compare the incoming traffic. + Its value is 0 or 1." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 13 } + +acdSmapIPv4FilterVlan1TypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the first VLAN Ethertype check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 14 } + +acdSmapIPv4FilterVlan1Type OBJECT-TYPE + SYNTAX AcdFilterVlanType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Ethernet type." + DEFVAL { cvlan } + ::= { acdSmapIPv4FilterEntry 15 } + +acdSmapIPv4FilterVlan2PriorEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN priority check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 16 } + +acdSmapIPv4FilterVlan2Prior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN priority used to compare the incoming traffic. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 17 } + +acdSmapIPv4FilterVlan2PriorLast OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Second VLAN priority last value, used in range operation. + Its value ranges from 0 to 7." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 18 } + +acdSmapIPv4FilterVlan2PriorOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Priority operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 19 } + +acdSmapIPv4FilterVlan2IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN ID check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 20 } + +acdSmapIPv4FilterVlan2Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 21 } + +acdSmapIPv4FilterVlan2IdLast OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN ID used to compare the incoming traffic. + Its value ranges from 0 to 4095." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 22 } + +acdSmapIPv4FilterVlan2IdOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN ID operator. Valid operator types are: Greater than, Less than, + Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 23 } + +acdSmapIPv4FilterVlan2CfiEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN CFI check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 24 } + +acdSmapIPv4FilterVlan2Cfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second VLAN CFI used to compare the incoming traffic. + Its value is 0 or 1." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 25 } + +acdSmapIPv4FilterVlan2TypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the second VLAN Ethertype check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 26 } + +acdSmapIPv4FilterVlan2Type OBJECT-TYPE + SYNTAX AcdFilterVlanType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN Ethernet type." + DEFVAL { cvlan } + ::= { acdSmapIPv4FilterEntry 27 } + + +acdSmapIPv4FilterSrcEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Source IP address check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 28 } + +acdSmapIPv4FilterSrc OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source IP address used to compare the incoming traffic." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { acdSmapIPv4FilterEntry 29 } + +acdSmapIPv4FilterSrcMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The source IP address mask used to compare the incoming traffic." + DEFVAL { 'FFFFFFFF'H } -- 255.255.255.255 + ::= { acdSmapIPv4FilterEntry 30 } + +acdSmapIPv4FilterDstEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Destination IP address check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 31 } + +acdSmapIPv4FilterDst OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address used to compare the incoming traffic." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { acdSmapIPv4FilterEntry 32 } + +acdSmapIPv4FilterDstMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The destination IP address mask used to compare the + incoming traffic." + DEFVAL { 'FFFFFFFF'H } -- 255.255.255.255 + ::= { acdSmapIPv4FilterEntry 33 } + +acdSmapIPv4FilterProtoEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the IP protocol check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 34 } + +acdSmapIPv4FilterProto OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP protocol used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 35 } + +acdSmapIPv4FilterTTLEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the TTL check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 36 } + +acdSmapIPv4FilterTTL OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The TTL used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 37 } + +acdSmapIPv4FilterIHLEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the IP Header Length check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 38 } + +acdSmapIPv4FilterIHL OBJECT-TYPE + SYNTAX Unsigned32 (5..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP Header Length used to compare the incoming traffic. + Its value ranges from 5 to 15." + DEFVAL { 5 } + ::= { acdSmapIPv4FilterEntry 39 } + +acdSmapIPv4FilterIpCosEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the Ethernet type check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 40 } + +acdSmapIPv4FilterIpCosMode OBJECT-TYPE + SYNTAX INTEGER { + dscp(1), + pre(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "VLAN ID operator. Valid operator types are: Greater than, Less than, + Equal to or Range (inclusive range)." + DEFVAL { dscp } + ::= { acdSmapIPv4FilterEntry 41 } + +acdSmapIPv4FilterDscp OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The DSCP value used to compare the incoming traffic. + Its value ranges from 0 to 63." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 42 } + +acdSmapIPv4FilterDscpLast OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The DSCP value used to compare the incoming traffic. + Its value ranges from 0 to 63." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 43 } + +acdSmapIPv4FilterDscpOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "DSCP operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 44 } + +acdSmapIPv4FilterPre OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Precedence value used to compare the incoming traffic. + Its value ranges from 0 to 3." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 45 } + +acdSmapIPv4FilterPreLast OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Precedence value used to compare the incoming traffic. + Its value ranges from 0 to 3." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 46 } + +acdSmapIPv4FilterPreOper OBJECT-TYPE + SYNTAX AcdFilterOperator + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Precedence operator. Valid operator types are: Greater than, + Less than, Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 47 } + +acdSmapIPv4FilterECNEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the ECN (Explicite Cogestion Notification) check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 48 } + +acdSmapIPv4FilterECN OBJECT-TYPE + SYNTAX Unsigned32 (0..3) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ECN value used to compare the incoming traffic. + Its value ranges from 0 to 3." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 49 } + +acdSmapIPv4FilterSrcPortEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the UDP/TCP Source port check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 50 } + +acdSmapIPv4FilterSrcPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Source Port used to compare the incoming traffic. + Its value ranges from 0 to 65535." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 51 } + +acdSmapIPv4FilterDstPortEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the UDP/TCP Destination port check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 52 } + +acdSmapIPv4FilterDstPort OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Destination Port used to compare the incoming traffic. + Its value ranges from 0 to 65535." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 53 } + +acdSmapIPv4FilterIcmpTypeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the ICMP type check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 54 } + +acdSmapIPv4FilterIcmpType OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ICMP type used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 55 } + +acdSmapIPv4FilterIcmpCodeEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the ICMP code check." + DEFVAL { false } + ::= { acdSmapIPv4FilterEntry 56 } + +acdSmapIPv4FilterIcmpCode OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ICMP code used to compare the incoming traffic. + Its value ranges from 0 to 255." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 57 } + +acdSmapIPv4FilterSrcPortLast OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Source Port last value, used in range operation. + Its value ranges from 0 to 65535." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 58 } + +acdSmapIPv4FilterSrcPortOper OBJECT-TYPE + SYNTAX AcdFilterOperatorEqualRangeOnly + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Source Port operator. Valid operator types are: + Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 59 } + +acdSmapIPv4FilterDstPortLast OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Destination Port last value, used in range operation. + Its value ranges from 0 to 65535." + DEFVAL { 0 } + ::= { acdSmapIPv4FilterEntry 60 } + +acdSmapIPv4FilterDstPortOper OBJECT-TYPE + SYNTAX AcdFilterOperatorEqualRangeOnly + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The UDP/TCP Destination Port operator. Valid operator types are: + Equal to or Range (inclusive range)." + DEFVAL { equalTo } + ::= { acdSmapIPv4FilterEntry 61 } + +--------------------------------------------------------------------------- + -- Filter Transaction ID Information +--------------------------------------------------------------------------- + +acdSmapL2FilterTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdSmapL2FilterTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdFilterTableTid 1 } + +acdSmapIPv4FilterTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdSmapIPv4FilterTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdFilterTableTid 2 } + +--------------------------------------------------------------------------- + -- ACD-FILTER-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdFilterCompliances OBJECT IDENTIFIER ::= { acdFilterConformance 1 } +acdFilterGroups OBJECT IDENTIFIER ::= { acdFilterConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdL2FilterGroup OBJECT-GROUP + OBJECTS { + acdL2FilterName, + acdL2FilterMacDstEn, + acdL2FilterMacDst, + acdL2FilterMacDstMask, + acdL2FilterMacSrcEn, + acdL2FilterMacSrc, + acdL2FilterMacSrcMask, + acdL2FilterEtypeEn, + acdL2FilterEtype, + acdL2FilterVlan1PriorEn, + acdL2FilterVlan1Prior, + acdL2FilterVlan1CfiEn, + acdL2FilterVlan1Cfi, + acdL2FilterVlan1IdEn, + acdL2FilterVlan1Id, + acdL2FilterVlan2PriorEn, + acdL2FilterVlan2Prior, + acdL2FilterVlan2CfiEn, + acdL2FilterVlan2Cfi, + acdL2FilterVlan2IdEn, + acdL2FilterVlan2Id, + acdL2FilterRowStatus + } + STATUS current + DESCRIPTION + "Objects for the L2 filter configuration Group." + ::= { acdFilterGroups 1 } + + +acdIPv4FilterGroup OBJECT-GROUP + OBJECTS { + acdIPv4FilterName, + acdIPv4FilterSrcEn, + acdIPv4FilterSrc, + acdIPv4FilterSrcMask, + acdIPv4FilterDstEn, + acdIPv4FilterDst, + acdIPv4FilterDstMask, + acdIPv4FilterProtoEn, + acdIPv4FilterProto, + acdIPv4FilterTTLEn, + acdIPv4FilterTTL, + acdIPv4FilterIHLEn, + acdIPv4FilterIHL, + acdIPv4FilterDscpEn, + acdIPv4FilterDscp, + acdIPv4FilterECNEn, + acdIPv4FilterECN, + acdIPv4FilterSrcPortEn, + acdIPv4FilterSrcPort, + acdIPv4FilterDstPortEn, + acdIPv4FilterDstPort, + acdIPv4FilterIcmpTypeEn, + acdIPv4FilterIcmpType, + acdIPv4FilterIcmpCodeEn, + acdIPv4FilterIcmpCode, + acdIPv4FilterRowStatus + } + STATUS current + DESCRIPTION + "Objects for the IPv4 filter configuration Group." + ::= { acdFilterGroups 2 } + +acdSmapL2FilterGroup OBJECT-GROUP + OBJECTS { + acdSmapL2FilterName, + acdSmapL2FilterRowStatus, + acdSmapL2FilterVlan1PriorEn, + acdSmapL2FilterVlan1Prior, + acdSmapL2FilterVlan1PriorLast, + acdSmapL2FilterVlan1PriorOper, + acdSmapL2FilterVlan1IdEn, + acdSmapL2FilterVlan1Id, + acdSmapL2FilterVlan1IdLast, + acdSmapL2FilterVlan1IdOper, + acdSmapL2FilterVlan1CfiEn, + acdSmapL2FilterVlan1Cfi, + acdSmapL2FilterVlan1TypeEn, + acdSmapL2FilterVlan1Type, + acdSmapL2FilterVlan2PriorEn, + acdSmapL2FilterVlan2Prior, + acdSmapL2FilterVlan2PriorLast, + acdSmapL2FilterVlan2PriorOper, + acdSmapL2FilterVlan2IdEn, + acdSmapL2FilterVlan2Id, + acdSmapL2FilterVlan2IdLast, + acdSmapL2FilterVlan2IdOper, + acdSmapL2FilterVlan2CfiEn, + acdSmapL2FilterVlan2Cfi, + acdSmapL2FilterVlan2TypeEn, + acdSmapL2FilterVlan2Type, + acdSmapL2FilterMacDstEn, + acdSmapL2FilterMacDst, + acdSmapL2FilterMacDstMask, + acdSmapL2FilterMacSrcEn, + acdSmapL2FilterMacSrc, + acdSmapL2FilterMacSrcMask, + acdSmapL2FilterEtypeEn, + acdSmapL2FilterEtype, + acdSmapL2FilterIpCosEn, + acdSmapL2FilterIpCosMode, + acdSmapL2FilterDscp, + acdSmapL2FilterDscpLast, + acdSmapL2FilterDscpOper, + acdSmapL2FilterPre, + acdSmapL2FilterPreLast, + acdSmapL2FilterPreOper + } + STATUS current + DESCRIPTION + "Objects for the SMAP L2 filter configuration Group." + ::= { acdFilterGroups 3 } + +acdSmapIPv4FilterGroup OBJECT-GROUP + OBJECTS { + acdSmapIPv4FilterName, + acdSmapIPv4FilterRowStatus, + acdSmapIPv4FilterVlan1PriorEn, + acdSmapIPv4FilterVlan1Prior, + acdSmapIPv4FilterVlan1PriorLast, + acdSmapIPv4FilterVlan1PriorOper, + acdSmapIPv4FilterVlan1IdEn, + acdSmapIPv4FilterVlan1Id, + acdSmapIPv4FilterVlan1IdLast, + acdSmapIPv4FilterVlan1IdOper, + acdSmapIPv4FilterVlan1CfiEn, + acdSmapIPv4FilterVlan1Cfi, + acdSmapIPv4FilterVlan1TypeEn, + acdSmapIPv4FilterVlan1Type, + acdSmapIPv4FilterVlan2PriorEn, + acdSmapIPv4FilterVlan2Prior, + acdSmapIPv4FilterVlan2PriorLast, + acdSmapIPv4FilterVlan2PriorOper, + acdSmapIPv4FilterVlan2IdEn, + acdSmapIPv4FilterVlan2Id, + acdSmapIPv4FilterVlan2IdLast, + acdSmapIPv4FilterVlan2IdOper, + acdSmapIPv4FilterVlan2CfiEn, + acdSmapIPv4FilterVlan2Cfi, + acdSmapIPv4FilterVlan2TypeEn, + acdSmapIPv4FilterVlan2Type, + acdSmapIPv4FilterSrcEn, + acdSmapIPv4FilterSrc, + acdSmapIPv4FilterSrcMask, + acdSmapIPv4FilterDstEn, + acdSmapIPv4FilterDst, + acdSmapIPv4FilterDstMask, + acdSmapIPv4FilterProtoEn, + acdSmapIPv4FilterProto, + acdSmapIPv4FilterTTLEn, + acdSmapIPv4FilterTTL, + acdSmapIPv4FilterIHLEn, + acdSmapIPv4FilterIHL, + acdSmapIPv4FilterIpCosEn, + acdSmapIPv4FilterIpCosMode, + acdSmapIPv4FilterDscp, + acdSmapIPv4FilterDscpLast, + acdSmapIPv4FilterDscpOper, + acdSmapIPv4FilterPre, + acdSmapIPv4FilterPreLast, + acdSmapIPv4FilterPreOper, + acdSmapIPv4FilterECNEn, + acdSmapIPv4FilterECN, + acdSmapIPv4FilterSrcPortEn, + acdSmapIPv4FilterSrcPort, + acdSmapIPv4FilterDstPortEn, + acdSmapIPv4FilterDstPort, + acdSmapIPv4FilterIcmpTypeEn, + acdSmapIPv4FilterIcmpType, + acdSmapIPv4FilterIcmpCodeEn, + acdSmapIPv4FilterIcmpCode, + acdSmapIPv4FilterSrcPortLast, + acdSmapIPv4FilterSrcPortOper, + acdSmapIPv4FilterDstPortLast, + acdSmapIPv4FilterDstPortOper + } + STATUS current + DESCRIPTION + "Objects for the SMAP IPv4 filter configuration Group." + ::= { acdFilterGroups 4 } + +acdFilterTidGroup OBJECT-GROUP + OBJECTS { + acdSmapL2FilterTableLastChangeTid, + acdSmapIPv4FilterTableLastChangeTid + } + STATUS current + DESCRIPTION + "List of scalars to monitior changes in tables." + ::= { acdFilterGroups 5 } + +acdFilterCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-FILTER-MIB module." + MODULE + MANDATORY-GROUPS { + acdL2FilterGroup, + acdIPv4FilterGroup, + acdSmapL2FilterGroup, + acdSmapIPv4FilterGroup, + acdFilterTidGroup + } + + OBJECT acdL2FilterRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdIPv4FilterRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdSmapL2FilterRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdSmapIPv4FilterRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + ::= { acdFilterCompliances 1 } + +END diff --git a/mibs/accedian/ACD-PAA-MIB b/mibs/accedian/ACD-PAA-MIB new file mode 100644 index 0000000..69a028d --- /dev/null +++ b/mibs/accedian/ACD-PAA-MIB @@ -0,0 +1,3265 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2016, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-PAA-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + IpAddress, Integer32, Unsigned32 + FROM SNMPv2-SMI + DisplayString, TruthValue, MacAddress, DateAndTime + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + acdMibs + FROM ACCEDIAN-SMI; + +acdPaa MODULE-IDENTITY + + LAST-UPDATED "201609230100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "PAA database for this Accedian Networks device." + + REVISION "201609230100Z" -- 23 September 2016 + DESCRIPTION + "Add acdPaaHistResultID and acdPaaHistResultID + to acdPaaHistResultGroup." + + REVISION "201605260100Z" -- 26 May 2016 + DESCRIPTION + "Set access level to read-only for acdPaaHistResultID, + acdPaaHistResultSampleIndex." + + REVISION "201211060100Z" -- 6 November 2012 + DESCRIPTION + "Add Vlan and DSCP validation section." + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Add compliance section." + + REVISION "200902230100Z" -- 23 Feb 2009 + DESCRIPTION + "Add support for extended packet loss ratio." + + REVISION "200802060100Z" -- 6 Feb 2008 + DESCRIPTION + "Add support for history table." + + REVISION "200710120100Z" -- 12 Oct 2007 + DESCRIPTION + "Add support for one-way delay and L2 address discovery." + + REVISION "200612180100Z" -- 18 Dec 2006 + DESCRIPTION + "Change the loss ration to in hundredths of a percent." + + REVISION "200611110100Z" -- 11 Nov 2006 + DESCRIPTION + "Initial version of MIB module ACD-PAA-MIB." + + ::= { acdMibs 5 } + +acdPaaNotifications OBJECT IDENTIFIER ::= { acdPaa 7 } +acdPaaMIBObjects OBJECT IDENTIFIER ::= { acdPaa 8 } +acdPaaConformance OBJECT IDENTIFIER ::= { acdPaa 9 } + +--------------------------------------------------------------------------- + -- The PAA Results table + -- This table contains all PAA entry results. +--------------------------------------------------------------------------- + +acdPaaResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPaaResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Result table of all Paa entries" + ::= { acdPaa 1 } + +acdPaaResultEntry OBJECT-TYPE + SYNTAX AcdPaaResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of results for a PAA instance." + INDEX { acdPaaResultID } + ::= { acdPaaResultTable 1 } + + +AcdPaaResultEntry ::= SEQUENCE { + acdPaaResultID Unsigned32, + acdPaaResultState INTEGER, + acdPaaResultPktLossNeCurrValid TruthValue, + acdPaaResultPktLossNeCurrValue Unsigned32, + acdPaaResultPktLossNePrevValid TruthValue, + acdPaaResultPktLossNePrevValue Unsigned32, + acdPaaResultPktLossFeCurrValid TruthValue, + acdPaaResultPktLossFeCurrValue Unsigned32, + acdPaaResultPktLossFePrevValid TruthValue, + acdPaaResultPktLossFePrevValue Unsigned32, + acdPaaResultOneWayDvInstValue Integer32, + acdPaaResultOneWayDvCurrValid TruthValue, + acdPaaResultOneWayDvCurrMinValue Integer32, + acdPaaResultOneWayDvCurrMaxValue Integer32, + acdPaaResultOneWayDvCurrAvgValue Integer32, + acdPaaResultOneWayDvCurrThreshExc Unsigned32, + acdPaaResultOneWayDvPrevValid TruthValue, + acdPaaResultOneWayDvPrevMinValue Integer32, + acdPaaResultOneWayDvPrevMaxValue Integer32, + acdPaaResultOneWayDvPrevAvgValue Integer32, + acdPaaResultOneWayDvPrevThreshEx Unsigned32, + acdPaaResultTwoWayDelayInstValue Integer32, + acdPaaResultTwoWayDelayCurrValid TruthValue, + acdPaaResultTwoWayDelayCurrMinValue Integer32, + acdPaaResultTwoWayDelayCurrMaxValue Integer32, + acdPaaResultTwoWayDelayCurrAvgValue Integer32, + acdPaaResultTwoWayDelayCurrThreshEx Unsigned32, + acdPaaResultTwoWayDelayPrevValid TruthValue, + acdPaaResultTwoWayDelayPrevMinValue Integer32, + acdPaaResultTwoWayDelayPrevMaxValue Integer32, + acdPaaResultTwoWayDelayPrevAvgValue Integer32, + acdPaaResultTwoWayDelayPrevThreshEx Unsigned32, + acdPaaResultTwoWayDvInstValue Integer32, + acdPaaResultTwoWayDvCurrValid TruthValue, + acdPaaResultTwoWayDvCurrMinValue Integer32, + acdPaaResultTwoWayDvCurrMaxValue Integer32, + acdPaaResultTwoWayDvCurrAvgValue Integer32, + acdPaaResultTwoWayDvCurrThreshEx Unsigned32, + acdPaaResultTwoWayDvPrevValid TruthValue, + acdPaaResultTwoWayDvPrevMinValue Integer32, + acdPaaResultTwoWayDvPrevMaxValue Integer32, + acdPaaResultTwoWayDvPrevAvgValue Integer32, + acdPaaResultTwoWayDvPrevThreshEx Unsigned32, + acdPaaResultOneWayDelayInstValue Integer32, + acdPaaResultOneWayDelayCurrValid TruthValue, + acdPaaResultOneWayDelayCurrMinValue Integer32, + acdPaaResultOneWayDelayCurrMaxValue Integer32, + acdPaaResultOneWayDelayCurrAvgValue Integer32, + acdPaaResultOneWayDelayCurrThreshEx Unsigned32, + acdPaaResultOneWayDelayPrevValid TruthValue, + acdPaaResultOneWayDelayPrevMinValue Integer32, + acdPaaResultOneWayDelayPrevMaxValue Integer32, + acdPaaResultOneWayDelayPrevAvgValue Integer32, + acdPaaResultOneWayDelayPrevThreshEx Unsigned32, + acdPaaResultPktLossTime DateAndTime, + acdPaaResultOneWayTime DateAndTime, + acdPaaResultTwoWayTime DateAndTime, + acdPaaResultPktLossNeCurrSamples Unsigned32, + acdPaaResultPktLossNePrevSamples Unsigned32, + acdPaaResultPktLossFeCurrSamples Unsigned32, + acdPaaResultPktLossFePrevSamples Unsigned32, + acdPaaResultOneWayDelayCurrSamples Unsigned32, + acdPaaResultOneWayDelayPrevSamples Unsigned32, + acdPaaResultOneWayDvCurrSamples Unsigned32, + acdPaaResultOneWayDvPrevSamples Unsigned32, + acdPaaResultTwoWayDelayCurrSamples Unsigned32, + acdPaaResultTwoWayDelayPrevSamples Unsigned32, + acdPaaResultTwoWayDvCurrSamples Unsigned32, + acdPaaResultTwoWayDvPrevSamples Unsigned32, + acdPaaResultIgmpJoinDelayInstValue Integer32, + acdPaaResultIgmpJoinDelayCurrValid TruthValue, + acdPaaResultIgmpJoinDelayCurrMinValue Integer32, + acdPaaResultIgmpJoinDelayCurrMaxValue Integer32, + acdPaaResultIgmpJoinDelayCurrAvgValue Integer32, + acdPaaResultIgmpJoinDelayCurrThreshEx Unsigned32, + acdPaaResultIgmpJoinDelayPrevValid TruthValue, + acdPaaResultIgmpJoinDelayPrevMinValue Integer32, + acdPaaResultIgmpJoinDelayPrevMaxValue Integer32, + acdPaaResultIgmpJoinDelayPrevAvgValue Integer32, + acdPaaResultIgmpJoinDelayPrevThreshEx Unsigned32, + acdPaaResultIgmpLeaveDelayInstValue Integer32, + acdPaaResultIgmpLeaveDelayCurrValid TruthValue, + acdPaaResultIgmpLeaveDelayCurrMinValue Integer32, + acdPaaResultIgmpLeaveDelayCurrMaxValue Integer32, + acdPaaResultIgmpLeaveDelayCurrAvgValue Integer32, + acdPaaResultIgmpLeaveDelayCurrThreshEx Unsigned32, + acdPaaResultIgmpLeaveDelayPrevValid TruthValue, + acdPaaResultIgmpLeaveDelayPrevMinValue Integer32, + acdPaaResultIgmpLeaveDelayPrevMaxValue Integer32, + acdPaaResultIgmpLeaveDelayPrevAvgValue Integer32, + acdPaaResultIgmpLeaveDelayPrevThreshEx Unsigned32, + acdPaaResultIgmpJoinDelayTime DateAndTime, + acdPaaResultIgmpLeaveDelayTime DateAndTime, + acdPaaResultIgmpJoinDelayCurrSamples Unsigned32, + acdPaaResultIgmpJoinDelayPrevSamples Unsigned32, + acdPaaResultIgmpLeaveDelayCurrSamples Unsigned32, + acdPaaResultIgmpLeaveDelayPrevSamples Unsigned32, + acdPaaResultPktLossCurrGaps Unsigned32, + acdPaaResultPktLossPrevGaps Unsigned32, + acdPaaResultPktLossCurrLargestGap Unsigned32, + acdPaaResultPktLossPrevLargestGap Unsigned32, + acdPaaResultPktLossNeCurrValueExt Unsigned32, + acdPaaResultPktLossNePrevValueExt Unsigned32, + acdPaaResultPktLossFeCurrValueExt Unsigned32, + acdPaaResultPktLossFePrevValueExt Unsigned32, + acdPaaResultPktLossNeCurrNbrLoss Unsigned32, + acdPaaResultPktLossNePrevNbrLoss Unsigned32, + acdPaaResultPktLossFeCurrNbrLoss Unsigned32, + acdPaaResultPktLossFePrevNbrLoss Unsigned32, + acdPaaResultVlan1IdMismatch Unsigned32, + acdPaaResultVlan1IdExpected Unsigned32, + acdPaaResultVlan1IdReceived Unsigned32, + acdPaaResultVlan2IdMismatch Unsigned32, + acdPaaResultVlan2IdExpected Unsigned32, + acdPaaResultVlan2IdReceived Unsigned32, + acdPaaResultVlan1PriorityMismatch Unsigned32, + acdPaaResultVlan1PriorityExpected Unsigned32, + acdPaaResultVlan1PriorityReceived Unsigned32, + acdPaaResultVlan2PriorityMismatch Unsigned32, + acdPaaResultVlan2PriorityExpected Unsigned32, + acdPaaResultVlan2PriorityReceived Unsigned32, + acdPaaResultDscpMismatch Unsigned32, + acdPaaResultDscpExpected Unsigned32, + acdPaaResultDscpReceived Unsigned32 +} + +acdPaaResultID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each PAA instance. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdPaaResultEntry 1 } + +acdPaaResultState OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + associating(1), + associated(2), + running(3), + idle(4), + lockedIS(5), + lockedOOS(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the state of the instance." + ::= { acdPaaResultEntry 2 } + +acdPaaResultPktLossNeCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Near-end current packet loss results." + ::= { acdPaaResultEntry 3 } + +acdPaaResultPktLossNeCurrValue OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Near-end current packet loss. The packet loss is the + percent of packets transmitted but not received of the Ethernet segment + in hundredths of a percent (100 is 1%)." + ::= { acdPaaResultEntry 4 } + +acdPaaResultPktLossNePrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Near-end previous packet loss results." + ::= { acdPaaResultEntry 5 } + +acdPaaResultPktLossNePrevValue OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Near-end previous packet loss. The packet loss is the + percent of packets transmitted but not received of the Ethernet segment + in hundredths of a percent (100 is 1%)." + ::= { acdPaaResultEntry 6 } + +acdPaaResultPktLossFeCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Far-end current packet loss results." + ::= { acdPaaResultEntry 7 } + +acdPaaResultPktLossFeCurrValue OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Far-end current packet loss. The packet loss is the + percent of packets transmitted but not received of the Ethernet segment + in hundredths of a percent (100 is 1%)." + ::= { acdPaaResultEntry 8 } + +acdPaaResultPktLossFePrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Far-end previous packet loss results." + ::= { acdPaaResultEntry 9 } + +acdPaaResultPktLossFePrevValue OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Far-end previous packet loss. The packet loss is the + percent of packets transmitted but not received of the Ethernet segment + in hundredths of a percent (100 is 1%)." + ::= { acdPaaResultEntry 10 } + +acdPaaResultOneWayDvInstValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation instantaneous value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 11 } + +acdPaaResultOneWayDvCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the current One-way delay variation results." + ::= { acdPaaResultEntry 12 } + +acdPaaResultOneWayDvCurrMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current One-way delay variation minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 13 } + +acdPaaResultOneWayDvCurrMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current One-way delay variation maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 14 } + +acdPaaResultOneWayDvCurrAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current One-way delay variation average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 15 } + +acdPaaResultOneWayDvCurrThreshExc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current number of samples exceeding the limit." + ::= { acdPaaResultEntry 16 } + +acdPaaResultOneWayDvPrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the previous One-way delay variation results." + ::= { acdPaaResultEntry 17 } + +acdPaaResultOneWayDvPrevMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous One-way delay variation minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 18 } + +acdPaaResultOneWayDvPrevMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous One-way delay variation maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 19 } + +acdPaaResultOneWayDvPrevAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous One-way delay variation average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 20 } + +acdPaaResultOneWayDvPrevThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous number of samples exceeding the limit." + ::= { acdPaaResultEntry 21 } + +acdPaaResultTwoWayDelayInstValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay instantaneous value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 22 } + +acdPaaResultTwoWayDelayCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the current Two-way delay results." + ::= { acdPaaResultEntry 23 } + +acdPaaResultTwoWayDelayCurrMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current Two-way delay minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 24 } + +acdPaaResultTwoWayDelayCurrMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current Two-way delay maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 25 } + +acdPaaResultTwoWayDelayCurrAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current Two-way delay average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 26 } + +acdPaaResultTwoWayDelayCurrThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current number of samples exceeding the limit." + ::= { acdPaaResultEntry 27 } + +acdPaaResultTwoWayDelayPrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the previous Two-way delay results." + ::= { acdPaaResultEntry 28 } + +acdPaaResultTwoWayDelayPrevMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous Two-way delay minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 29 } + +acdPaaResultTwoWayDelayPrevMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous Two-way delay maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 30 } + +acdPaaResultTwoWayDelayPrevAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous Two-way delay average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 31 } + +acdPaaResultTwoWayDelayPrevThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous number of samples exceeding the limit." + ::= { acdPaaResultEntry 32 } + +acdPaaResultTwoWayDvInstValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay variation instantaneous value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 33 } + +acdPaaResultTwoWayDvCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the current Two-way delay variation results." + ::= { acdPaaResultEntry 34 } + +acdPaaResultTwoWayDvCurrMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current Two-way delay variation minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 35 } + +acdPaaResultTwoWayDvCurrMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current Two-way delay variation maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 36 } + +acdPaaResultTwoWayDvCurrAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current Two-way delay variation average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 37 } + +acdPaaResultTwoWayDvCurrThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current number of samples exceeding the limit." + ::= { acdPaaResultEntry 38 } + +acdPaaResultTwoWayDvPrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the previous Two-way delay variation results." + ::= { acdPaaResultEntry 39 } + +acdPaaResultTwoWayDvPrevMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous Two-way delay variation minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 40 } + +acdPaaResultTwoWayDvPrevMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous Two-way delay variation maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 41 } + +acdPaaResultTwoWayDvPrevAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous Two-way delay variation average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 42 } + +acdPaaResultTwoWayDvPrevThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous number of samples exceeding the limit." + ::= { acdPaaResultEntry 43 } + +acdPaaResultOneWayDelayInstValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the One-way delay instantaneous value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 44 } + +acdPaaResultOneWayDelayCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the validity of the current One-way delay results." + ::= { acdPaaResultEntry 45 } + +acdPaaResultOneWayDelayCurrMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the current One-way delay minimum value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 46 } + +acdPaaResultOneWayDelayCurrMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the current One-way delay maximum value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 47 } + +acdPaaResultOneWayDelayCurrAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the current One-way delay average value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 48 } + +acdPaaResultOneWayDelayCurrThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the current number of sample exceeding the limit." + ::= { acdPaaResultEntry 49 } + +acdPaaResultOneWayDelayPrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the validity of the previous One-way delay results." + ::= { acdPaaResultEntry 50 } + +acdPaaResultOneWayDelayPrevMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the previous One-way delay minimum value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 51 } + +acdPaaResultOneWayDelayPrevMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the previous One-way delay maximum value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 52 } + +acdPaaResultOneWayDelayPrevAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the previous One-way delay average value. The value + is express in micro-seconds." + ::= { acdPaaResultEntry 53 } + +acdPaaResultOneWayDelayPrevThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the previous number of sample exceeding the limit." + ::= { acdPaaResultEntry 54 } + +acdPaaResultPktLossTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when the current packet loss results + were moved to the previous packet loss results." + ::= { acdPaaResultEntry 55 } + +acdPaaResultOneWayTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when the current one-way results + were moved to the previous one-way results." + ::= { acdPaaResultEntry 56 } + +acdPaaResultTwoWayTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when the current two-way results + were moved to the previous two-way results." + ::= { acdPaaResultEntry 57 } + +acdPaaResultPktLossNeCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the current period near-end packet loss results." + ::= { acdPaaResultEntry 58 } + +acdPaaResultPktLossNePrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the previous period near-end packet loss results." + ::= { acdPaaResultEntry 59 } + +acdPaaResultPktLossFeCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the current period far-end packet loss results." + ::= { acdPaaResultEntry 60 } + +acdPaaResultPktLossFePrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the previous period far-end packet loss results." + ::= { acdPaaResultEntry 61 } + +acdPaaResultOneWayDelayCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the current period one-way delay results." + ::= { acdPaaResultEntry 62 } + +acdPaaResultOneWayDelayPrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the previous period one-way delay results." + ::= { acdPaaResultEntry 63 } + +acdPaaResultOneWayDvCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the current period one-way delay variation results." + ::= { acdPaaResultEntry 64 } + +acdPaaResultOneWayDvPrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the previous period one-way delay variation results." + ::= { acdPaaResultEntry 65 } + +acdPaaResultTwoWayDelayCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the current period two-way delay results." + ::= { acdPaaResultEntry 66 } + +acdPaaResultTwoWayDelayPrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the previous period two-way delay results." + ::= { acdPaaResultEntry 67 } + +acdPaaResultTwoWayDvCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the current period two-way delay variation results." + ::= { acdPaaResultEntry 68 } + +acdPaaResultTwoWayDvPrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered to calculate + the previous period two-way delay variation results." + ::= { acdPaaResultEntry 69 } + +acdPaaResultIgmpJoinDelayInstValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Join delay instantaneous value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 70 } + +acdPaaResultIgmpJoinDelayCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the current IGMP Join delay results." + ::= { acdPaaResultEntry 71 } + +acdPaaResultIgmpJoinDelayCurrMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current IGMP Join delay minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 72 } + +acdPaaResultIgmpJoinDelayCurrMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current IGMP Join delay maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 73 } + +acdPaaResultIgmpJoinDelayCurrAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current IGMP Join delay average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 74 } + +acdPaaResultIgmpJoinDelayCurrThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current number of IGMP Join samples exceeding the limit." + ::= { acdPaaResultEntry 75 } + +acdPaaResultIgmpJoinDelayPrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the previous IGMP Join delay results." + ::= { acdPaaResultEntry 76 } + +acdPaaResultIgmpJoinDelayPrevMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous IGMP Join delay minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 77 } + +acdPaaResultIgmpJoinDelayPrevMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous IGMP Join delay maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 78 } + +acdPaaResultIgmpJoinDelayPrevAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous IGMP Join delay average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 79 } + +acdPaaResultIgmpJoinDelayPrevThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous number of IGMP Join samples exceeding the limit." + ::= { acdPaaResultEntry 80 } + +acdPaaResultIgmpLeaveDelayInstValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Leave delay instantaneous value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 81 } + +acdPaaResultIgmpLeaveDelayCurrValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the current IGMP Leave delay results." + ::= { acdPaaResultEntry 82 } + +acdPaaResultIgmpLeaveDelayCurrMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current IGMP Leave delay minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 83 } + +acdPaaResultIgmpLeaveDelayCurrMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current IGMP Leave delay maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 84 } + +acdPaaResultIgmpLeaveDelayCurrAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current IGMP Leave delay average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 85 } + +acdPaaResultIgmpLeaveDelayCurrThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current number of IGMP Leave samples exceeding the limit." + ::= { acdPaaResultEntry 86 } + +acdPaaResultIgmpLeaveDelayPrevValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the previous IGMP Leave delay results." + ::= { acdPaaResultEntry 87 } + +acdPaaResultIgmpLeaveDelayPrevMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous IGMP Leave delay minimum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 88 } + +acdPaaResultIgmpLeaveDelayPrevMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous IGMP Leave delay maximum value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 89 } + +acdPaaResultIgmpLeaveDelayPrevAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous IGMP Leave delay average value. The value + is expressed in micro-seconds." + ::= { acdPaaResultEntry 90 } + +acdPaaResultIgmpLeaveDelayPrevThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous number of IGMP Leave samples exceeding the limit." + ::= { acdPaaResultEntry 91 } + +acdPaaResultIgmpJoinDelayTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when the current IGMP Join delay results + were moved to the previous IGMP join delay results." + ::= { acdPaaResultEntry 92 } + +acdPaaResultIgmpLeaveDelayTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when the current IGMP Leave results + were moved to the previous IGMP Leave results." + ::= { acdPaaResultEntry 93 } + +acdPaaResultIgmpJoinDelayCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of IGMP Join samples gathered to calculate + the current period IGMP Join delay results." + ::= { acdPaaResultEntry 94 } + +acdPaaResultIgmpJoinDelayPrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of IGMP Join samples gathered to calculate + the previous period IGMP Join delay results." + ::= { acdPaaResultEntry 95 } + +acdPaaResultIgmpLeaveDelayCurrSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of IGMP Leave samples gathered to calculate + the current period IGMP Leave delay results." + ::= { acdPaaResultEntry 96 } + +acdPaaResultIgmpLeaveDelayPrevSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of IGMP Leave samples gathered to calculate + the previous period IGMP Leave delay results." + ::= { acdPaaResultEntry 97 } + +acdPaaResultPktLossCurrGaps OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of gaps that occured in + the current period." + ::= { acdPaaResultEntry 98 } + +acdPaaResultPktLossPrevGaps OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of gaps that occured in + the previous period." + ::= { acdPaaResultEntry 99 } + +acdPaaResultPktLossCurrLargestGap OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the size of the largest gap that occured in + the current period." + ::= { acdPaaResultEntry 100 } + +acdPaaResultPktLossPrevLargestGap OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the size of the largest gap that occured in + the previous period." + ::= { acdPaaResultEntry 101 } + +acdPaaResultPktLossNeCurrValueExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Extended near-end current packet loss. The packet loss is + the percent of packets transmitted but not received in + millionth of a percent (1,000,000 is 1%)." + ::= { acdPaaResultEntry 102 } + +acdPaaResultPktLossNePrevValueExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Extended near-end previous packet loss. The packet loss is + the percent of packets transmitted but not received in + millionth of a percent (1,000,000 is 1%)." + ::= { acdPaaResultEntry 103 } + +acdPaaResultPktLossFeCurrValueExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Extended far-end current packet loss. The packet loss is + the percent of packets transmitted but not received in + millionth of a percent (1,000,000 is 1%)." + ::= { acdPaaResultEntry 104 } + +acdPaaResultPktLossFePrevValueExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Extended far-end previous packet loss. The packet loss is + the percent of packets transmitted but not received in + millionth of a percent (1,000,000 is 1%)." + ::= { acdPaaResultEntry 105 } + +acdPaaResultPktLossNeCurrNbrLoss OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current period number of near-end packet lost. + This should be less or equal to acdPaaResultPktLossNeCurrSamples. " + ::= { acdPaaResultEntry 106 } + +acdPaaResultPktLossNePrevNbrLoss OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous period number of near-end packet lost. + This should be less or equal to acdPaaResultPktLossNePrevSamples." + ::= { acdPaaResultEntry 107 } + +acdPaaResultPktLossFeCurrNbrLoss OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current period number of far-end packet lost. + This should be less or equal to acdPaaResultPktLossFeCurrSamples. " + ::= { acdPaaResultEntry 108 } + +acdPaaResultPktLossFePrevNbrLoss OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the previous period number of far-end packet lost. + This should be less or equal to acdPaaResultPktLossFePrevSamples." + ::= { acdPaaResultEntry 109 } + +acdPaaResultVlan1IdMismatch OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of VLAN 1 ID mismatch detected." + ::= { acdPaaResultEntry 110 } + +acdPaaResultVlan1IdExpected OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 1 ID expected value." + ::= { acdPaaResultEntry 111 } + +acdPaaResultVlan1IdReceived OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 1 ID received value." + ::= { acdPaaResultEntry 112 } + +acdPaaResultVlan2IdMismatch OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of VLAN 2 ID mismatch detected." + ::= { acdPaaResultEntry 113 } + +acdPaaResultVlan2IdExpected OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 2 ID expected value." + ::= { acdPaaResultEntry 114 } + +acdPaaResultVlan2IdReceived OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 2 ID received value." + ::= { acdPaaResultEntry 115 } + +acdPaaResultVlan1PriorityMismatch OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of VLAN 1 priority mismatch detected." + ::= { acdPaaResultEntry 116 } + +acdPaaResultVlan1PriorityExpected OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 1 priority expected value." + ::= { acdPaaResultEntry 117 } + +acdPaaResultVlan1PriorityReceived OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 1 priority received value." + ::= { acdPaaResultEntry 118 } + +acdPaaResultVlan2PriorityMismatch OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of VLAN 2 priority mismatch detected." + ::= { acdPaaResultEntry 119 } + +acdPaaResultVlan2PriorityExpected OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 2 priority expected value." + ::= { acdPaaResultEntry 120 } + +acdPaaResultVlan2PriorityReceived OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the VLAN 2 priority received value." + ::= { acdPaaResultEntry 121 } + +acdPaaResultDscpMismatch OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of DSCP mismatch detected." + ::= { acdPaaResultEntry 122 } + +acdPaaResultDscpExpected OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the DSCP expected value." + ::= { acdPaaResultEntry 123 } + +acdPaaResultDscpReceived OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the DSCP received value." + ::= { acdPaaResultEntry 124 } + +--------------------------------------------------------------------------- + -- The PAA status table + -- This table contains all PAA entry statuses. +--------------------------------------------------------------------------- + +acdPaaStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPaaStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status table of all Paa entries" + ::= { acdPaa 2 } + +acdPaaStatusEntry OBJECT-TYPE + SYNTAX AcdPaaStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of the status for a PAA instance." + INDEX { acdPaaStatusID } + ::= { acdPaaStatusTable 1 } + +AcdPaaStatusEntry ::= SEQUENCE { + acdPaaStatusID Unsigned32, + acdPaaStatusCcAlert TruthValue, + acdPaaStatusPktLossAlert TruthValue, + acdPaaStatusOneWayDvAlert TruthValue, + acdPaaStatusOneWayAvgDvAlert TruthValue, + acdPaaStatusTwoWayDelayAlert TruthValue, + acdPaaStatusTwoWayAvgDelayAlert TruthValue, + acdPaaStatusTwoWayDvAlert TruthValue, + acdPaaStatusTwoWayAvgDvAlert TruthValue, + acdPaaStatusOneWayDelayAlert TruthValue, + acdPaaStatusOneWayAvgDelayAlert TruthValue, + acdPaaStatusState INTEGER, + acdPaaStatusPeerAddress DisplayString +} + +acdPaaStatusID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each PAA instance. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdPaaStatusEntry 1 } + +acdPaaStatusCcAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the Connectivity Check alert." + ::= { acdPaaStatusEntry 2 } + +acdPaaStatusPktLossAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the Packet Loss alert." + ::= { acdPaaStatusEntry 3 } + +acdPaaStatusOneWayDvAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the One-way Delay Variation alert." + ::= { acdPaaStatusEntry 4 } + +acdPaaStatusOneWayAvgDvAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the One-way Average Delay Variation alert." + ::= { acdPaaStatusEntry 5 } + +acdPaaStatusTwoWayDelayAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the Two-way Delay alert." + ::= { acdPaaStatusEntry 6 } + +acdPaaStatusTwoWayAvgDelayAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the Two-way Average Delay alert." + ::= { acdPaaStatusEntry 7 } + +acdPaaStatusTwoWayDvAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the Two-way Delay Variation alert." + ::= { acdPaaStatusEntry 8 } + +acdPaaStatusTwoWayAvgDvAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the presence of the Two-way Average Delay Variation alert." + ::= { acdPaaStatusEntry 9 } + +acdPaaStatusOneWayDelayAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the One Way Delay alert." + ::= { acdPaaStatusEntry 10 } + +acdPaaStatusOneWayAvgDelayAlert OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the presence of the One Way Average Delay alert." + ::= { acdPaaStatusEntry 11 } + +acdPaaStatusState OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + associating(1), + associated(2), + running(3), + idle(4), + lockedIS(5), + lockedOOS(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Paa instance state." + ::= { acdPaaStatusEntry 12 } + +acdPaaStatusPeerAddress OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The peer address. Dynamically resolved or statically configured." + ::= { acdPaaStatusEntry 13 } + + +--------------------------------------------------------------------------- + -- The UDP PAA configuration table + -- This table contains all UDP PAA entry configurations. +--------------------------------------------------------------------------- + +acdPaaUdpCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPaaUdpCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of all UDP PAA entries." + ::= { acdPaa 3 } + +acdPaaUdpCfgEntry OBJECT-TYPE + SYNTAX AcdPaaUdpCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a PAA instance." + INDEX { acdPaaUdpCfgID } + ::= { acdPaaUdpCfgTable 1 } + + +AcdPaaUdpCfgEntry ::= SEQUENCE { + acdPaaUdpCfgID Unsigned32, + acdPaaUdpCfgName DisplayString, + acdPaaUdpCfgState INTEGER, + acdPaaUdpCfgPktSize Unsigned32, + acdPaaUdpCfgSamplingPeriod Unsigned32, + acdPaaUdpCfgCcLossThresh Unsigned32, + acdPaaUdpCfgPktLossRefPeriod Unsigned32, + acdPaaUdpCfgPktLossThresh Unsigned32, + acdPaaUdpCfgOneWayRefPeriod Unsigned32, + acdPaaUdpCfgOneWayDvMax Unsigned32, + acdPaaUdpCfgOneWayDvThresh Unsigned32, + acdPaaUdpCfgOneWayAvgDvThresh Unsigned32, + acdPaaUdpCfgTwoWayRefPeriod Unsigned32, + acdPaaUdpCfgTwoWayDelayMax Unsigned32, + acdPaaUdpCfgTwoWayDelayThresh Unsigned32, + acdPaaUdpCfgTwoWayAvgDelayThresh Unsigned32, + acdPaaUdpCfgTwoWayDvMax Unsigned32, + acdPaaUdpCfgTwoWayDvThresh Unsigned32, + acdPaaUdpCfgTwoWayAvgDvThresh Unsigned32, + acdPaaUdpCfgIPv4DstAddr IpAddress, + acdPaaUdpCfgPortNumber Unsigned32, + acdPaaUdpCfgDscpValue Unsigned32, + acdPaaUdpCfgVlan1PbitsValue Unsigned32, + acdPaaUdpCfgVlan2PbitsValue Unsigned32, + acdPaaUdpCfgOneWayDelayMax Unsigned32, + acdPaaUdpCfgOneWayDelayThresh Unsigned32, + acdPaaUdpCfgOneWayAvgDelayThresh Unsigned32, + acdPaaUdpCfgDestinationPortNumber Unsigned32, + acdPaaUdpCfgPeerID Unsigned32, + acdPaaUdpCfgOperationMode Unsigned32, + acdPaaUdpCfgIgmpOneWayJoinPeriod Unsigned32, + acdPaaUdpCfgIgmpRefPeriod Unsigned32, + acdPaaUdpCfgIgmpMaxJoinDly Unsigned32, + acdPaaUdpCfgIgmpJoinDlyThres Unsigned32, + acdPaaUdpCfgIgmpJoinAvgDlyThres Unsigned32, + acdPaaUdpCfgIgmpMaxLvDly Unsigned32, + acdPaaUdpCfgIgmpLvDlyThresh Unsigned32, + acdPaaUdpCfgIgmpLvAvgDlyThresh Unsigned32, + acdPaaUdpCfgPktLossThreshExt Unsigned32, + acdPaaUdpCfgVlan1PriorityValidation TruthValue, + acdPaaUdpCfgVlan1PriorityTxRxCoupling TruthValue, + acdPaaUdpCfgVlan1PriorityExpected Unsigned32, + acdPaaUdpCfgDscpValidation TruthValue, + acdPaaUdpCfgDscpTxRxCoupling TruthValue, + acdPaaUdpCfgDscpExpected Unsigned32 +} + +acdPaaUdpCfgID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each PAA instance. This value follows the ordering + of the status and the results table. Its value ranges from 1 to + MAXINT (4 bytes)." + ::= { acdPaaUdpCfgEntry 1 } + +acdPaaUdpCfgName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is a string to identify this PAA instance." + ::= { acdPaaUdpCfgEntry 2 } + +acdPaaUdpCfgState OBJECT-TYPE + SYNTAX INTEGER { + enable(0), + disable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configuration state of this PAA entry." + ::= { acdPaaUdpCfgEntry 3 } + +acdPaaUdpCfgPktSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transmit packet size." + ::= { acdPaaUdpCfgEntry 4 } + +acdPaaUdpCfgSamplingPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interval in milliseconds at which PAA issues PAA measurement packets." + ::= { acdPaaUdpCfgEntry 5 } + +acdPaaUdpCfgCcLossThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of lost CCM (Connectivity Check Messages) for declaring a connectvity loss." + ::= { acdPaaUdpCfgEntry 6 } + +acdPaaUdpCfgPktLossRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reference period in milliseconds for packet loss measurement." + ::= { acdPaaUdpCfgEntry 7 } + +acdPaaUdpCfgPktLossThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allowed packet loss, in pecentage (%)." + ::= { acdPaaUdpCfgEntry 8 } + +acdPaaUdpCfgOneWayRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reference period in milliseconds for one-way measurement." + ::= { acdPaaUdpCfgEntry 9 } + +acdPaaUdpCfgOneWayDvMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay variation." + ::= { acdPaaUdpCfgEntry 10 } + +acdPaaUdpCfgOneWayDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay variations greater than the threshold." + ::= { acdPaaUdpCfgEntry 11 } + +acdPaaUdpCfgOneWayAvgDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "One-way average delay variation threshold." + ::= { acdPaaUdpCfgEntry 12 } + +acdPaaUdpCfgTwoWayRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reference period in milliseconds for two-way measurement." + ::= { acdPaaUdpCfgEntry 13 } + +acdPaaUdpCfgTwoWayDelayMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay." + ::= { acdPaaUdpCfgEntry 14 } + +acdPaaUdpCfgTwoWayDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delays greater than the threshold." + ::= { acdPaaUdpCfgEntry 15 } + +acdPaaUdpCfgTwoWayAvgDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay threshold." + ::= { acdPaaUdpCfgEntry 16 } + +acdPaaUdpCfgTwoWayDvMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay variation." + ::= { acdPaaUdpCfgEntry 17 } + +acdPaaUdpCfgTwoWayDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay variations greater than the threshold." + ::= { acdPaaUdpCfgEntry 18 } + +acdPaaUdpCfgTwoWayAvgDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay variation threshold." + ::= { acdPaaUdpCfgEntry 19 } + +acdPaaUdpCfgIPv4DstAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination IP address used to reach the peer PAA instance." + ::= { acdPaaUdpCfgEntry 20 } + +acdPaaUdpCfgPortNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The source UDP port number on which to listen for peer PAA samples." + ::= { acdPaaUdpCfgEntry 21 } + +acdPaaUdpCfgDscpValue OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The DSCP value used to reach the peer PAA instance. Its value ranges + from 0 to 64." + ::= { acdPaaUdpCfgEntry 22 } + +acdPaaUdpCfgVlan1PbitsValue OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The first VLAN priority used to tag the outgoing traffic. + Its value ranges from 0 to 7." + ::= { acdPaaUdpCfgEntry 23 } + +acdPaaUdpCfgVlan2PbitsValue OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The second VLAN priority used to tag the outgoing traffic. + Its value ranges from 0 to 7." + ::= { acdPaaUdpCfgEntry 24 } + +acdPaaUdpCfgOneWayDelayMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay." + ::= { acdPaaUdpCfgEntry 25 } + +acdPaaUdpCfgOneWayDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Nbr consecutive delay > max before alert." + ::= { acdPaaUdpCfgEntry 26 } + +acdPaaUdpCfgOneWayAvgDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay threshold." + ::= { acdPaaUdpCfgEntry 27 } + +acdPaaUdpCfgDestinationPortNumber OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The destination UDP port number used to reach the peer PAA instance." + ::= { acdPaaUdpCfgEntry 28 } + +acdPaaUdpCfgPeerID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unique value for the peer PAA instance. This value follows the ordering + of the status and the results table. Its value ranges from 1 to + MAXINT (4 bytes)." + ::= { acdPaaUdpCfgEntry 29 } + +acdPaaUdpCfgOperationMode OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PAA Operation Mode. Its values are: 1 = Bi-Dir, 2 = Source, 3 = Sink" + ::= { acdPaaUdpCfgEntry 30 } + +acdPaaUdpCfgIgmpOneWayJoinPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP One-way join period is the amount of time to wait from the + beginning of the period before an IGMP join request is sent out." + ::= { acdPaaUdpCfgEntry 31 } + +acdPaaUdpCfgIgmpRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IGMP reference period is the total amount of time in which we + sample IGMP join and leave requests. It must be a minimum of (10 * One-way ref. period)." + ::= { acdPaaUdpCfgEntry 32 } + +acdPaaUdpCfgIgmpMaxJoinDly OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum join delay objective." + ::= { acdPaaUdpCfgEntry 33 } + +acdPaaUdpCfgIgmpJoinDlyThres OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum consecutive join delay samples allowed greater than the maximum join delay." + ::= { acdPaaUdpCfgEntry 34 } + +acdPaaUdpCfgIgmpJoinAvgDlyThres OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum join average delay." + ::= { acdPaaUdpCfgEntry 35 } + +acdPaaUdpCfgIgmpMaxLvDly OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum join delay objective." + ::= { acdPaaUdpCfgEntry 36 } + +acdPaaUdpCfgIgmpLvDlyThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum consecutive leave delay samples allowed greater than the maximum leave delay." + ::= { acdPaaUdpCfgEntry 37 } + + +acdPaaUdpCfgIgmpLvAvgDlyThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum leave delay average." + ::= { acdPaaUdpCfgEntry 38 } + +acdPaaUdpCfgPktLossThreshExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Extended packet loss ratio threshold allowed without issuing an alarm + expressed in millionth of percent (1,000,000 is 1%)." + DEFVAL { 0 } + ::= { acdPaaUdpCfgEntry 39 } + +acdPaaUdpCfgVlan1PriorityValidation OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 1 priority validation." + ::= { acdPaaUdpCfgEntry 40 } + +acdPaaUdpCfgVlan1PriorityTxRxCoupling OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 1 priority TX/RX coupling." + ::= { acdPaaUdpCfgEntry 41 } + +acdPaaUdpCfgVlan1PriorityExpected OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The expected VLAN 1 priority value." + DEFVAL { 0 } + ::= { acdPaaUdpCfgEntry 42 } + + +acdPaaUdpCfgDscpValidation OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of DSCP validation." + ::= { acdPaaUdpCfgEntry 43 } + +acdPaaUdpCfgDscpTxRxCoupling OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of DSCP TX/RX coupling." + ::= { acdPaaUdpCfgEntry 44 } + +acdPaaUdpCfgDscpExpected OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The expected VLAN 1 priority value." + DEFVAL { 0 } + ::= { acdPaaUdpCfgEntry 45 } + +--------------------------------------------------------------------------- + -- The L2 PAA configuration table + -- This table contains all L2 PAA entry configurations. +--------------------------------------------------------------------------- + +acdPaaL2CfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPaaL2CfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configuration table of all L2 PAA entries" + ::= { acdPaa 4 } + +acdPaaL2CfgEntry OBJECT-TYPE + SYNTAX AcdPaaL2CfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a PAA instance." + INDEX { acdPaaL2CfgID } + ::= { acdPaaL2CfgTable 1 } + + +AcdPaaL2CfgEntry ::= SEQUENCE { + acdPaaL2CfgID Unsigned32, + acdPaaL2CfgName DisplayString, + acdPaaL2CfgState INTEGER, + acdPaaL2CfgPktSize Unsigned32, + acdPaaL2CfgSamplingPeriod Unsigned32, + acdPaaL2CfgCcLossThresh Unsigned32, + acdPaaL2CfgPktLossRefPeriod Unsigned32, + acdPaaL2CfgPktLossThresh Unsigned32, + acdPaaL2CfgOneWayRefPeriod Unsigned32, + acdPaaL2CfgOneWayDvMax Unsigned32, + acdPaaL2CfgOneWayDvThresh Unsigned32, + acdPaaL2CfgOneWayAvgDvThresh Unsigned32, + acdPaaL2CfgTwoWayRefPeriod Unsigned32, + acdPaaL2CfgTwoWayDelayMax Unsigned32, + acdPaaL2CfgTwoWayDelayThresh Unsigned32, + acdPaaL2CfgTwoWayAvgDelayThresh Unsigned32, + acdPaaL2CfgTwoWayDvMax Unsigned32, + acdPaaL2CfgTwoWayDvThresh Unsigned32, + acdPaaL2CfgTwoWayAvgDvThresh Unsigned32, + acdPaaL2CfgPortName DisplayString, + acdPaaL2CfgMacDst MacAddress, + acdPaaL2CfgEtype Unsigned32, + acdPaaL2CfgVlan1IdEn TruthValue, + acdPaaL2CfgVlan1Id Unsigned32, + acdPaaL2CfgVlan2IdEn TruthValue, + acdPaaL2CfgVlan2Id Unsigned32, + acdPaaL2CfgVlan1PbitsValue Unsigned32, + acdPaaL2CfgVlan2PbitsValue Unsigned32, + acdPaaL2CfgOneWayDelayMax Unsigned32, + acdPaaL2CfgOneWayDelayThresh Unsigned32, + acdPaaL2CfgOneWayAvgDelayThresh Unsigned32, + acdPaaL2CfgPeerID Unsigned32, + acdPaaL2CfgOperationMode Unsigned32, + acdPaaL2CfgPktLossThreshExt Unsigned32, + acdPaaL2CfgVlan1IdValidation TruthValue, + acdPaaL2CfgVlan1IdTxRxCoupling TruthValue, + acdPaaL2CfgVlan1IdExpected Unsigned32, + acdPaaL2CfgVlan2IdValidation TruthValue, + acdPaaL2CfgVlan2IdTxRxCoupling TruthValue, + acdPaaL2CfgVlan2IdExpected Unsigned32, + acdPaaL2CfgVlan1PriorityValidation TruthValue, + acdPaaL2CfgVlan1PriorityTxRxCoupling TruthValue, + acdPaaL2CfgVlan1PriorityExpected Unsigned32, + acdPaaL2CfgVlan2PriorityValidation TruthValue, + acdPaaL2CfgVlan2PriorityTxRxCoupling TruthValue, + acdPaaL2CfgVlan2PriorityExpected Unsigned32 + +} + +acdPaaL2CfgID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each PAA instance. This value follows the ordering + of the status and the results table. Its value ranges from 1 to + MAXINT (4 bytes)." + ::= { acdPaaL2CfgEntry 1 } + +acdPaaL2CfgName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is a string to identify this PAA instance." + ::= { acdPaaL2CfgEntry 2 } + +acdPaaL2CfgState OBJECT-TYPE + SYNTAX INTEGER { + enable(0), + disable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Configuration state of this PAA entry." + ::= { acdPaaL2CfgEntry 3 } + +acdPaaL2CfgPktSize OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Transmit packet size." + ::= { acdPaaL2CfgEntry 4 } + +acdPaaL2CfgSamplingPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Interval in milliseconds at which PAA issues PAA measurement packets." + ::= { acdPaaL2CfgEntry 5 } + +acdPaaL2CfgCcLossThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum number of lost CCM (Connectivity Check Messages) for declaring a connectvity loss." + ::= { acdPaaL2CfgEntry 6 } + +acdPaaL2CfgPktLossRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reference period in milliseconds for packet loss measurement." + ::= { acdPaaL2CfgEntry 7 } + +acdPaaL2CfgPktLossThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Allowed packet loss, in percentage (%)." + ::= { acdPaaL2CfgEntry 8 } + +acdPaaL2CfgOneWayRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reference period in milliseconds for one-way measurement." + ::= { acdPaaL2CfgEntry 9 } + +acdPaaL2CfgOneWayDvMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay variation." + ::= { acdPaaL2CfgEntry 10 } + +acdPaaL2CfgOneWayDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay variations greater than the threshold." + ::= { acdPaaL2CfgEntry 11 } + +acdPaaL2CfgOneWayAvgDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "One-way average delay variation threshold." + ::= { acdPaaL2CfgEntry 12 } + +acdPaaL2CfgTwoWayRefPeriod OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Reference period in milliseconds for two-way measurement." + ::= { acdPaaL2CfgEntry 13 } + +acdPaaL2CfgTwoWayDelayMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay." + ::= { acdPaaL2CfgEntry 14 } + +acdPaaL2CfgTwoWayDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delays greater than the threshold." + ::= { acdPaaL2CfgEntry 15 } + +acdPaaL2CfgTwoWayAvgDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay threshold." + ::= { acdPaaL2CfgEntry 16 } + +acdPaaL2CfgTwoWayDvMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay variation." + ::= { acdPaaL2CfgEntry 17 } + +acdPaaL2CfgTwoWayDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Number of consecutive delay variations greater than the threshold." + ::= { acdPaaL2CfgEntry 18 } + +acdPaaL2CfgTwoWayAvgDvThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Two-way average delay variation threshold." + ::= { acdPaaL2CfgEntry 19 } + +acdPaaL2CfgPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Port Name used to reach the peer PAA instance." + ::= { acdPaaL2CfgEntry 20 } + +acdPaaL2CfgMacDst OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The MAC address used to reach the peer PAA instance." + ::= { acdPaaL2CfgEntry 21 } + +acdPaaL2CfgEtype OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Ethernet type used for this PAA instance." + ::= { acdPaaL2CfgEntry 22 } + +acdPaaL2CfgVlan1IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the first VLAN ID check" + ::= { acdPaaL2CfgEntry 23 } + +acdPaaL2CfgVlan1Id OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The first VLAN ID used to compare the incoming PAA traffic. + Its value ranges from 0 to 4095." + ::= { acdPaaL2CfgEntry 24 } + +acdPaaL2CfgVlan2IdEn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the second VLAN ID check" + ::= { acdPaaL2CfgEntry 25 } + +acdPaaL2CfgVlan2Id OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The second VLAN ID used to compare the incoming PAA traffic. + Its value ranges from 0 to 4095." + ::= { acdPaaL2CfgEntry 26 } + +acdPaaL2CfgVlan1PbitsValue OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The first VLAN priority used to tag the outgoing traffic. + Its value ranges from 0 to 7." + ::= { acdPaaL2CfgEntry 27 } + +acdPaaL2CfgVlan2PbitsValue OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The second VLAN priority used to tag the outgoing traffic. + Its value ranges from 0 to 7." + ::= { acdPaaL2CfgEntry 28 } + +acdPaaL2CfgOneWayDelayMax OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Maximum allowed instantaneous delay." + ::= { acdPaaL2CfgEntry 29 } + +acdPaaL2CfgOneWayDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Nbr consecutive delay > max before alert." + ::= { acdPaaL2CfgEntry 30 } + +acdPaaL2CfgOneWayAvgDelayThresh OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "One-way average delay threshold." + ::= { acdPaaL2CfgEntry 31 } + +acdPaaL2CfgPeerID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Unique value for the peer PAA instance. This value follows the ordering + of the status and the results table. Its value ranges from 1 to + MAXINT (4 bytes)." + ::= { acdPaaL2CfgEntry 32 } + +acdPaaL2CfgOperationMode OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "PAA Operation Mode. Its values are: 1 = Bi-Dir, 2 = Source, 3 = Sink" + ::= { acdPaaL2CfgEntry 33 } + +acdPaaL2CfgPktLossThreshExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Extended packet loss ratio threshold allowed without issuing an alarm + expressed in millionth of percent (1,000,000 is 1%)." + DEFVAL { 0 } + ::= { acdPaaL2CfgEntry 34 } + + +acdPaaL2CfgVlan1IdValidation OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 1 ID validation." + ::= { acdPaaL2CfgEntry 35 } + +acdPaaL2CfgVlan1IdTxRxCoupling OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 1 ID Tx/Rx coupling." + ::= { acdPaaL2CfgEntry 36 } + +acdPaaL2CfgVlan1IdExpected OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The expected VLAN 1 ID value." + DEFVAL { 0 } + ::= { acdPaaL2CfgEntry 37 } + +acdPaaL2CfgVlan2IdValidation OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 2 ID validation." + ::= { acdPaaL2CfgEntry 38 } + +acdPaaL2CfgVlan2IdTxRxCoupling OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 2 ID Tx/Rx coupling." + ::= { acdPaaL2CfgEntry 39 } + +acdPaaL2CfgVlan2IdExpected OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The expected VLAN 2 ID value." + DEFVAL { 0 } + ::= { acdPaaL2CfgEntry 40 } + +acdPaaL2CfgVlan1PriorityValidation OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 1 priority validation." + ::= { acdPaaL2CfgEntry 41 } + +acdPaaL2CfgVlan1PriorityTxRxCoupling OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 1 priority Tx/Rx coupling." + ::= { acdPaaL2CfgEntry 42 } + +acdPaaL2CfgVlan1PriorityExpected OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The expected VLAN 1 priority value." + DEFVAL { 0 } + ::= { acdPaaL2CfgEntry 43 } + +acdPaaL2CfgVlan2PriorityValidation OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 2 priority validation." + ::= { acdPaaL2CfgEntry 44 } + +acdPaaL2CfgVlan2PriorityTxRxCoupling OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the status of VLAN 2 priority Tx/Rx coupling." + ::= { acdPaaL2CfgEntry 45 } + +acdPaaL2CfgVlan2PriorityExpected OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The expected VLAN 2 priority value." + DEFVAL { 0 } + ::= { acdPaaL2CfgEntry 46 } + +------------------------------------------------------------------------ + -- The PAA history Results table + -- This table contains all PAA entry results. +--------------------------------------------------------------------------- + +acdPaaHistResultTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPaaHistResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Result table of all Paa entries" + ::= { acdPaa 5 } + +acdPaaHistResultEntry OBJECT-TYPE + SYNTAX AcdPaaHistResultEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of results for a PAA instance for a specific + periodin time." + INDEX { acdPaaHistResultID , acdPaaHistResultSampleIndex } + ::= { acdPaaHistResultTable 1 } + + +AcdPaaHistResultEntry ::= SEQUENCE { + acdPaaHistResultID Unsigned32, + acdPaaHistResultSampleIndex Unsigned32, + acdPaaHistResultStatus INTEGER, + acdPaaHistResultDuration Unsigned32, + acdPaaHistResultIntervalEnd DateAndTime, + acdPaaHistResultPktLossNeValid TruthValue, + acdPaaHistResultPktLossNeSamples Unsigned32, + acdPaaHistResultPktLossNeValue Unsigned32, + acdPaaHistResultPktLossFeValid TruthValue, + acdPaaHistResultPktLossFeSamples Unsigned32, + acdPaaHistResultPktLossFeValue Unsigned32, + acdPaaHistResultOneWayDelayValid TruthValue, + acdPaaHistResultOneWayDelaySamples Unsigned32, + acdPaaHistResultOneWayDelayMinValue Integer32, + acdPaaHistResultOneWayDelayMaxValue Integer32, + acdPaaHistResultOneWayDelayAvgValue Integer32, + acdPaaHistResultOneWayDelayThreshEx Unsigned32, + acdPaaHistResultOneWayDvValid TruthValue, + acdPaaHistResultOneWayDvSamples Unsigned32, + acdPaaHistResultOneWayDvMinValue Integer32, + acdPaaHistResultOneWayDvMaxValue Integer32, + acdPaaHistResultOneWayDvAvgValue Integer32, + acdPaaHistResultOneWayDvThreshEx Unsigned32, + acdPaaHistResultTwoWayDelayValid TruthValue, + acdPaaHistResultTwoWayDelaySamples Unsigned32, + acdPaaHistResultTwoWayDelayMinValue Integer32, + acdPaaHistResultTwoWayDelayMaxValue Integer32, + acdPaaHistResultTwoWayDelayAvgValue Integer32, + acdPaaHistResultTwoWayDelayThreshEx Unsigned32, + acdPaaHistResultTwoWayDvValid TruthValue, + acdPaaHistResultTwoWayDvSamples Unsigned32, + acdPaaHistResultTwoWayDvMinValue Integer32, + acdPaaHistResultTwoWayDvMaxValue Integer32, + acdPaaHistResultTwoWayDvAvgValue Integer32, + acdPaaHistResultTwoWayDvThreshEx Unsigned32, + acdPaaHistResultIgmpJoinDelayValid TruthValue, + acdPaaHistResultIgmpJoinDelaySamples Unsigned32, + acdPaaHistResultIgmpJoinDelayMinValue Integer32, + acdPaaHistResultIgmpJoinDelayMaxValue Integer32, + acdPaaHistResultIgmpJoinDelayAvgValue Integer32, + acdPaaHistResultIgmpJoinDelayThreshEx Unsigned32, + acdPaaHistResultIgmpLeaveDelayValid TruthValue, + acdPaaHistResultIgmpLeaveDelaySamples Unsigned32, + acdPaaHistResultIgmpLeaveDelayMinValue Integer32, + acdPaaHistResultIgmpLeaveDelayMaxValue Integer32, + acdPaaHistResultIgmpLeaveDelayAvgValue Integer32, + acdPaaHistResultIgmpLeaveDelayThreshEx Unsigned32, + acdPaaHistResultPktLossNeValueExt Unsigned32, + acdPaaHistResultPktLossFeValueExt Unsigned32, + acdPaaHistResultPktLossNeNbrLoss Unsigned32, + acdPaaHistResultPktLossFeNbrLoss Unsigned32 +} + +acdPaaHistResultID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each PAA instance. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdPaaHistResultEntry 1 } + +acdPaaHistResultSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PAA instance. + This index starts at 1 and increases by one as each new sample." + ::= { acdPaaHistResultEntry 2 } + +acdPaaHistResultStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this acdPaaHistResult entry." + ::= { acdPaaHistResultEntry 3 } + +acdPaaHistResultDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdPaaHistResultEntry 4 } + +acdPaaHistResultIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdPaaHistResultEntry 5 } + +acdPaaHistResultPktLossNeValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Near-end packet loss results during + this sampling interval." + ::= { acdPaaHistResultEntry 6 } + +acdPaaHistResultPktLossNeSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate the Near-end packet loss." + ::= { acdPaaHistResultEntry 7 } + +acdPaaHistResultPktLossNeValue OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Near-end packet loss during this sampling interval. + The packet loss is the percent of packets transmitted but not + received of the Ethernet segment in hundredths of a percent." + ::= { acdPaaHistResultEntry 8 } + +acdPaaHistResultPktLossFeValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Far-end packet loss results during + this sampling interval." + ::= { acdPaaHistResultEntry 9 } + +acdPaaHistResultPktLossFeSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate the Far-end packet loss." + ::= { acdPaaHistResultEntry 10 } + +acdPaaHistResultPktLossFeValue OBJECT-TYPE + SYNTAX Unsigned32 (0..10000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Far-end packet loss during this sampling interval. + The packet loss is the percent of packets transmitted but not + received of the Ethernet segment in hundredths of a percent." + ::= { acdPaaHistResultEntry 11 } + +acdPaaHistResultOneWayDelayValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the validity of the One-way delay results during this + sampling interval." + ::= { acdPaaHistResultEntry 12 } + +acdPaaHistResultOneWayDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate One-way delay results." + ::= { acdPaaHistResultEntry 13 } + +acdPaaHistResultOneWayDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the One-way delay minimum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 14 } + +acdPaaHistResultOneWayDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the One-way delay maximum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 15 } + +acdPaaHistResultOneWayDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the One-way delay average value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 16 } + +acdPaaHistResultOneWayDelayThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the number of sample exceeding the limit during this + sampling interval." + ::= { acdPaaHistResultEntry 17 } + +acdPaaHistResultOneWayDvValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the One-way delay variation results + during this sampling interval." + ::= { acdPaaHistResultEntry 18 } + +acdPaaHistResultOneWayDvSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate One-way delay variation results." + ::= { acdPaaHistResultEntry 19 } + +acdPaaHistResultOneWayDvMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation minimum value during this + sampling interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 20 } + +acdPaaHistResultOneWayDvMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation maximum value during this + sampling interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 21 } + +acdPaaHistResultOneWayDvAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the One-way delay variation average value during this + sampling interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 22 } + +acdPaaHistResultOneWayDvThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit during this + sampling interval." + ::= { acdPaaHistResultEntry 23 } + +acdPaaHistResultTwoWayDelayValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Two-way delay results during this + sampling interval." + ::= { acdPaaHistResultEntry 24 } + +acdPaaHistResultTwoWayDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate Two-way delay results." + ::= { acdPaaHistResultEntry 25 } + +acdPaaHistResultTwoWayDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay minimum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 26 } + +acdPaaHistResultTwoWayDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay maximum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 27 } + +acdPaaHistResultTwoWayDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay average value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 28 } + +acdPaaHistResultTwoWayDelayThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit during this + sampling interval." + ::= { acdPaaHistResultEntry 29 } + +acdPaaHistResultTwoWayDvValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the Two-way delay variation results during + this sampling interval." + ::= { acdPaaHistResultEntry 30 } + +acdPaaHistResultTwoWayDvSamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate Two-way delay variation results." + ::= { acdPaaHistResultEntry 31 } + +acdPaaHistResultTwoWayDvMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay variation minimum value during this + sampling interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 32 } + +acdPaaHistResultTwoWayDvMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay variation maximum value during this + sampling interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 33 } + +acdPaaHistResultTwoWayDvAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the Two-way delay variation average value during this + sampling interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 34 } + +acdPaaHistResultTwoWayDvThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples exceeding the limit during this + sampling interval." + ::= { acdPaaHistResultEntry 35 } + +acdPaaHistResultIgmpJoinDelayValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the IGMP Join delay results during this + sampling interval." + ::= { acdPaaHistResultEntry 36 } + +acdPaaHistResultIgmpJoinDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate IGMP Join delay results." + ::= { acdPaaHistResultEntry 37 } + +acdPaaHistResultIgmpJoinDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Join delay minimum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 38 } + +acdPaaHistResultIgmpJoinDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Join delay maximum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 39 } + +acdPaaHistResultIgmpJoinDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Join delay average value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 40 } + +acdPaaHistResultIgmpJoinDelayThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of IGMP Join samples exceeding the limit during this + sampling interval." + ::= { acdPaaHistResultEntry 41 } + +acdPaaHistResultIgmpLeaveDelayValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the IGMP Leave delay results during this + sampling interval." + ::= { acdPaaHistResultEntry 42 } + +acdPaaHistResultIgmpLeaveDelaySamples OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of samples gathered during the sampling + interval to calculate IGMP Leave delay results." + ::= { acdPaaHistResultEntry 43 } + +acdPaaHistResultIgmpLeaveDelayMinValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Leave delay minimum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 44 } + +acdPaaHistResultIgmpLeaveDelayMaxValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Leave delay maximum value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 45 } + +acdPaaHistResultIgmpLeaveDelayAvgValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the IGMP Leave delay average value during this sampling + interval. The value is expressed in micro-seconds." + ::= { acdPaaHistResultEntry 46 } + +acdPaaHistResultIgmpLeaveDelayThreshEx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of IGMP Leave samples exceeding the limit during this + sampling interval." + ::= { acdPaaHistResultEntry 47 } + +acdPaaHistResultPktLossNeValueExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Extended near-end packet loss ratio. The packet loss is the percent + of packets transmitted but not received in millionth of a percent + (1,000,000 is 1%)." + + ::= { acdPaaHistResultEntry 48 } + +acdPaaHistResultPktLossFeValueExt OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Extended far-end packet loss ratio. The packet loss is the percent + of packets transmitted but not received in millionth of a percent + (1,000,000 is 1%)." + + ::= { acdPaaHistResultEntry 49 } + +acdPaaHistResultPktLossNeNbrLoss OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of near-end packet lost for the period. + This should be less or equal to acdPaaHistResultPktLossNeSamples." + ::= { acdPaaHistResultEntry 50 } + +acdPaaHistResultPktLossFeNbrLoss OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of far-end packet lost for the period. + This should be less or equal to acdPaaHistResultPktLossNeSamples." + ::= { acdPaaHistResultEntry 51 } + +--------------------------------------------------------------------------- + -- ACD-PAA-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdPaaCompliances OBJECT IDENTIFIER ::= { acdPaaConformance 1 } +acdPaaGroups OBJECT IDENTIFIER ::= { acdPaaConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdPaaResultGroup OBJECT-GROUP + OBJECTS { + acdPaaResultState, + acdPaaResultPktLossNeCurrValid, + acdPaaResultPktLossNeCurrValue, + acdPaaResultPktLossNePrevValid, + acdPaaResultPktLossNePrevValue, + acdPaaResultPktLossFeCurrValid, + acdPaaResultPktLossFeCurrValue, + acdPaaResultPktLossFePrevValid, + acdPaaResultPktLossFePrevValue, + acdPaaResultOneWayDvInstValue, + acdPaaResultOneWayDvCurrValid, + acdPaaResultOneWayDvCurrMinValue, + acdPaaResultOneWayDvCurrMaxValue, + acdPaaResultOneWayDvCurrAvgValue, + acdPaaResultOneWayDvCurrThreshExc, + acdPaaResultOneWayDvPrevValid, + acdPaaResultOneWayDvPrevMinValue, + acdPaaResultOneWayDvPrevMaxValue, + acdPaaResultOneWayDvPrevAvgValue, + acdPaaResultOneWayDvPrevThreshEx, + acdPaaResultTwoWayDelayInstValue, + acdPaaResultTwoWayDelayCurrValid, + acdPaaResultTwoWayDelayCurrMinValue, + acdPaaResultTwoWayDelayCurrMaxValue, + acdPaaResultTwoWayDelayCurrAvgValue, + acdPaaResultTwoWayDelayCurrThreshEx, + acdPaaResultTwoWayDelayPrevValid, + acdPaaResultTwoWayDelayPrevMinValue, + acdPaaResultTwoWayDelayPrevMaxValue, + acdPaaResultTwoWayDelayPrevAvgValue, + acdPaaResultTwoWayDelayPrevThreshEx, + acdPaaResultTwoWayDvInstValue, + acdPaaResultTwoWayDvCurrValid, + acdPaaResultTwoWayDvCurrMinValue, + acdPaaResultTwoWayDvCurrMaxValue, + acdPaaResultTwoWayDvCurrAvgValue, + acdPaaResultTwoWayDvCurrThreshEx, + acdPaaResultTwoWayDvPrevValid, + acdPaaResultTwoWayDvPrevMinValue, + acdPaaResultTwoWayDvPrevMaxValue, + acdPaaResultTwoWayDvPrevAvgValue, + acdPaaResultTwoWayDvPrevThreshEx, + acdPaaResultOneWayDelayInstValue, + acdPaaResultOneWayDelayCurrValid, + acdPaaResultOneWayDelayCurrMinValue, + acdPaaResultOneWayDelayCurrMaxValue, + acdPaaResultOneWayDelayCurrAvgValue, + acdPaaResultOneWayDelayCurrThreshEx, + acdPaaResultOneWayDelayPrevValid, + acdPaaResultOneWayDelayPrevMinValue, + acdPaaResultOneWayDelayPrevMaxValue, + acdPaaResultOneWayDelayPrevAvgValue, + acdPaaResultOneWayDelayPrevThreshEx, + acdPaaResultPktLossTime, + acdPaaResultOneWayTime, + acdPaaResultTwoWayTime, + acdPaaResultPktLossNeCurrSamples, + acdPaaResultPktLossNePrevSamples, + acdPaaResultPktLossFeCurrSamples, + acdPaaResultPktLossFePrevSamples, + acdPaaResultOneWayDelayCurrSamples, + acdPaaResultOneWayDelayPrevSamples, + acdPaaResultOneWayDvCurrSamples, + acdPaaResultOneWayDvPrevSamples, + acdPaaResultTwoWayDelayCurrSamples, + acdPaaResultTwoWayDelayPrevSamples, + acdPaaResultTwoWayDvCurrSamples, + acdPaaResultTwoWayDvPrevSamples, + acdPaaResultIgmpJoinDelayInstValue, + acdPaaResultIgmpJoinDelayCurrValid, + acdPaaResultIgmpJoinDelayCurrMinValue, + acdPaaResultIgmpJoinDelayCurrMaxValue, + acdPaaResultIgmpJoinDelayCurrAvgValue, + acdPaaResultIgmpJoinDelayCurrThreshEx, + acdPaaResultIgmpJoinDelayPrevValid, + acdPaaResultIgmpJoinDelayPrevMinValue, + acdPaaResultIgmpJoinDelayPrevMaxValue, + acdPaaResultIgmpJoinDelayPrevAvgValue, + acdPaaResultIgmpJoinDelayPrevThreshEx, + acdPaaResultIgmpLeaveDelayInstValue, + acdPaaResultIgmpLeaveDelayCurrValid, + acdPaaResultIgmpLeaveDelayCurrMinValue, + acdPaaResultIgmpLeaveDelayCurrMaxValue, + acdPaaResultIgmpLeaveDelayCurrAvgValue, + acdPaaResultIgmpLeaveDelayCurrThreshEx, + acdPaaResultIgmpLeaveDelayPrevValid, + acdPaaResultIgmpLeaveDelayPrevMinValue, + acdPaaResultIgmpLeaveDelayPrevMaxValue, + acdPaaResultIgmpLeaveDelayPrevAvgValue, + acdPaaResultIgmpLeaveDelayPrevThreshEx, + acdPaaResultIgmpJoinDelayTime, + acdPaaResultIgmpLeaveDelayTime, + acdPaaResultIgmpJoinDelayCurrSamples, + acdPaaResultIgmpJoinDelayPrevSamples, + acdPaaResultIgmpLeaveDelayCurrSamples, + acdPaaResultIgmpLeaveDelayPrevSamples, + acdPaaResultPktLossCurrGaps, + acdPaaResultPktLossPrevGaps, + acdPaaResultPktLossCurrLargestGap, + acdPaaResultPktLossPrevLargestGap, + acdPaaResultPktLossNeCurrValueExt, + acdPaaResultPktLossNePrevValueExt, + acdPaaResultPktLossFeCurrValueExt, + acdPaaResultPktLossFePrevValueExt, + acdPaaResultPktLossNeCurrNbrLoss, + acdPaaResultPktLossNePrevNbrLoss, + acdPaaResultPktLossFeCurrNbrLoss, + acdPaaResultPktLossFePrevNbrLoss, + acdPaaResultVlan1IdMismatch, + acdPaaResultVlan1IdExpected, + acdPaaResultVlan1IdReceived, + acdPaaResultVlan2IdMismatch, + acdPaaResultVlan2IdExpected, + acdPaaResultVlan2IdReceived, + acdPaaResultVlan1PriorityMismatch, + acdPaaResultVlan1PriorityExpected, + acdPaaResultVlan1PriorityReceived, + acdPaaResultVlan2PriorityMismatch, + acdPaaResultVlan2PriorityExpected, + acdPaaResultVlan2PriorityReceived, + acdPaaResultDscpMismatch, + acdPaaResultDscpExpected, + acdPaaResultDscpReceived + } + STATUS current + DESCRIPTION + "Objects for the PAA result Group." + ::= { acdPaaGroups 1 } + +acdPaaStatusGroup OBJECT-GROUP + OBJECTS { + acdPaaStatusCcAlert, + acdPaaStatusPktLossAlert, + acdPaaStatusOneWayDelayAlert, + acdPaaStatusOneWayAvgDelayAlert, + acdPaaStatusOneWayDvAlert, + acdPaaStatusOneWayAvgDvAlert, + acdPaaStatusTwoWayDelayAlert, + acdPaaStatusTwoWayAvgDelayAlert, + acdPaaStatusTwoWayDvAlert, + acdPaaStatusTwoWayAvgDvAlert, + acdPaaStatusState, + acdPaaStatusPeerAddress + } + STATUS current + DESCRIPTION + "Objects for the PAA status Group." + ::= { acdPaaGroups 2 } + +acdPaaUdpCfgGroup OBJECT-GROUP + OBJECTS { + acdPaaUdpCfgName, + acdPaaUdpCfgState, + acdPaaUdpCfgPktSize, + acdPaaUdpCfgSamplingPeriod, + acdPaaUdpCfgCcLossThresh, + acdPaaUdpCfgPktLossRefPeriod, + acdPaaUdpCfgPktLossThresh, + acdPaaUdpCfgOneWayRefPeriod, + acdPaaUdpCfgOneWayDvMax, + acdPaaUdpCfgOneWayDvThresh, + acdPaaUdpCfgOneWayAvgDvThresh, + acdPaaUdpCfgTwoWayRefPeriod, + acdPaaUdpCfgTwoWayDelayMax, + acdPaaUdpCfgTwoWayDelayThresh, + acdPaaUdpCfgTwoWayAvgDelayThresh, + acdPaaUdpCfgTwoWayDvMax, + acdPaaUdpCfgTwoWayDvThresh, + acdPaaUdpCfgTwoWayAvgDvThresh, + acdPaaUdpCfgIPv4DstAddr, + acdPaaUdpCfgPortNumber, + acdPaaUdpCfgDscpValue, + acdPaaUdpCfgVlan1PbitsValue, + acdPaaUdpCfgVlan2PbitsValue, + acdPaaUdpCfgOneWayDelayMax, + acdPaaUdpCfgOneWayDelayThresh, + acdPaaUdpCfgOneWayAvgDelayThresh, + acdPaaUdpCfgDestinationPortNumber, + acdPaaUdpCfgPeerID, + acdPaaUdpCfgOperationMode, + acdPaaUdpCfgIgmpOneWayJoinPeriod, + acdPaaUdpCfgIgmpRefPeriod, + acdPaaUdpCfgIgmpMaxJoinDly, + acdPaaUdpCfgIgmpJoinDlyThres, + acdPaaUdpCfgIgmpJoinAvgDlyThres, + acdPaaUdpCfgIgmpMaxLvDly, + acdPaaUdpCfgIgmpLvDlyThresh, + acdPaaUdpCfgIgmpLvAvgDlyThresh, + acdPaaUdpCfgPktLossThreshExt, + acdPaaUdpCfgVlan1PriorityValidation, + acdPaaUdpCfgVlan1PriorityTxRxCoupling, + acdPaaUdpCfgVlan1PriorityExpected, + acdPaaUdpCfgDscpValidation, + acdPaaUdpCfgDscpTxRxCoupling, + acdPaaUdpCfgDscpExpected + } + STATUS current + DESCRIPTION + "Objects for the PAA UDP configuration Group." + ::= { acdPaaGroups 3 } + +acdPaaL2CfgGroup OBJECT-GROUP + OBJECTS { + acdPaaL2CfgName, + acdPaaL2CfgState, + acdPaaL2CfgPktSize, + acdPaaL2CfgSamplingPeriod, + acdPaaL2CfgCcLossThresh, + acdPaaL2CfgPktLossRefPeriod, + acdPaaL2CfgPktLossThresh, + acdPaaL2CfgOneWayRefPeriod, + acdPaaL2CfgOneWayDvMax, + acdPaaL2CfgOneWayDvThresh, + acdPaaL2CfgOneWayAvgDvThresh, + acdPaaL2CfgTwoWayRefPeriod, + acdPaaL2CfgTwoWayDelayMax, + acdPaaL2CfgTwoWayDelayThresh, + acdPaaL2CfgTwoWayAvgDelayThresh, + acdPaaL2CfgTwoWayDvMax, + acdPaaL2CfgTwoWayDvThresh, + acdPaaL2CfgTwoWayAvgDvThresh, + acdPaaL2CfgPortName, + acdPaaL2CfgMacDst, + acdPaaL2CfgEtype, + acdPaaL2CfgVlan1IdEn, + acdPaaL2CfgVlan1Id, + acdPaaL2CfgVlan2IdEn, + acdPaaL2CfgVlan2Id, + acdPaaL2CfgVlan1PbitsValue, + acdPaaL2CfgVlan2PbitsValue, + acdPaaL2CfgOneWayDelayMax, + acdPaaL2CfgOneWayDelayThresh, + acdPaaL2CfgOneWayAvgDelayThresh, + acdPaaL2CfgPeerID, + acdPaaL2CfgOperationMode, + acdPaaL2CfgPktLossThreshExt, + acdPaaL2CfgVlan1IdValidation, + acdPaaL2CfgVlan1IdTxRxCoupling, + acdPaaL2CfgVlan1IdExpected, + acdPaaL2CfgVlan2IdValidation, + acdPaaL2CfgVlan2IdTxRxCoupling, + acdPaaL2CfgVlan2IdExpected, + acdPaaL2CfgVlan1PriorityValidation, + acdPaaL2CfgVlan1PriorityTxRxCoupling, + acdPaaL2CfgVlan1PriorityExpected, + acdPaaL2CfgVlan2PriorityValidation, + acdPaaL2CfgVlan2PriorityTxRxCoupling, + acdPaaL2CfgVlan2PriorityExpected + } + STATUS current + DESCRIPTION + "Objects for the PAA L2 configuration Group." + ::= { acdPaaGroups 4 } + +acdPaaHistResultGroup OBJECT-GROUP + OBJECTS { + acdPaaHistResultID, + acdPaaHistResultSampleIndex, + acdPaaHistResultStatus, + acdPaaHistResultDuration, + acdPaaHistResultIntervalEnd, + acdPaaHistResultPktLossNeValid, + acdPaaHistResultPktLossNeSamples, + acdPaaHistResultPktLossNeValue, + acdPaaHistResultPktLossFeValid, + acdPaaHistResultPktLossFeSamples, + acdPaaHistResultPktLossFeValue, + acdPaaHistResultOneWayDelayValid, + acdPaaHistResultOneWayDelaySamples, + acdPaaHistResultOneWayDelayMinValue, + acdPaaHistResultOneWayDelayMaxValue, + acdPaaHistResultOneWayDelayAvgValue, + acdPaaHistResultOneWayDelayThreshEx, + acdPaaHistResultOneWayDvValid, + acdPaaHistResultOneWayDvSamples, + acdPaaHistResultOneWayDvMinValue, + acdPaaHistResultOneWayDvMaxValue, + acdPaaHistResultOneWayDvAvgValue, + acdPaaHistResultOneWayDvThreshEx, + acdPaaHistResultTwoWayDelayValid, + acdPaaHistResultTwoWayDelaySamples, + acdPaaHistResultTwoWayDelayMinValue, + acdPaaHistResultTwoWayDelayMaxValue, + acdPaaHistResultTwoWayDelayAvgValue, + acdPaaHistResultTwoWayDelayThreshEx, + acdPaaHistResultTwoWayDvValid, + acdPaaHistResultTwoWayDvSamples, + acdPaaHistResultTwoWayDvMinValue, + acdPaaHistResultTwoWayDvMaxValue, + acdPaaHistResultTwoWayDvAvgValue, + acdPaaHistResultTwoWayDvThreshEx, + acdPaaHistResultIgmpJoinDelayValid, + acdPaaHistResultIgmpJoinDelaySamples, + acdPaaHistResultIgmpJoinDelayMinValue, + acdPaaHistResultIgmpJoinDelayMaxValue, + acdPaaHistResultIgmpJoinDelayAvgValue, + acdPaaHistResultIgmpJoinDelayThreshEx, + acdPaaHistResultIgmpLeaveDelayValid, + acdPaaHistResultIgmpLeaveDelaySamples, + acdPaaHistResultIgmpLeaveDelayMinValue, + acdPaaHistResultIgmpLeaveDelayMaxValue, + acdPaaHistResultIgmpLeaveDelayAvgValue, + acdPaaHistResultIgmpLeaveDelayThreshEx, + acdPaaHistResultPktLossNeValueExt, + acdPaaHistResultPktLossFeValueExt, + acdPaaHistResultPktLossNeNbrLoss, + acdPaaHistResultPktLossFeNbrLoss + } + STATUS current + DESCRIPTION + "Objects for the PAA history result Group." + ::= { acdPaaGroups 5 } + +acdPaaCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-PAA-MIB module." + MODULE + MANDATORY-GROUPS { + acdPaaResultGroup, + acdPaaStatusGroup, + acdPaaUdpCfgGroup, + acdPaaL2CfgGroup, + acdPaaHistResultGroup + } + + ::= { acdPaaCompliances 1 } + + +END diff --git a/mibs/accedian/ACD-POLICY-MIB b/mibs/accedian/ACD-POLICY-MIB new file mode 100644 index 0000000..052b9c0 --- /dev/null +++ b/mibs/accedian/ACD-POLICY-MIB @@ -0,0 +1,1158 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2016, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-POLICY-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, Counter32, Counter64 + FROM SNMPv2-SMI + DisplayString, TruthValue, DateAndTime + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + + acdMibs + FROM ACCEDIAN-SMI; + +acdPolicy MODULE-IDENTITY + + LAST-UPDATED "201609230100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Policies database for this Accedian Networks device." + + REVISION "201609230100Z" -- 23 September 2016 + DESCRIPTION + "Add acdPolicyHistStatsID and acdPolicyHistStatsSampleIndex + to acdPolicyHistStatsGroup. + Add acdPolicyDeprecatedCompliance MODULE-COMPLIANCE." + + REVISION "201605260100Z" -- 26 May 2016 + DESCRIPTION + "Set access level to read-only for acdPolicyHistStatsID, + acdPolicyHistStatsSampleIndex." + + REVISION "201304240100Z" -- 24 April 2013 + DESCRIPTION + "Add tvlan id and Outer vlan to acdPolicyTable. Update encaplusation actions" + + REVISION "201110100100Z" -- 10 October 2011 + DESCRIPTION + "Add acdPolicyTableLastChangeTid." + + REVISION "201102280100Z" -- 28 Feb 2011 + DESCRIPTION + "Add acdPolicyListTable and acdPolicyPortTable tables." + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Add compliance section." + + REVISION "200806150100Z" -- 15 June 2008 + DESCRIPTION + "Add new service mapping values." + + REVISION "200805010100Z" -- 1 May 2008 + DESCRIPTION + "Add service mapping support." + + REVISION "200802060100Z" -- 6 Feb 2008 + DESCRIPTION + "Add support for history table." + + REVISION "200705150100Z" -- 15 may 2007 + DESCRIPTION + "Add bad packets counters." + + REVISION "200703280100Z" -- 28 March 2007 + DESCRIPTION + "Add Regulator functionalities." + + REVISION "200608060100Z" -- 6 August 2006 + DESCRIPTION + "Initial version of MIB module ACD-POLICY-MIB." + + ::= { acdMibs 3 } + +acdPolicyNotifications OBJECT IDENTIFIER ::= { acdPolicy 4 } +acdPolicyMIBObjects OBJECT IDENTIFIER ::= { acdPolicy 5 } +acdPolicyConformance OBJECT IDENTIFIER ::= { acdPolicy 6 } + +acdPolicyList OBJECT IDENTIFIER ::= { acdPolicyMIBObjects 1 } +acdPolicyPort OBJECT IDENTIFIER ::= { acdPolicyMIBObjects 2 } +acdPolicyTableTid OBJECT IDENTIFIER ::= { acdPolicyMIBObjects 3 } + +--------------------------------------------------------------------------- + -- The Policies table + -- This table contains all Policies. +--------------------------------------------------------------------------- + +acdPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Policies" + ::= { acdPolicy 1 } + +acdPolicyEntry OBJECT-TYPE + SYNTAX AcdPolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Policy is a Filter applied to a specific MAC to block, permit or + only count a specific traffic." + INDEX { acdPolicyID } + ::= { acdPolicyTable 1 } + + +AcdPolicyEntry ::= SEQUENCE { + acdPolicyID Unsigned32, + acdPolicyListID Unsigned32, + acdPolicyEntryID Unsigned32, + acdPolicyEnable TruthValue, + acdPolicyFilterType INTEGER, + acdPolicyFilterIndex Unsigned32, + acdPolicyDropEnable TruthValue, + acdPolicyMonitorEnable TruthValue, + acdPolicyMonitorIndex INTEGER, + acdPolicyRegulatorEnable TruthValue, + acdPolicyRegulatorIndex Unsigned32, + acdPolicyRegulatorMarking INTEGER, + acdPolicyAction INTEGER, + acdPolicyEvcMappingEncaps INTEGER, + acdPolicyEvcMappingEtype INTEGER, + acdPolicyEvcMappingVlanId Unsigned32, + acdPolicyCosMappingPcpAction INTEGER, + acdPolicyCosMappingChoice1En TruthValue, + acdPolicyCosMappingChoice1Type INTEGER, + acdPolicyCosMappingChoice1Profile Unsigned32, + acdPolicyCosMappingChoice1RegSet Unsigned32, + acdPolicyCosMappingChoice2En TruthValue, + acdPolicyCosMappingChoice2Type INTEGER, + acdPolicyCosMappingChoice2Profile Unsigned32, + acdPolicyCosMappingChoice2RegSet Unsigned32, + acdPolicyDefaultMappingGreenCfi Unsigned32, + acdPolicyDefaultMappingGreenPrior Unsigned32, + acdPolicyDefaultMappingYellowCfi Unsigned32, + acdPolicyDefaultMappingYellowPrior Unsigned32, + acdPolicyOutgoingPort OBJECT IDENTIFIER, + acdPolicyEvcMappingVlan2Etype INTEGER, + acdPolicyEvcMappingVlan2Id Unsigned32 +} + +acdPolicyID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each policy entry. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdPolicyEntry 1 } + +acdPolicyListID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies in wich List the entry is." + ::= { acdPolicyEntry 2 } + +acdPolicyEntryID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the order in the List." + ::= { acdPolicyEntry 3 } + +acdPolicyEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the Policy in the packet processing Engine." + ::= { acdPolicyEntry 4 } + +acdPolicyFilterType OBJECT-TYPE + SYNTAX INTEGER { + layer2filter(0), + ipv4filter(1), + ipv6filter(2), + vlist(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates which filter type is programmed in this entry. With + the filter index we can retrieve the specific filter in the filter + database." + ::= { acdPolicyEntry 5 } + +acdPolicyFilterIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates which filter index is programmed in this entry. With + the filter type we can retrieve the specific filter in the filter + database." + ::= { acdPolicyEntry 6 } + +acdPolicyDropEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "********* THIS OBJECT IS DEPRECATED ********** + + This object has been deprecated in favour of acdPolicyAction. + + This indicates if this policy is programmed to drop or let the traffic + pass the processing engine." + ::= { acdPolicyEntry 7 } + +acdPolicyMonitorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates if this policy is programmed to send the traffic to + one of the monitoring port." + ::= { acdPolicyEntry 8 } + +acdPolicyMonitorIndex OBJECT-TYPE + SYNTAX INTEGER { + monitor1(1), + monitor2(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates which monitor port is programmed to send the traffic + matching this policy entry." + ::= { acdPolicyEntry 9 } + +acdPolicyRegulatorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates if this policy use or not a bandwidth regulator." + ::= { acdPolicyEntry 10 } + +acdPolicyRegulatorIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates which bandwidth regulator index is programmed in + this policy entry." + ::= { acdPolicyEntry 11 } + +acdPolicyRegulatorMarking OBJECT-TYPE + SYNTAX INTEGER { + green(1), + yellow(2), + red(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates the pre-marking color associated with this policy." + ::= { acdPolicyEntry 12 } + +acdPolicyAction OBJECT-TYPE + SYNTAX INTEGER { + drop(1), + permit(2), + mgmtOAM(3), + mgmtOAMandDrop(4), + mgmtOAMandForward(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Action that will be applied to traffic that matches the filter." + ::= { acdPolicyEntry 13 } + +acdPolicyEvcMappingEncaps OBJECT-TYPE + SYNTAX INTEGER { + none(1), + push(2), + pop(3), + replace(4), + popAndReplace(5), + pushAndPreserve(6), + preserveVlanNewCfiPcp(7), + pushAndPush(8), + popAndPop(9), + pushAndReplace(10) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Action that will be applied to traffic that matches the filter." + ::= { acdPolicyEntry 14 } + +acdPolicyEvcMappingEtype OBJECT-TYPE + SYNTAX INTEGER { + cvlan(1), + svlan(2), + tvlan(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ethertype of the second VLAN to be added if the + encapsulation is set to push. Possible values are customer + VLAN (cvlan), service VLAN(svlan) and tunneling VLAN(tvlan). + Note: some values are only applicable on certain platforms." + ::= { acdPolicyEntry 15 } + +acdPolicyEvcMappingVlanId OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VLAN ID to be added if the encapsulation is set to push. Its + value ranges from 0 to 4095." + ::= { acdPolicyEntry 16 } + +acdPolicyCosMappingPcpAction OBJECT-TYPE + SYNTAX INTEGER { + preserve(1), + direct(2), + map(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This section selects the PCP (Priority Code Points) action to perform. + Possible values are: + + Preserve: Keep the PCP bits if the packet is already tagged + Direct: Add the default PCP value + Map: Use a CoS profile for PCP selection + + For each PCP action there is one or two traffic mapping choices and + the default PCP bits to use if the packet does not match the first + and the second choices." + ::= { acdPolicyEntry 17 } + +acdPolicyCosMappingChoice1En OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates if this choice is used." + ::= { acdPolicyEntry 18 } + +acdPolicyCosMappingChoice1Type OBJECT-TYPE + SYNTAX INTEGER { + pcpVlan(1), + pcpVlanInVlan(2), + pre(3), + dscp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The traffic mapping is accomplished using the selected field in the + incoming traffic. This field can be p-bits in 802.1Q, 802.1Q-in-Q tags + IP precedence bits in IPv4 TOS byte or DSCP bits in IPv4 DSCP byte." + ::= { acdPolicyEntry 19 } + +acdPolicyCosMappingChoice1Profile OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CoS profile used to map the input traffic to an L2 class of service." + ::= { acdPolicyEntry 20 } + +acdPolicyCosMappingChoice1RegSet OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Bandwidth regulator apply to regulate traffic." + ::= { acdPolicyEntry 21 } + +acdPolicyCosMappingChoice2En OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This indicates if this choice is used." + ::= { acdPolicyEntry 22 } + +acdPolicyCosMappingChoice2Type OBJECT-TYPE + SYNTAX INTEGER { + pcpVlan(1), + pcpVlanInVlan(2), + pre(3), + dscp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The traffic mapping is accomplished using the selected field in the + incoming traffic. This field can be p-bits in 802.1Q, 802.1Q-in-Q tags + IP precedence bits in IPv4 TOS byte or DSCP bits in IPv4 DSCP byte." + ::= { acdPolicyEntry 23 } + +acdPolicyCosMappingChoice2Profile OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "CoS profile used to map the input traffic to an L2 class of service." + ::= { acdPolicyEntry 24 } + +acdPolicyCosMappingChoice2RegSet OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Bandwidth regulator apply to regulate traffic." + ::= { acdPolicyEntry 25 } + +acdPolicyDefaultMappingGreenCfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default CFI value to be applied if the Encapsulation is Push. + This would only be applied if the traffic does not match the first + and second choices and if the result color is green." + ::= { acdPolicyEntry 26 } + +acdPolicyDefaultMappingGreenPrior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default PCP values to be applied if the Encapsulation is Push. + This would only be applied if the traffic does not match the first + and second choices and if the result color is green." + ::= { acdPolicyEntry 27 } + +acdPolicyDefaultMappingYellowCfi OBJECT-TYPE + SYNTAX Unsigned32 (0..1) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default CFI value to be applied if the Encapsulation is Push. + This would only be applied if the traffic does not match the first + and second choices and if the result color is green." + ::= { acdPolicyEntry 28 } + +acdPolicyDefaultMappingYellowPrior OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default PCP values to be applied if the Encapsulation is Push. + This would only be applied if the traffic does not match the first + and second choices and if the result color is green." + ::= { acdPolicyEntry 29 } + +acdPolicyOutgoingPort OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The OID value used to identify the outgoing port for this policy. + In order to identify a particular port, this object shall + identify the instance of the acdPortConfigIndex object, defined + in ACD-PORT-MIB, for the desired port. For example, if an entry + is set to port 4, this object would be set to acdPortConfigIndex.4 + and by querying the acdPortConfigName.4 the user can retrieve the + name of this port." + ::= { acdPolicyEntry 30 } + +acdPolicyEvcMappingVlan2Etype OBJECT-TYPE + SYNTAX INTEGER { + cvlan(1), + svlan(2), + tvlan(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ethertype of the second VLAN to be added if the + encapsulation is set to push. Possible values are customer + VLAN (cvlan), service VLAN(svlan) and tunneling VLAN(tvlan). + Note: some values are only applicable on certain platforms." + ::= { acdPolicyEntry 31 } + +acdPolicyEvcMappingVlan2Id OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The second VLAN ID to be added if the encapsulation is set to + push. Its value ranges from 0 to 4095." + ::= { acdPolicyEntry 32 } + + +----------------------------------------------------------------------- + -- The Policies Counters table + -- This table contains all counters associated with each policy. +--------------------------------------------------------------------------- + +acdPolicyStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPolicyStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all counters associated with each policy." + ::= { acdPolicy 2 } + +acdPolicyStatsEntry OBJECT-TYPE + SYNTAX AcdPolicyStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Entry consists in a bytes and a packets counters." + INDEX { acdPolicyStatsID } + ::= { acdPolicyStatsTable 1 } + + +AcdPolicyStatsEntry ::= SEQUENCE { + acdPolicyStatsID Unsigned32, + acdPolicyStatsListID Unsigned32, + acdPolicyStatsEntryID Unsigned32, + acdPolicyStatsInPkts Counter32, + acdPolicyStatsInOverflowPkts Counter32, + acdPolicyStatsInHCPkts Counter64, + acdPolicyStatsInOctets Counter32, + acdPolicyStatsInOverflowOctets Counter32, + acdPolicyStatsInHCOctets Counter64, + acdPolicyStatsInPktsErr Counter32, + acdPolicyStatsInOverflowPktsErr Counter32, + acdPolicyStatsInHCPktsErr Counter64 +} + +acdPolicyStatsID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each policy counter. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdPolicyStatsEntry 1 } + +acdPolicyStatsListID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies in wich List the entry is." + ::= { acdPolicyStatsEntry 2 } + +acdPolicyStatsEntryID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the order in the List." + ::= { acdPolicyStatsEntry 3 } + +acdPolicyStatsInPkts OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received on this MAC and matching this + policy. This is a 32 bits counter. Combined with + acdPolicyStatsInOverflowPkts, it provides the equivalent of the 64 + bits counter acdPolicyStatsInHCPkts." + ::= { acdPolicyStatsEntry 4 } + +acdPolicyStatsInOverflowPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdPolicyStatsInPkts counter + has overflowed. This is a 32 bits counter. Combined with + acdPolicyStatsInPkts, it provides the equivalent of the 64 bits + counter acdPolicyStatsInHCPkts." + ::= { acdPolicyStatsEntry 5 } + +acdPolicyStatsInHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received on this MAC and matching this + policy." + ::= { acdPolicyStatsEntry 6 } + +acdPolicyStatsInOctets OBJECT-TYPE + SYNTAX Counter32 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Octets received on this MAC and matching this + policy. This is a 32 bits counter. Combined with + acdPolicyStatsInOverflowOctets, it provides the equivalent of the + 64 bits counter acdPolicyStatsInHCOctets." + ::= { acdPolicyStatsEntry 7 } + +acdPolicyStatsInOverflowOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdPolicyStatsInOctets counter + has overflowed. This is a 32 bits counter. Combined with + acdPolicyStatsInOctets, it provides the equivalent of the 64 bits + counter acdPolicyStatsInHCOctets." + ::= { acdPolicyStatsEntry 8 } + +acdPolicyStatsInHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Octets received on this MAC and matching this + policy." + ::= { acdPolicyStatsEntry 9 } + +acdPolicyStatsInPktsErr OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errored packets received on this MAC and matching this + policy. This is a 32 bits counter. Combined with + acdPolicyStatsInOverflowPktsErr, it provides the equivalent of the 64 + bits counter acdPolicyStatsInHCPktsErr." + ::= { acdPolicyStatsEntry 10 } + +acdPolicyStatsInOverflowPktsErr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdPolicyStatsInPktsErr counter + has overflowed. This is a 32 bits counter. Combined with + acdPolicyStatsInPktsErr, it provides the equivalent of the 64 bits + counter acdPolicyStatsInHCPktsErr." + ::= { acdPolicyStatsEntry 11 } + +acdPolicyStatsInHCPktsErr OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errored packets received on this MAC and matching this + policy." + ::= { acdPolicyStatsEntry 12 } + + +--------------------------------------------------------------------------- + -- The Policies History group + + -- The Policies History group records periodic statistical samples + -- from a Policy and stores them for later retrieval. + +--------------------------------------------------------------------------- + +acdPolicyHistStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPolicyHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all counters associated with each policy." + ::= { acdPolicy 3 } + +acdPolicyHistStatsEntry OBJECT-TYPE + SYNTAX AcdPolicyHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Entry consists in a bytes and a packets counters." + INDEX { acdPolicyHistStatsID, acdPolicyHistStatsSampleIndex } + ::= { acdPolicyHistStatsTable 1 } + + +AcdPolicyHistStatsEntry ::= SEQUENCE { + acdPolicyHistStatsID Unsigned32, + acdPolicyHistStatsListID Unsigned32, + acdPolicyHistStatsEntryID Unsigned32, + acdPolicyHistStatsSampleIndex Unsigned32, + acdPolicyHistStatsStatus INTEGER, + acdPolicyHistStatsDuration Unsigned32, + acdPolicyHistStatsIntervalEnd DateAndTime, + acdPolicyHistStatsInPkts Counter32, + acdPolicyHistStatsInOverflowPkts Counter32, + acdPolicyHistStatsInHCPkts Counter64, + acdPolicyHistStatsInOctets Counter32, + acdPolicyHistStatsInOverflowOctets Counter32, + acdPolicyHistStatsInHCOctets Counter64, + acdPolicyHistStatsInPktsErr Counter32, + acdPolicyHistStatsInOverflowPktsErr Counter32, + acdPolicyHistStatsInHCPktsErr Counter64 + +} + +acdPolicyHistStatsID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each policy counter. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdPolicyHistStatsEntry 1 } + +acdPolicyHistStatsListID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies in wich List the entry is." + ::= { acdPolicyHistStatsEntry 2 } + +acdPolicyHistStatsEntryID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the order in the List." + ::= { acdPolicyHistStatsEntry 3 } + +acdPolicyHistStatsSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same policy + instance. This index starts at 1 and increases by one as each new + sample." + ::= { acdPolicyHistStatsEntry 4 } + +acdPolicyHistStatsStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this acdPolicyHistStats entry." + ::= { acdPolicyHistStatsEntry 5 } + +acdPolicyHistStatsDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdPolicyHistStatsEntry 6 } + +acdPolicyHistStatsIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdPolicyHistStatsEntry 7 } + +acdPolicyHistStatsInPkts OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received on this MAC and matching this + policy during this sampling interval. This is a 32 bits counter. + Combined with acdPolicyHistStatsInOverflowPkts, it provides the + equivalent of the 64 bits counter acdPolicyHistStatsInHCPkts." + ::= { acdPolicyHistStatsEntry 8 } + +acdPolicyHistStatsInOverflowPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdPolicyStatsInPkts counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdPolicyHistStatsInPkts, it provides the equivalent of + the 64 bits counter acdPolicyHistStatsInHCPkts." + ::= { acdPolicyHistStatsEntry 9 } + +acdPolicyHistStatsInHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received on this MAC and matching this + policy during this sampling interval." + ::= { acdPolicyHistStatsEntry 10 } + +acdPolicyHistStatsInOctets OBJECT-TYPE + SYNTAX Counter32 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Octets received on this MAC and matching this + policy during this sampling interval. This is a 32 bits counter. + Combined with acdPolicyHistStatsInOverflowOctets, it provides the + equivalent of the 64 bits counter acdPolicyHistStatsInHCOctets." + ::= { acdPolicyHistStatsEntry 11 } + +acdPolicyHistStatsInOverflowOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdPolicyHistStatsInOctets counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdPolicyHistStatsInOctets, it provides the equivalent + of the 64 bits counter acdPolicyHistStatsInHCOctets." + ::= { acdPolicyHistStatsEntry 12 } + +acdPolicyHistStatsInHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Octets received on this MAC and matching this + policy during this sampling interval." + ::= { acdPolicyHistStatsEntry 13 } + +acdPolicyHistStatsInPktsErr OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errored packets received on this MAC and matching + this policy during this sampling interval. This is a 32 bits counter. + Combined with acdPolicyHistStatsInOverflowPktsErr, it provides the + equivalent of the 64 bits counter acdPolicyHistStatsInHCPktsErr." + ::= { acdPolicyHistStatsEntry 14 } + +acdPolicyHistStatsInOverflowPktsErr OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdPolicyStatsInPktsErr counter + has overflowed during this sampling interval. This is a 32 bits counter. + Combined with acdPolicyHistStatsInPktsErr, it provides the equivalent + of the 64 bits counter acdPolicyHistStatsInHCPktsErr." + ::= { acdPolicyHistStatsEntry 15 } + +acdPolicyHistStatsInHCPktsErr OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errored packets received on this MAC and matching + this policy during this sampling interval." + ::= { acdPolicyHistStatsEntry 16 } + + +--------------------------------------------------------------------------- + -- The Policy lists table + -- This table contains all Policy list for this unit. +--------------------------------------------------------------------------- + +acdPolicyListTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPolicyListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Policy list contains in this unit." + ::= { acdPolicyList 1 } + +acdPolicyListEntry OBJECT-TYPE + SYNTAX AcdPolicyListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry in this table describe a policy list contains in this unit." + INDEX { acdPolicyListEntryID } + ::= { acdPolicyListTable 1 } + + +AcdPolicyListEntry ::= SEQUENCE { + acdPolicyListEntryID Unsigned32, + acdPolicyListName DisplayString, + acdPolicyListNbrEntries Unsigned32 +} + + +acdPolicyListEntryID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each list. This value is the same than acdPolicyListID + for each entry in acdPolicyTable." + ::= { acdPolicyListEntry 1 } + + +acdPolicyListName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a string to identify the policy list." + ::= { acdPolicyListEntry 2 } + +acdPolicyListNbrEntries OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of entries currently in this list." + ::= { acdPolicyListEntry 3 } + + +--------------------------------------------------------------------------- + -- The Policy port table + -- This table contains the one to one relation between port and policy list. +--------------------------------------------------------------------------- + +acdPolicyPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPolicyPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Port and the correspondant policy list." + ::= { acdPolicyPort 1 } + +acdPolicyPortEntry OBJECT-TYPE + SYNTAX AcdPolicyPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Policy port entry is the mapping between this port and a policy list." + INDEX { acdPolicyPortEntryID } + ::= { acdPolicyPortTable 1 } + + +AcdPolicyPortEntry ::= SEQUENCE { + acdPolicyPortEntryID Unsigned32, + acdPolicyPortListID Unsigned32 +} + +acdPolicyPortEntryID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each port. This value is the same than acdPortConfigIndex + used in ACD-PORT-MIB." + ::= { acdPolicyPortEntry 1 } + +acdPolicyPortListID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Numerical value coresponding to acdPolicyListEntryID." + ::= { acdPolicyPortEntry 2 } + +--------------------------------------------------------------------------- + -- Transaction ID Information +--------------------------------------------------------------------------- + +acdPolicyTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdPolicyTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdPolicyTableTid 1 } + +--------------------------------------------------------------------------- + -- ACD-POLICY-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdPolicyCompliances OBJECT IDENTIFIER ::= { acdPolicyConformance 1 } +acdPolicyGroups OBJECT IDENTIFIER ::= { acdPolicyConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdPolicyGroup OBJECT-GROUP + OBJECTS { + acdPolicyListID, + acdPolicyEntryID, + acdPolicyEnable, + acdPolicyFilterType, + acdPolicyFilterIndex, + acdPolicyMonitorEnable, + acdPolicyMonitorIndex, + acdPolicyRegulatorEnable, + acdPolicyRegulatorIndex, + acdPolicyRegulatorMarking, + acdPolicyAction, + acdPolicyEvcMappingEncaps, + acdPolicyEvcMappingEtype, + acdPolicyEvcMappingVlanId, + acdPolicyCosMappingPcpAction, + acdPolicyCosMappingChoice1En, + acdPolicyCosMappingChoice1Type, + acdPolicyCosMappingChoice1Profile, + acdPolicyCosMappingChoice1RegSet, + acdPolicyCosMappingChoice2En, + acdPolicyCosMappingChoice2Type, + acdPolicyCosMappingChoice2Profile, + acdPolicyCosMappingChoice2RegSet, + acdPolicyDefaultMappingGreenCfi, + acdPolicyDefaultMappingGreenPrior, + acdPolicyDefaultMappingYellowCfi, + acdPolicyDefaultMappingYellowPrior, + acdPolicyOutgoingPort, + acdPolicyEvcMappingVlan2Etype, + acdPolicyEvcMappingVlan2Id + } + STATUS current + DESCRIPTION + "Objects for the policy configuration Group." + ::= { acdPolicyGroups 1 } + +acdPolicyStatsGroup OBJECT-GROUP + OBJECTS { + acdPolicyStatsListID, + acdPolicyStatsEntryID, + acdPolicyStatsInPkts, + acdPolicyStatsInOverflowPkts, + acdPolicyStatsInHCPkts, + acdPolicyStatsInOctets, + acdPolicyStatsInOverflowOctets, + acdPolicyStatsInHCOctets, + acdPolicyStatsInPktsErr, + acdPolicyStatsInOverflowPktsErr, + acdPolicyStatsInHCPktsErr + } + STATUS current + DESCRIPTION + "Objects for the policy statistics Group." + ::= { acdPolicyGroups 2 } + +acdPolicyHistStatsGroup OBJECT-GROUP + OBJECTS { + acdPolicyHistStatsID, + acdPolicyHistStatsListID, + acdPolicyHistStatsEntryID, + acdPolicyHistStatsSampleIndex, + acdPolicyHistStatsStatus, + acdPolicyHistStatsDuration, + acdPolicyHistStatsIntervalEnd, + acdPolicyHistStatsInPkts, + acdPolicyHistStatsInOverflowPkts, + acdPolicyHistStatsInHCPkts, + acdPolicyHistStatsInOctets, + acdPolicyHistStatsInOverflowOctets, + acdPolicyHistStatsInHCOctets, + acdPolicyHistStatsInPktsErr, + acdPolicyHistStatsInOverflowPktsErr, + acdPolicyHistStatsInHCPktsErr + } + STATUS current + DESCRIPTION + "Objects for the policy historical tatistics Group." + ::= { acdPolicyGroups 3 } + +acdPolicyDeprecatedGroup OBJECT-GROUP + OBJECTS { + acdPolicyDropEnable + } + STATUS deprecated + DESCRIPTION + "Objects for the policy deprecated Group." + ::= { acdPolicyGroups 4} + +acdPolicyListGroup OBJECT-GROUP + OBJECTS { + acdPolicyListName, + acdPolicyListNbrEntries + } + STATUS current + DESCRIPTION + "Objects for the policy list information Group." + ::= { acdPolicyGroups 5 } + +acdPolicyPortGroup OBJECT-GROUP + OBJECTS { + acdPolicyPortListID + } + STATUS current + DESCRIPTION + "Objects for the policy port mapping Group." + ::= { acdPolicyGroups 6 } + +acdPolicyTidGroup OBJECT-GROUP + OBJECTS { + acdPolicyTableLastChangeTid + } + STATUS current + DESCRIPTION + "List of scalars to monitior changes in tables." + ::= { acdPolicyGroups 7 } + +acdPolicyCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-POLICY-MIB module." + MODULE + MANDATORY-GROUPS { + acdPolicyGroup, + acdPolicyStatsGroup, + acdPolicyHistStatsGroup, + acdPolicyListGroup, + acdPolicyPortGroup, + acdPolicyTidGroup + } + + ::= { acdPolicyCompliances 1 } + +acdPolicyDeprecatedCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for support of the ACD-POLICY-MIB module." + MODULE + MANDATORY-GROUPS { + acdPolicyDeprecatedGroup + } + + ::= { acdPolicyCompliances 2 } + +END diff --git a/mibs/accedian/ACD-PORT-MIB b/mibs/accedian/ACD-PORT-MIB new file mode 100644 index 0000000..f38c3f7 --- /dev/null +++ b/mibs/accedian/ACD-PORT-MIB @@ -0,0 +1,2972 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2016, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-PORT-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, Counter64, Gauge32 + FROM SNMPv2-SMI + DisplayString, TruthValue, MacAddress, DateAndTime + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + acdMibs + FROM ACCEDIAN-SMI; + +acdPort MODULE-IDENTITY + + LAST-UPDATED "201609230100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Port statistics for this Accedian Networks device." + + REVISION "201609230100Z" -- 23 September 2016 + DESCRIPTION + "Add acdPortTxHistStatsIndex and acdPortTxHistStatsSampleIndex + to acdPortTxHistStatsGroup. + Add acdPortRxHistStatsIndex and acdPortRxHistStatsSampleIndex + to acdPortRxHistStatsGroup." + + REVISION "201605260100Z" -- 26 May 2016 + DESCRIPTION + "Set access level to read-only for acdPortTxHistStatsIndex, + acdPortTxHistStatsSampleIndex, acdPortRxHistStatsIndex, + acdPortRxHistStatsSampleIndex." + + REVISION "201603150100Z" -- 15 March 2016 + DESCRIPTION + "Added acdPortConfigLaserMode to acdPortConfigTable." + + REVISION "201411130100Z" -- 13 November 2014 + DESCRIPTION + "Added acdPortConfigForceTxOn to acdPortConfigTable." + + REVISION "201406230100Z" -- 23 June 2014 + DESCRIPTION + "Added support for history tables." + + REVISION "201110100100Z" -- 10 October 2011 + DESCRIPTION + "Add acdPortConfigTableLastChangeTid." + + REVISION "201010010100Z" -- 1 October 2010 + DESCRIPTION + "..." + + REVISION "200805010100Z" -- 1 May 2008 + DESCRIPTION + "Initial version of MIB module ACD-PORT-MIB." + + ::= { acdMibs 9 } + +acdPortMIBObjects OBJECT IDENTIFIER ::= { acdPort 1 } +acdPortConformance OBJECT IDENTIFIER ::= { acdPort 2 } + +acdPortConfig OBJECT IDENTIFIER ::= { acdPortMIBObjects 1 } +acdPortStatus OBJECT IDENTIFIER ::= { acdPortMIBObjects 2 } +acdPortStats OBJECT IDENTIFIER ::= { acdPortMIBObjects 3 } + +acdPortTableTid OBJECT IDENTIFIER ::= { acdPortMIBObjects 4 } +acdPortHistStats OBJECT IDENTIFIER ::= { acdPortMIBObjects 5 } + +------------------------------------------------------------------------------- + -- The port configuration table. + -- This table contains all port configuration parameters +------------------------------------------------------------------------------- + +acdPortConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of port configuration attributes" + ::= { acdPortConfig 1 } + +acdPortConfigEntry OBJECT-TYPE + SYNTAX AcdPortConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Port configuration." + INDEX { acdPortConfigIndex } + ::= { acdPortConfigTable 1 } + + +AcdPortConfigEntry ::= SEQUENCE { + acdPortConfigIndex Unsigned32, + acdPortConfigName DisplayString, + acdPortConfigAlias DisplayString, + acdPortConfigMacAddress MacAddress, + acdPortConfigConnectorId OBJECT IDENTIFIER, + acdPortConfigState TruthValue, + acdPortConfigMtu Unsigned32, + acdPortConfigAutoNegoState TruthValue, + acdPortConfigSpeed Unsigned32, + acdPortConfigDuplex INTEGER, + acdPortConfigMdi INTEGER, + acdPortConfigPauseMode INTEGER, + acdPortConfigAdvertisement BITS, + acdPortConfigForceTxOn TruthValue, + acdPortConfigLaserMode INTEGER +} + +acdPortConfigIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortConfig + entry." + ::= { acdPortConfigEntry 1 } + +acdPortConfigName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is a string to identify the port." + ::= { acdPortConfigEntry 2 } + +acdPortConfigAlias OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is a string to give the port an alias." + ::= { acdPortConfigEntry 3 } + +acdPortConfigMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC address of the port." + ::= { acdPortConfigEntry 4 } + +acdPortConfigConnectorId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the connector ID of the port. This object + shall identify the acdDescConnectorID object, defined in the + ACD-DESC-MIB." + ::= { acdPortConfigEntry 5 } + +acdPortConfigState OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the port." + ::= { acdPortConfigEntry 6 } + +acdPortConfigMtu OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configured MTU of the port. The value ranges from 1518 to 10240." + ::= { acdPortConfigEntry 7 } + +acdPortConfigAutoNegoState OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the auto negociation on the port." + ::= { acdPortConfigEntry 8 } + +acdPortConfigSpeed OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configured speed of the port in Mbps. The valid values are 10, 100, + 1000 and 10000." + ::= { acdPortConfigEntry 9 } + +acdPortConfigDuplex OBJECT-TYPE + SYNTAX INTEGER { + halfDuplex(1), + fullDuplex(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configured duplex mode for this port." + ::= { acdPortConfigEntry 10 } + +acdPortConfigMdi OBJECT-TYPE + SYNTAX INTEGER { + autoMdi(1), + mdi(2), + mdix(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configured MDI mode for this port." + ::= { acdPortConfigEntry 11 } + +acdPortConfigPauseMode OBJECT-TYPE + SYNTAX INTEGER { + disable(1), + local(2), + forward(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The configured pause mode for this port." + ::= { acdPortConfigEntry 12 } + +acdPortConfigAdvertisement OBJECT-TYPE + SYNTAX BITS { + bHalfDuplex10Mbps(0), -- Capable of Half Duplex 10Mbps + bFullDuplex10Mbps(1), -- Capable of Full Duplex 10Mbps + bHalfDuplex100Mbps(2), -- Capable of Half Duplex 100Mbps + bFullDuplex100Mbps(3), -- Capable of Full Duplex 100Mbps + bHalfDuplex1Gbps(4), -- Capable of Half Duplex 1Gbps + bFullDuplex1Gbps(5), -- Capable of Full Duplex 1Gbps + bPauseSymmetric(6), -- Capable of full-duplex pause + bPauseAsymmetric(7) -- Capable of asymetric pause + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A value that identifies the set of port capabilities + to advertise during auto-negociation. Each bit indicates whether + or not the specific capability is valid on the system." + + ::= { acdPortConfigEntry 13 } + +acdPortConfigForceTxOn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the Force tx on for this port." + ::= { acdPortConfigEntry 14 } + +acdPortConfigLaserMode OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set the SFP TX laser mode for this port to on or off." + ::= { acdPortConfigEntry 15 } + +------------------------------------------------------------------------------- + -- The port status table. +------------------------------------------------------------------------------- + +acdPortStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table for port status" + ::= { acdPortStatus 1 } + +acdPortStatusEntry OBJECT-TYPE + SYNTAX AcdPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Port status." + INDEX { acdPortStatusIndex } + ::= { acdPortStatusTable 1 } + + +AcdPortStatusEntry ::= SEQUENCE { + acdPortStatusIndex Unsigned32, + acdPortStatusSpeed Unsigned32, + acdPortStatusDuplex INTEGER, + acdPortStatusMdi INTEGER, + acdPortStatusTxPause TruthValue, + acdPortStatusRxPause TruthValue, + acdPortStatusLinkPartnerAbility BITS, + acdPortStatusLinkStatus TruthValue, + acdPortStatusMedia BITS, + acdPortStatusIsMonitor TruthValue, + acdPortStatusIsManagement TruthValue, + acdPortStatusIsSFP TruthValue, + acdPortStatusIsFiber TruthValue +} + +acdPortStatusIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortStatus + entry." + ::= { acdPortStatusEntry 1 } + +acdPortStatusSpeed OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current speed of the port in Mbps. The valid values are 10, 100 + 1000 and 10000." + ::= { acdPortStatusEntry 2 } + +acdPortStatusDuplex OBJECT-TYPE + SYNTAX INTEGER { + halfDuplex(1), + fullDuplex(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current duplex mode of the port." + ::= { acdPortStatusEntry 3 } + +acdPortStatusMdi OBJECT-TYPE + SYNTAX INTEGER { + mdi(1), + mdix(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current MDI mode of the port." + ::= { acdPortStatusEntry 4 } + +acdPortStatusTxPause OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether or not the port is transmitting pause frames." + ::= { acdPortStatusEntry 5 } + +acdPortStatusRxPause OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether or not the port is receiving pause frames." + ::= { acdPortStatusEntry 6 } + +acdPortStatusLinkPartnerAbility OBJECT-TYPE + SYNTAX BITS { + bHalfDuplex10Mbps(0), -- Capable of Half Duplex 10Mbps + bFullDuplex10Mbps(1), -- Capable of Full Duplex 10Mbps + bHalfDuplex100Mbps(2), -- Capable of Half Duplex 100Mbps + bFullDuplex100Mbps(3), -- Capable of Full Duplex 100Mbps + bHalfDuplex1Gbps(4), -- Capable of Half Duplex 1Gbps + bFullDuplex1Gbps(5), -- Capable of Full Duplex 1Gbps + bPauseSymmetric(6), -- Capable of full-duplex pause + bPauseAsymmetric(7) -- Capable of asymetric pause + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of port capabilities + advertised by the link partner. Each bit indicates whether + or not the specific capability is valid on the link partner + system." + + ::= { acdPortStatusEntry 7 } + +acdPortStatusLinkStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if the port link is Up or Down. + Down(FALSE), + Up(TRUE)" + ::= { acdPortStatusEntry 8 } + +acdPortStatusMedia OBJECT-TYPE + SYNTAX BITS { + bOther(0), -- other or unknown + bAUI(1), -- AUI + b10base5(2), -- 10BASE-5 + bFoirl(3), -- FOIRL + + b10base2(4), -- 10BASE-2 + b10baseT(5), -- 10BASE-T duplex mode unknown + b10baseFP(6), -- 10BASE-FP + b10baseFB(7), -- 10BASE-FB + b10baseFL(8), -- 10BASE-FL duplex mode unknown + b10broad36(9), -- 10BROAD36 + b10baseTHD(10), -- 10BASE-T half duplex mode + b10baseTFD(11), -- 10BASE-T full duplex mode (Supported) + b10baseFLHD(12), -- 10BASE-FL half duplex mode + b10baseFLFD(13), -- 10BASE-FL full duplex mode + + b100baseT4(14), -- 100BASE-T4 + b100baseTXHD(15), -- 100BASE-TX half duplex mode + b100baseTXFD(16), -- 100BASE-TX full duplex mode (Supported) + b100baseFXHD(17), -- 100BASE-FX half duplex mode + b100baseFXFD(18), -- 100BASE-FX full duplex mode (Supported) + b100baseT2HD(19), -- 100BASE-T2 half duplex mode + b100baseT2FD(20), -- 100BASE-T2 full duplex mode + + b1000baseXHD(21), -- 1000BASE-X half duplex mode + b1000baseXFD(22), -- 1000BASE-X full duplex mode (Supported) + b1000baseLXHD(23), -- 1000BASE-LX half duplex mode + b1000baseLXFD(24), -- 1000BASE-LX full duplex mode (Supported) + b1000baseSXHD(25), -- 1000BASE-SX half duplex mode + b1000baseSXFD(26), -- 1000BASE-SX full duplex mode (Supported) + b1000baseCXHD(27), -- 1000BASE-CX half duplex mode + b1000baseCXFD(28), -- 1000BASE-CX full duplex mode (Supported) + b1000baseTHD(29), -- 1000BASE-T half duplex mode + b1000baseTFD(30) -- 1000BASE-T full duplex mode (Supported - Copper SFP) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that uniquely identifies the selected media type." + ::= { acdPortStatusEntry 9 } + +acdPortStatusIsMonitor OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if the port is a monitor port. + No(FALSE), + Yes(TRUE)" + ::= { acdPortStatusEntry 10 } + +acdPortStatusIsManagement OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if the port is a management port. + No(FALSE), + Yes(TRUE)" + ::= { acdPortStatusEntry 11 } + +acdPortStatusIsSFP OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if the port has an SFP. + No(FALSE), + Yes(TRUE)" + ::= { acdPortStatusEntry 12 } + +acdPortStatusIsFiber OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if the port is connected to fiber. + No(FALSE), + Yes(TRUE)" + ::= { acdPortStatusEntry 13 } + +------------------------------------------------------------------------------- + -- The port transmit statistics table. + -- This table contains all port transmit statistics. +------------------------------------------------------------------------------- + +acdPortTxStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortTxStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of port transmit statistics" + ::= { acdPortStats 1 } + +acdPortTxStatsEntry OBJECT-TYPE + SYNTAX AcdPortTxStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port transmit statistics." + INDEX { acdPortTxStatsIndex } + ::= { acdPortTxStatsTable 1 } + + +AcdPortTxStatsEntry ::= SEQUENCE { + acdPortTxStatsIndex Unsigned32, + acdPortTxStatsSupportBits BITS, + acdPortTxStatsBytesGood Counter64, + acdPortTxStatsBytesTotal Counter64, + acdPortTxStatsUnicastPkts Counter64, + acdPortTxStatsMulticastPkts Counter64, + acdPortTxStatsBroadcastPkts Counter64, + acdPortTxStatsPauseFrames Counter64, + acdPortTxStatsTaggedFrames Counter64, + acdPortTxStatsCRCErrors Counter64, + acdPortTxStatsDeferred Counter64, + acdPortTxStatsExcessiveDeferrals Counter64, + acdPortTxStatsSingleCollisions Counter64, + acdPortTxStatsMultipleCollisions Counter64, + acdPortTxStatsExcessiveCollisions Counter64, + acdPortTxStatsLateCollisions Counter64, + acdPortTxStatsNormalCollisions Counter64, + acdPortTxStatsFifoErrors Counter64, + acdPortTxStatsPkts64 Counter64, + acdPortTxStatsPkts65to127 Counter64, + acdPortTxStatsPkts128to255 Counter64, + acdPortTxStatsPkts256to511 Counter64, + acdPortTxStatsPkts512to1023 Counter64, + acdPortTxStatsPkts1024to1518 Counter64, + acdPortTxStatsPkts1519to2047 Counter64, + acdPortTxStatsPkts2048to4095 Counter64, + acdPortTxStatsPkts4096to8191 Counter64, + acdPortTxStatsPkts8192andMore Counter64, + acdPortTxStatsPktsLarge Counter64, + acdPortTxL1Rate Gauge32, + acdPortTxL1Percent Gauge32, + acdPortTxL2Rate Gauge32 +} + +acdPortTxStatsIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortTxStats + entry." + ::= { acdPortTxStatsEntry 1 } + +acdPortTxStatsSupportBits OBJECT-TYPE + SYNTAX BITS { + bBytesGood(0), -- acdPortTxStatsBytesGood validity flag + bBytesTotal(1), -- acdPortTxStatsBytesTotal validity flag + bUnicastPkts(2), -- acdPortTxStatsUnicastPkts validity flag + bMulticastPkts(3), -- acdPortTxStatsMulticastPkts validity flag + bBroadcastPkts(4), -- acdPortTxStatsBroadcastPkts validity flag + bPauseFrames(5), -- acdPortTxStatsPauseFrames validity flag + bTaggedFrames(6), -- acdPortTxStatsTaggedFrames validity flag + bCRCErrors(7), -- acdPortTxStatsCRCErrors validity flag + bDeferred(8), -- acdPortTxStatsDeferred validity flag + bExcessiveDeferrals(9), -- acdPortTxStatsExcessiveDeferrals validity flag + bSingleCollisions(10), -- acdPortTxStatsSingleCollisions validity flag + bMultipleCollisions(11), -- acdPortTxStatsMultipleCollisions validity flag + bExcessiveCollisions(12),-- acdPortTxStatsExcessiveCollisions validity flag + bLateCollisions(13), -- acdPortTxStatsLateCollisions validity flag + bNormalCollisions(14), -- acdPortTxStatsNormalCollisions validity flag + bFifoErrors(15), -- acdPortTxStatsFifoErrors validity flag + bPkts64(16), -- acdPortTxStatsPkts64 validity flag + bPkts65to127(17), -- acdPortTxStatsPkts65to127 validity flag + bPkts128to255(18), -- acdPortTxStatsPkts128to255 validity flag + bPkts256to511(19), -- acdPortTxStatsPkts256to511 validity flag + bPkts512to1023(20), -- acdPortTxStatsPkts512to1023 validity flag + bPkts1024to1518(21), -- acdPortTxStatsPkts1024to1518 validity flag + bPkts1519to2047(22), -- acdPortTxStatsPkts1519to2047 validity flag + bPkts2048to4095(23), -- acdPortTxStatsPkts2048to4095 validity flag + bPkts4096to8191(24), -- acdPortTxStatsPkts4096to8191 validity flag + bPkts8192andMore(25), -- acdPortTxStatsPkts8192andMore validity flag + bPktsLarge(26), -- acdPortTxStatsPktsLarge validity flag + bL1Rate(27), -- acdPortTxL1Rate validity flag + bL1Percent(28), -- acdPortTxL1Percent validity flag + bL2Rate(29) -- acdPortTxL2Rate validity flag + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of TX statistics + supported by the device. Each bit indicates whether + or not the specific statistic value is valid on the + system." + + ::= { acdPortTxStatsEntry 2 } + +acdPortTxStatsBytesGood OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes transmitted by the port + in good packets. The count includes the 4 CRC bytes but does not + include the preamble or SFD bytes. A good packet is one that has been + transmitted successfully (not aborted) with a good CRC. It is assumed + that all transmit packets are properly sized, 64 bytes (after any + padding) to maxsize bytes long." + ::= { acdPortTxStatsEntry 3 } + +acdPortTxStatsBytesTotal OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes transmitted by the port + in good and bad packets. The count includes the 4 CRC bytes but does + not include the preamble or SFD bytes. Bad packets include normal + collisions, late collisions, and FIFO underflows. For collisions, + all bytes transmitted before the start of the collision as well as + the colliding and jam bytes are counted. For FIFO underflows, all + bytes actually transmitted are counted." + ::= { acdPortTxStatsEntry 4 } + +acdPortTxStatsUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good unicast packets transmitted by this port. + Good unicast packets are packets that are not dropped and have a good + CRC. Unicast packets are identified by having a 0 in the least + significant bit of the first byte of the destination address (i.e. + the first bit transmitted is a 0)." + ::= { acdPortTxStatsEntry 5 } + +acdPortTxStatsMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good multicast packets transmitted by this + port (good means not dropped and valid CRC). Multicast packets are + identified by having a 1 in the least significant bit of the first + byte of the destination address (i.e. the first bit transmitted is + a 1). Broadcast packets are not included in this count." + ::= { acdPortTxStatsEntry 6 } + +acdPortTxStatsBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good broadcast packets transmitted by this + port (good means not dropped and valid CRC). Broadcast packets are + identified by a destination address of all 1." + ::= { acdPortTxStatsEntry 7 } + +acdPortTxStatsPauseFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good flow control pause packets transmitted + by this port (good means not dropped and valid CRC). Flow control + pause packets are identified by a type of 0x8808 and an opcode field + of 0x0001." + ::= { acdPortTxStatsEntry 8 } + +acdPortTxStatsTaggedFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good VLAN packets transmitted by this port + (good means not dropped and valid CRC). VLAN packets are identified + by a type field equal to 0x8100 in the outer VLAN tag." + ::= { acdPortTxStatsEntry 9 } + +acdPortTxStatsCRCErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the transmitted packets with a bad non-appended + CRC field. This count doesn't include any packets with a bad CRC due + to a FIFO underflow." + ::= { acdPortTxStatsEntry 10 } + +acdPortTxStatsDeferred OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets that were deferred on the + first transmit attempt due to the medium being busy. Packets with + subsequent deferrals (for instance, after a collision back off) are + not counted. Whether the packet is eventually transmitted successfully + or not is irrelevant to this counter. Packets dropped due to excess + deferral that occur during the initial transmit attempt are not + counted." + ::= { acdPortTxStatsEntry 11 } + +acdPortTxStatsExcessiveDeferrals OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due to + excessive deferral. The deferral time starts at the beginning of each + transmission attempt and ends when the transmission starts (regardless + of collisions). The deferral is excessive if more than 3036 byte times + have passed without the transmission starting." + ::= { acdPortTxStatsEntry 12 } + +acdPortTxStatsSingleCollisions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of times a packet is successfully + transmitted from this port after experiencing a single collision. + This count does not include erroneous (dropped) packets." + ::= { acdPortTxStatsEntry 13 } + +acdPortTxStatsMultipleCollisions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of times a packet is successfully + transmitted from this port after experiencing multiple collisions. + This count does not include erroneous (dropped) packets and also does + not include packets dropped due to excess collisions." + ::= { acdPortTxStatsEntry 14 } + +acdPortTxStatsExcessiveCollisions OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due + to excess collisions (number of collisions equals MaxRetry+1). This + count does not include packets dropped due to FIFO underflow or + late collisions (even if the late collision is also an excessive + collision)." + ::= { acdPortTxStatsEntry 15 } + +acdPortTxStatsLateCollisions OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due + to late collisions. A late collision is a collision that occurs + after the collision window time (normally 512-bit times). This count + does not include packets dropped due to FIFO underflow. Late + collisions are not retried." + ::= { acdPortTxStatsEntry 16 } + +acdPortTxStatsNormalCollisions OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of normal collisions that have + occurred on this port during all transmission attempts. FIFO + underflows, late collisions and collisions that occur while this + port is not trying to transmit are not counted. This count does not + include collisions during half-duplex back pressure." + ::= { acdPortTxStatsEntry 17 } + +acdPortTxStatsFifoErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due to + an underflow in the transmit FIFO. When an underflow is detected, + transmission is immediately aborted after sending a known bad + (inverted) CRC sequence. The FIFO underflow error takes precedence + over all other errors if this counter is incremented, then none of + the other packet type counters are incremented." + ::= { acdPortTxStatsEntry 18 } + +acdPortTxStatsPkts64 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were exactly 64 bytes in length (excluding preamble and SFD but + including CRC)." + ::= { acdPortTxStatsEntry 19 } + +acdPortTxStatsPkts65to127 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 65 to 127 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 20 } + +acdPortTxStatsPkts128to255 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 128 to 255 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 21 } + +acdPortTxStatsPkts256to511 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 256 to 511 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 22 } + +acdPortTxStatsPkts512to1023 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 512 to 1023 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 23 } + +acdPortTxStatsPkts1024to1518 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 1024 to 1518 bytes in length (excluding preamble and SFD + but including CRC)." + ::= { acdPortTxStatsEntry 24 } + +acdPortTxStatsPkts1519to2047 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 1519 to 2047 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 25 } + +acdPortTxStatsPkts2048to4095 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 2048 to 4095 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 26 } + +acdPortTxStatsPkts4096to8191 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 4096 to 8191 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxStatsEntry 27 } + +acdPortTxStatsPkts8192andMore OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were greater than 8192 bytes in length (excluding preamble and + SFD but including CRC)." + ::= { acdPortTxStatsEntry 28 } + +acdPortTxStatsPktsLarge OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of large packets transmitted by this port. Define + the size of large packets on the Port configuration." + ::= { acdPortTxStatsEntry 29 } + +acdPortTxL1Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 rate" + ::= { acdPortTxStatsEntry 30 } + +acdPortTxL1Percent OBJECT-TYPE + SYNTAX Gauge32 + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 bandwidth utilization" + ::= { acdPortTxStatsEntry 31 } + +acdPortTxL2Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 2 rate" + ::= { acdPortTxStatsEntry 32 } + +------------------------------------------------------------------------------- + -- The port receive statistics table. + -- This table contains all port receive statistics. +------------------------------------------------------------------------------- + +acdPortRxStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortRxStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of port receive statistics" + ::= { acdPortStats 2 } + +acdPortRxStatsEntry OBJECT-TYPE + SYNTAX AcdPortRxStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port receive statistics." + INDEX { acdPortRxStatsIndex } + ::= { acdPortRxStatsTable 1 } + + +AcdPortRxStatsEntry ::= SEQUENCE { + acdPortRxStatsIndex Unsigned32, + acdPortRxStatsSupportBits BITS, + acdPortRxStatsBytesGood Counter64, + acdPortRxStatsBytesTotal Counter64, + acdPortRxStatsShortOk Counter64, + acdPortRxStatsShortBad Counter64, + acdPortRxStatsLongOk Counter64, + acdPortRxStatsLongBad Counter64, + acdPortRxStatsUnicastPkts Counter64, + acdPortRxStatsMulticastPkts Counter64, + acdPortRxStatsBroadcastPkts Counter64, + acdPortRxStatsPauseFrames Counter64, + acdPortRxStatsTaggedFrames Counter64, + acdPortRxStatsCRCErrors Counter64, + acdPortRxStatsAlignErrors Counter64, + acdPortRxStatsRuntFrames Counter64, + acdPortRxStatsLengthErrors Counter64, + acdPortRxStatsFalseCRS Counter64, + acdPortRxStatsPhyErrors Counter64, + acdPortRxStatsFifoErrors Counter64, + acdPortRxStatsIgnored Counter64, + acdPortRxStatsBadOpcode Counter64, + acdPortRxStatsPkts64 Counter64, + acdPortRxStatsPkts65to127 Counter64, + acdPortRxStatsPkts128to255 Counter64, + acdPortRxStatsPkts256to511 Counter64, + acdPortRxStatsPkts512to1023 Counter64, + acdPortRxStatsPkts1024to1518 Counter64, + acdPortRxStatsPkts1519to2047 Counter64, + acdPortRxStatsPkts2048to4095 Counter64, + acdPortRxStatsPkts4096to8191 Counter64, + acdPortRxStatsPkts8192andMore Counter64, + acdPortRxStatsPktsLarge Counter64, + acdPortRxL1Rate Gauge32, + acdPortRxL1Percent Gauge32, + acdPortRxL2Rate Gauge32, + acdPortRxStatsSupportBitsExt BITS +} + +acdPortRxStatsIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortRxStats + entry." + ::= { acdPortRxStatsEntry 1 } + +acdPortRxStatsSupportBits OBJECT-TYPE + SYNTAX BITS { + bBytesGood(0), -- acdPortRxStatsBytesGood validity flag + bBytesTotal(1), -- acdPortRxStatsBytesTotal validity flag + bRxStatsShortOk(2), -- acdPortRxStatsShortOkPkts validity flag + bRxStatsShortBad(3), -- acdPortRxStatsShortBadPkts validity flag + bRxStatsLongOk(4), -- acdPortRxStatsLongOkPkts validity flag + bRxStatsLongBad(5), -- acdPortRxStatsLongBadPkts validity flag + bUnicastPkts(6), -- acdPortRxStatsUnicastPkts validity flag + bMulticastPkts(7), -- acdPortRxStatsMulticastPkts validity flag + bBroadcastPkts(8), -- acdPortRxStatsBroadcastPkts validity flag + bPauseFrames(9), -- acdPortRxStatsPauseFrames validity flag + bTaggedFrames(10), -- acdPortRxStatsTaggedFrames validity flag + bCRCErrors(11), -- acdPortRxStatsCRCErrors validity flag + bAlignErrors(12), -- acdPortRxStatsAlignErrors validity flag + bRuntFrames(13), -- acdPortRxStatsRuntFrames validity flag + bLengthErrors(14), -- acdPortRxStatsLengthErrors validity flag + bFalseCRS(15), -- acdPortRxStatsFalseCRS validity flag + bPhyErrors(16), -- acdPortRxStatsPhyErrors validity flag + bFifoErrors(17), -- acdPortRxStatsFifoErrors validity flag + bIgnored(18), -- acdPortRxStatsIgnored validity flag + bBadOpcode(19), -- acdPortRxStatsBadOpCode validity flag + bPkts64(20), -- acdPortRxStatsPkts64 validity flag + bPkts65to127(21), -- acdPortRxStatsPkts65to127 validity flag + bPkts128to255(22), -- acdPortRxStatsPkts128to255 validity flag + bPkts256to511(23), -- acdPortRxStatsPkts256to511 validity flag + bPkts512to1023(24), -- acdPortRxStatsPkts512to1023 validity flag + bPkts1024to1518(25), -- acdPortRxStatsPkts1024to1518 validity flag + bPkts1519to2047(26), -- acdPortRxStatsPkts1519to2047 validity flag + bPkts2048to4095(27), -- acdPortRxStatsPkts2048to4095 validity flag + bPkts4096to8191(28), -- acdPortRxStatsPkts4096to8191 validity flag + bPkts8192andMore(29), -- acdPortRxStatsPkts8192andMore validity flag + bPktsLarge(30) -- acdPortRxStatsPktsLarge validity flag + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of RX statistics + supported by the device. Each bit indicates whether + or not the specific statistic value is valid on the + system." + + ::= { acdPortRxStatsEntry 2 } + +acdPortRxStatsBytesGood OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes received by the port in + good packets. The count includes the 4 CRC bytes but does not include + the preamble or SFD bytes. A good packet is a well-formed normally + sized packet (64 to maxsize bytes) with good CRC and no PHY or FIFO + errors." + ::= { acdPortRxStatsEntry 3 } + +acdPortRxStatsBytesTotal OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes received by the port in + good and bad packets. The count includes the 4 CRC bytes (if present) + but does not include the preamble or SFD bytes. Good packets are + described above. Bad packets include short packets (less than 64 + bytes), long packets (greater than maxsize bytes), packets with bad + CRC, packets with PHY errors, and packets with receive FIFO errors. + Bytes in bad packets resulting from a collision are counted if the + SFD is detected." + ::= { acdPortRxStatsEntry 4 } + +acdPortRxStatsShortOk OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of error-free packets received on this port that are + shorter than 64 bytes. A packet is error-free if it has a valid CRC, + no PHY errorsand no FIFO errors." + ::= { acdPortRxStatsEntry 5 } + +acdPortRxStatsShortBad OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of packets received on this port that are shorter + than 64 bytes and have a bad CRC. Packets with PHY or FIFO errors + are not counted." + ::= { acdPortRxStatsEntry 6 } + +acdPortRxStatsLongOk OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of error-free packets received on this port that + are longer than maxsize bytes. A packet is error-free if it has a + valid CRC, no PHY errors and no FIFO errors." + ::= { acdPortRxStatsEntry 7 } + +acdPortRxStatsLongBad OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of packets received on this port that are longer + than 64 bytes and have a bad CRC. Packets with PHY or FIFO errors + are not counted." + ::= { acdPortRxStatsEntry 8 } + +acdPortRxStatsUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good unicast packets received by this port. + A good unicast packet is a normally sized packet (64 to maxsize + bytes) that is received without error a good CRC, no PHY or FIFO + errors. Unicast packets are identified by having a 0 in the least + significant bit of the first byte of the destination address (i.e. + the first bit received is a 0)." + ::= { acdPortRxStatsEntry 9 } + +acdPortRxStatsMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good multicast packets received by this port. + A good multicast packet is a normally sized packet (64 to maxsize + bytes) that is received without error, a good CRC, no PHY or FIFO + errors. Multicast packets are identified by having a 1 in the least + significant bit of the first byte of the destination address (i.e. + the first bit received is a 1). Broadcast packets are not included + in this count." + ::= { acdPortRxStatsEntry 10 } + +acdPortRxStatsBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good broadcast packets received by this port. + A good broadcast packet is a normally sized packet (64 to maxsize + bytes) that is received without error, a good CRC, no PHY or FIFO + errors. Broadcast packets are identified by a destination address + of all 1's." + ::= { acdPortRxStatsEntry 11 } + +acdPortRxStatsPauseFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good flow control pause packets received by + this port (good CRC, no PHY or FIFO errors, normally sized). Flow + control pause packets are identified by a type of 0x8808, and an + opcode field of 0x0001." + ::= { acdPortRxStatsEntry 12 } + +acdPortRxStatsTaggedFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good VLAN packets receive by this port + (good CRC, no PHY or FIFO errors, normally sized). VLAN packets + are identified by a type field equal to 0x8100 in the outer VLAN tag." + ::= { acdPortRxStatsEntry 13 } + +acdPortRxStatsCRCErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of normally sized packets (64 to maxsize bytes) + received by this port with a CRC error but not a dribbling nibble + (packet is an integral number of bytes long). Packets with FIFO or + PHY errors are not counted." + ::= { acdPortRxStatsEntry 14 } + +acdPortRxStatsAlignErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of normally sized packets (64 to maxsize bytes) + received by this port with a CRC error and a dribbling nibble (packet + is not an integral number of bytes long). Packets with PHY or FIFO + errors are not counted." + ::= { acdPortRxStatsEntry 15 } + +acdPortRxStatsRuntFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of receive packets (or events) + detected by this port without SDF detection but with carrier + assertion. Packets with valid SFD but no data bytes are also + counted as runts. After detecting a runt packet, the update of + the RxRunts counter is held off until the next valid packet is + received. If multiple runt packets occur between valid packets, + the RxRunts counter is incremented only once." + ::= { acdPortRxStatsEntry 16 } + +acdPortRxStatsLengthErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of good packets received by this + port with a length field check error. A length check error occurs + when the value in the length field is within the valid range for + data length (3-1500 bytes) but does not match the actual data + length of the packet. Length field values less than 46 bytes + (which corresponds to the minimum legal packet size of 64 bytes) + are not checked due to padding." + ::= { acdPortRxStatsEntry 17 } + +acdPortRxStatsFalseCRS OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of receive packets (or events) + detected by this port with a false carrier (SSD1 not followed by + SSD2). After detecting a false carrier, update of the RxFalseCRS + counter is held off until the next valid packet is received. If + multiple false carrier events occur between valid packets, the + RxFalseCRS counter is incremented only once." + ::= { acdPortRxStatsEntry 18 } + +acdPortRxStatsPhyErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets received by this port with + RX_ER asserted during reception (while RX_DV asserted). Packets with + a FIFO error are not counted." + ::= { acdPortRxStatsEntry 19 } + +acdPortRxStatsFifoErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of receive packets dropped or aborted + due to receive FIFO overflow. The FIFO overflow error takes precedence + over all other errors - if this counter is incremented, then none of + the other packet type counters is incremented." + ::= { acdPortRxStatsEntry 20 } + +acdPortRxStatsIgnored OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of received packets that have been + ignored by this port. A packet is ignored if it violates the + programmed preamble rules or it violates the minimum data gap. The + preamble rules include long preamble enforcement (greater than 23 + nibbles) and pure preamble enforcement (only 55h bytes). The minimum + data gap is the time between packet data transfers and is measured + from immediately after the last CRC byte of the previous packet + through the SFD field of the current packet. The normal data gap + is 20 bytes long (12 bytes of IPG and 8 bytes of preamble/SFD). + The enforcement limit is set to 10 bytes (half the normal gap + length)." + ::= { acdPortRxStatsEntry 21 } + +acdPortRxStatsBadOpcode OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good control packets received by this port + (good CRC, no PHY or FIFO errors, normally sized) with an unknown + opcode. Unknown control packets are identified by a type field of + 88-08 and an opcode field not equal to 00-01." + ::= { acdPortRxStatsEntry 22 } + +acdPortRxStatsPkts64 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were exactly 64 bytes in length (excluding preamble and SFD + but including CRC)." + ::= { acdPortRxStatsEntry 23 } + +acdPortRxStatsPkts65to127 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port that + were 65 to 127 bytes in length inclusive (excluding preamble and SFD + but including CRC)." + ::= { acdPortRxStatsEntry 24 } + +acdPortRxStatsPkts128to255 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 128 to 255 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 25 } + +acdPortRxStatsPkts256to511 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 256 to 511 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 26 } + +acdPortRxStatsPkts512to1023 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 512 to 1023 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 27 } + +acdPortRxStatsPkts1024to1518 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 1024 to 1518 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 28 } + +acdPortRxStatsPkts1519to2047 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 1519 to 2047 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 29 } + +acdPortRxStatsPkts2048to4095 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 2048 to 4095 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 30 } + +acdPortRxStatsPkts4096to8191 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 4096 to 8191 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxStatsEntry 31 } + +acdPortRxStatsPkts8192andMore OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port that + were greater than 8192 bytes in length (excluding preamble and SFD + but including CRC)." + ::= { acdPortRxStatsEntry 32 } + +acdPortRxStatsPktsLarge OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of large packets received by this port. Define the + size of large packets on the Port configuration page." + ::= { acdPortRxStatsEntry 33 } + +acdPortRxL1Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 rate" + ::= { acdPortRxStatsEntry 34 } + +acdPortRxL1Percent OBJECT-TYPE + SYNTAX Gauge32 + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 bandwidth utilization" + ::= { acdPortRxStatsEntry 35 } + +acdPortRxL2Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 2 rate" + ::= { acdPortRxStatsEntry 36 } + +acdPortRxStatsSupportBitsExt OBJECT-TYPE + SYNTAX BITS { + bL1Rate(0), -- acdPortRxL1Rate validity flag + bL1Percent(1), -- acdPortRxL1Percent validity flag + bL2Rate(2) -- acdPortRxL2Rate validity flag + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of RX statistics + supported by the device. Each bit indicates whether + or not the specific statistic value is valid on the + system." + + ::= { acdPortRxStatsEntry 37 } + +------------------------------------------------------------------------------- + -- The port statistics sum table. + -- This table contains all port cumulative statistics. +------------------------------------------------------------------------------- + +acdPortStatsSumTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortStatsSumEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of port cumulative statistics" + ::= { acdPortStats 3 } + +acdPortStatsSumEntry OBJECT-TYPE + SYNTAX AcdPortStatsSumEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port cumulative statistics." + INDEX { acdPortStatsSumIndex } + ::= { acdPortStatsSumTable 1 } + + +AcdPortStatsSumEntry ::= SEQUENCE { + acdPortStatsSumIndex Unsigned32, + acdPortStatsSumName DisplayString, + acdPortStatsSumTXPkt Counter64, + acdPortStatsSumTXErr Counter64, + acdPortStatsSumRXPkt Counter64, + acdPortStatsSumRXErr Counter64 +} + +acdPortStatsSumIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortStatsSum + entry." + ::= { acdPortStatsSumEntry 1 } + +acdPortStatsSumName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a string to identify the port." + ::= { acdPortStatsSumEntry 2 } + +acdPortStatsSumTXPkt OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good transmitted by this port." + ::= { acdPortStatsSumEntry 3 } + +acdPortStatsSumTXErr OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, bad transmitted by this port." + ::= { acdPortStatsSumEntry 4 } + +acdPortStatsSumRXPkt OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good received by this port." + ::= { acdPortStatsSumEntry 5 } + +acdPortStatsSumRXErr OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, bad received by this port." + ::= { acdPortStatsSumEntry 6 } + +--------------------------------------------------------------------------- + -- Port Transaction ID Information +--------------------------------------------------------------------------- + +acdPortConfigTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdPortConfigTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdPortTableTid 1 } + +------------------------------------------------------------------------------- + -- The port transmit history statistics table. + -- This table contains all port transmit history statistics. +------------------------------------------------------------------------------- + +acdPortTxHistStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortTxHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of port transmit history statistics" + ::= { acdPortHistStats 1 } + +acdPortTxHistStatsEntry OBJECT-TYPE + SYNTAX AcdPortTxHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port transmit history statistics." + INDEX { acdPortTxHistStatsIndex, acdPortTxHistStatsSampleIndex } + ::= { acdPortTxHistStatsTable 1 } + + +AcdPortTxHistStatsEntry ::= SEQUENCE { + acdPortTxHistStatsIndex Unsigned32, + acdPortTxHistStatsSampleIndex Unsigned32, + acdPortTxHistStatsStatus INTEGER, + acdPortTxHistStatsDuration Unsigned32, + acdPortTxHistStatsIntervalEnd DateAndTime, + acdPortTxHistStatsSupportBits BITS, + acdPortTxHistStatsBytesGood Counter64, + acdPortTxHistStatsBytesTotal Counter64, + acdPortTxHistStatsUnicastPkts Counter64, + acdPortTxHistStatsMulticastPkts Counter64, + acdPortTxHistStatsBroadcastPkts Counter64, + acdPortTxHistStatsPauseFrames Counter64, + acdPortTxHistStatsTaggedFrames Counter64, + acdPortTxHistStatsCRCErrors Counter64, + acdPortTxHistStatsDeferred Counter64, + acdPortTxHistStatsExcessiveDeferrals Counter64, + acdPortTxHistStatsSingleCollisions Counter64, + acdPortTxHistStatsMultipleCollisions Counter64, + acdPortTxHistStatsExcessiveCollisions Counter64, + acdPortTxHistStatsLateCollisions Counter64, + acdPortTxHistStatsNormalCollisions Counter64, + acdPortTxHistStatsFifoErrors Counter64, + acdPortTxHistStatsPkts64 Counter64, + acdPortTxHistStatsPkts65to127 Counter64, + acdPortTxHistStatsPkts128to255 Counter64, + acdPortTxHistStatsPkts256to511 Counter64, + acdPortTxHistStatsPkts512to1023 Counter64, + acdPortTxHistStatsPkts1024to1518 Counter64, + acdPortTxHistStatsPkts1519to2047 Counter64, + acdPortTxHistStatsPkts2048to4095 Counter64, + acdPortTxHistStatsPkts4096to8191 Counter64, + acdPortTxHistStatsPkts8192andMore Counter64, + acdPortTxHistStatsPktsLarge Counter64, + acdPortTxHistStatsPackets Counter64, + acdPortTxHistStatsPktsErrors Counter64, + acdPortTxHistL1Rate Gauge32, + acdPortTxHistL1Percent Gauge32, + acdPortTxHistL2Rate Gauge32 +} + +acdPortTxHistStatsIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortTxHistStats + entry." + ::= { acdPortTxHistStatsEntry 1 } + +acdPortTxHistStatsSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PORT instance. + This index starts at 1 and increases by one as each new sample." + ::= { acdPortTxHistStatsEntry 2 } + +acdPortTxHistStatsStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this acdPortTxHistStats entry." + ::= { acdPortTxHistStatsEntry 3 } + +acdPortTxHistStatsDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdPortTxHistStatsEntry 4 } + +acdPortTxHistStatsIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdPortTxHistStatsEntry 5 } + +acdPortTxHistStatsSupportBits OBJECT-TYPE + SYNTAX BITS { + bBytesGood(0), -- acdPortTxHistStatsBytesGood validity flag + bBytesTotal(1), -- acdPortTxHistStatsBytesTotal validity flag + bUnicastPkts(2), -- acdPortTxHistStatsUnicastPkts validity flag + bMulticastPkts(3), -- acdPortTxHistStatsMulticastPkts validity flag + bBroadcastPkts(4), -- acdPortTxHistStatsBroadcastPkts validity flag + bPauseFrames(5), -- acdPortTxHistStatsPauseFrames validity flag + bTaggedFrames(6), -- acdPortTxHistStatsTaggedFrames validity flag + bCRCErrors(7), -- acdPortTxHistStatsCRCErrors validity flag + bDeferred(8), -- acdPortTxHistStatsDeferred validity flag + bExcessiveDeferrals(9), -- acdPortTxHistStatsExcessiveDeferrals validity flag + bSingleCollisions(10), -- acdPortTxHistStatsSingleCollisions validity flag + bMultipleCollisions(11), -- acdPortTxHistStatsMultipleCollisions validity flag + bExcessiveCollisions(12),-- acdPortTxHistStatsExcessiveCollisions validity flag + bLateCollisions(13), -- acdPortTxHistStatsLateCollisions validity flag + bNormalCollisions(14), -- acdPortTxHistStatsNormalCollisions validity flag + bFifoErrors(15), -- acdPortTxHistStatsFifoErrors validity flag + bPkts64(16), -- acdPortTxHistStatsPkts64 validity flag + bPkts65to127(17), -- acdPortTxHistStatsPkts65to127 validity flag + bPkts128to255(18), -- acdPortTxHistStatsPkts128to255 validity flag + bPkts256to511(19), -- acdPortTxHistStatsPkts256to511 validity flag + bPkts512to1023(20), -- acdPortTxHistStatsPkts512to1023 validity flag + bPkts1024to1518(21), -- acdPortTxHistStatsPkts1024to1518 validity flag + bPkts1519to2047(22), -- acdPortTxHistStatsPkts1519to2047 validity flag + bPkts2048to4095(23), -- acdPortTxHistStatsPkts2048to4095 validity flag + bPkts4096to8191(24), -- acdPortTxHistStatsPkts4096to8191 validity flag + bPkts8192andMore(25), -- acdPortTxHistStatsPkts8192andMore validity flag + bPktsLarge(26), -- acdPortTxHistStatsPktsLarge validity flag + bL1Rate(27), -- acdPortTxHistL1Rate validity flag + bL1Percent(28), -- acdPortTxHistL1Percent validity flag + bL2Rate(29) -- acdPortTxHistL2Rate validity flag + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of TX statistics + supported by the device. Each bit indicates whether + or not the specific statistic value is valid on the + system." + + ::= { acdPortTxHistStatsEntry 6 } + +acdPortTxHistStatsBytesGood OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes transmitted by the port + in good packets. The count includes the 4 CRC bytes but does not + include the preamble or SFD bytes. A good packet is one that has been + transmitted successfully (not aborted) with a good CRC. It is assumed + that all transmit packets are properly sized, 64 bytes (after any + padding) to maxsize bytes long." + ::= { acdPortTxHistStatsEntry 7 } + +acdPortTxHistStatsBytesTotal OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes transmitted by the port + in good and bad packets. The count includes the 4 CRC bytes but does + not include the preamble or SFD bytes. Bad packets include normal + collisions, late collisions, and FIFO underflows. For collisions, + all bytes transmitted before the start of the collision as well as + the colliding and jam bytes are counted. For FIFO underflows, all + bytes actually transmitted are counted." + ::= { acdPortTxHistStatsEntry 8 } + +acdPortTxHistStatsUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good unicast packets transmitted by this port. + Good unicast packets are packets that are not dropped and have a good + CRC. Unicast packets are identified by having a 0 in the least + significant bit of the first byte of the destination address (i.e. + the first bit transmitted is a 0)." + ::= { acdPortTxHistStatsEntry 9 } + +acdPortTxHistStatsMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good multicast packets transmitted by this + port (good means not dropped and valid CRC). Multicast packets are + identified by having a 1 in the least significant bit of the first + byte of the destination address (i.e. the first bit transmitted is + a 1). Broadcast packets are not included in this count." + ::= { acdPortTxHistStatsEntry 10 } + +acdPortTxHistStatsBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good broadcast packets transmitted by this + port (good means not dropped and valid CRC). Broadcast packets are + identified by a destination address of all 1." + ::= { acdPortTxHistStatsEntry 11 } + +acdPortTxHistStatsPauseFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good flow control pause packets transmitted + by this port (good means not dropped and valid CRC). Flow control + pause packets are identified by a type of 0x8808 and an opcode field + of 0x0001." + ::= { acdPortTxHistStatsEntry 12 } + +acdPortTxHistStatsTaggedFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good VLAN packets transmitted by this port + (good means not dropped and valid CRC). VLAN packets are identified + by a type field equal to 0x8100 in the outer VLAN tag." + ::= { acdPortTxHistStatsEntry 13 } + +acdPortTxHistStatsCRCErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the transmitted packets with a bad non-appended + CRC field. This count doesn't include any packets with a bad CRC due + to a FIFO underflow." + ::= { acdPortTxHistStatsEntry 14 } + +acdPortTxHistStatsDeferred OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets that were deferred on the + first transmit attempt due to the medium being busy. Packets with + subsequent deferrals (for instance, after a collision back off) are + not counted. Whether the packet is eventually transmitted successfully + or not is irrelevant to this counter. Packets dropped due to excess + deferral that occur during the initial transmit attempt are not + counted." + ::= { acdPortTxHistStatsEntry 15 } + +acdPortTxHistStatsExcessiveDeferrals OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due to + excessive deferral. The deferral time starts at the beginning of each + transmission attempt and ends when the transmission starts (regardless + of collisions). The deferral is excessive if more than 3036 byte times + have passed without the transmission starting." + ::= { acdPortTxHistStatsEntry 16 } + +acdPortTxHistStatsSingleCollisions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of times a packet is successfully + transmitted from this port after experiencing a single collision. + This count does not include erroneous (dropped) packets." + ::= { acdPortTxHistStatsEntry 17 } + +acdPortTxHistStatsMultipleCollisions OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of times a packet is successfully + transmitted from this port after experiencing multiple collisions. + This count does not include erroneous (dropped) packets and also does + not include packets dropped due to excess collisions." + ::= { acdPortTxHistStatsEntry 18 } + +acdPortTxHistStatsExcessiveCollisions OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due + to excess collisions (number of collisions equals MaxRetry+1). This + count does not include packets dropped due to FIFO underflow or + late collisions (even if the late collision is also an excessive + collision)." + ::= { acdPortTxHistStatsEntry 19 } + +acdPortTxHistStatsLateCollisions OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due + to late collisions. A late collision is a collision that occurs + after the collision window time (normally 512-bit times). This count + does not include packets dropped due to FIFO underflow. Late + collisions are not retried." + ::= { acdPortTxHistStatsEntry 20 } + +acdPortTxHistStatsNormalCollisions OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of normal collisions that have + occurred on this port during all transmission attempts. FIFO + underflows, late collisions and collisions that occur while this + port is not trying to transmit are not counted. This count does not + include collisions during half-duplex back pressure." + ::= { acdPortTxHistStatsEntry 21 } + +acdPortTxHistStatsFifoErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets dropped by this port due to + an underflow in the transmit FIFO. When an underflow is detected, + transmission is immediately aborted after sending a known bad + (inverted) CRC sequence. The FIFO underflow error takes precedence + over all other errors if this counter is incremented, then none of + the other packet type counters are incremented." + ::= { acdPortTxHistStatsEntry 22 } + +acdPortTxHistStatsPkts64 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were exactly 64 bytes in length (excluding preamble and SFD but + including CRC)." + ::= { acdPortTxHistStatsEntry 23 } + +acdPortTxHistStatsPkts65to127 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 65 to 127 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 24 } + +acdPortTxHistStatsPkts128to255 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 128 to 255 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 25 } + +acdPortTxHistStatsPkts256to511 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 256 to 511 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 26 } + +acdPortTxHistStatsPkts512to1023 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 512 to 1023 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 27 } + +acdPortTxHistStatsPkts1024to1518 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 1024 to 1518 bytes in length (excluding preamble and SFD + but including CRC)." + ::= { acdPortTxHistStatsEntry 28 } + +acdPortTxHistStatsPkts1519to2047 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 1519 to 2047 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 29 } + +acdPortTxHistStatsPkts2048to4095 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 2048 to 4095 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 30 } + +acdPortTxHistStatsPkts4096to8191 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were 4096 to 8191 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 31 } + +acdPortTxHistStatsPkts8192andMore OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, transmitted by this port + that were greater than 8192 bytes in length (excluding preamble and + SFD but including CRC)." + ::= { acdPortTxHistStatsEntry 32 } + +acdPortTxHistStatsPktsLarge OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of large packets transmitted by this port. Define + the size of large packets on the Port configuration." + ::= { acdPortTxHistStatsEntry 33 } + +acdPortTxHistStatsPackets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets transmitted by this port." + ::= { acdPortTxHistStatsEntry 34 } + +acdPortTxHistStatsPktsErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of error packets transmitted by this port." + ::= { acdPortTxHistStatsEntry 35 } + +acdPortTxHistL1Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 rate" + ::= { acdPortTxHistStatsEntry 36 } + +acdPortTxHistL1Percent OBJECT-TYPE + SYNTAX Gauge32 + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 bandwidth utilization" + ::= { acdPortTxHistStatsEntry 37 } + +acdPortTxHistL2Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 2 rate" + ::= { acdPortTxHistStatsEntry 38 } + +------------------------------------------------------------------------------- + -- The port receive history statistics table. + -- This table contains all port receive history statistics. +------------------------------------------------------------------------------- + +acdPortRxHistStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdPortRxHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of port receive history statistics" + ::= { acdPortHistStats 2 } + +acdPortRxHistStatsEntry OBJECT-TYPE + SYNTAX AcdPortRxHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "port receive history statistics." + INDEX { acdPortRxHistStatsIndex, acdPortRxHistStatsSampleIndex } + ::= { acdPortRxHistStatsTable 1 } + + +AcdPortRxHistStatsEntry ::= SEQUENCE { + acdPortRxHistStatsIndex Unsigned32, + acdPortRxHistStatsSampleIndex Unsigned32, + acdPortRxHistStatsStatus INTEGER, + acdPortRxHistStatsDuration Unsigned32, + acdPortRxHistStatsIntervalEnd DateAndTime, + acdPortRxHistStatsSupportBits BITS, + acdPortRxHistStatsBytesGood Counter64, + acdPortRxHistStatsBytesTotal Counter64, + acdPortRxHistStatsShortOk Counter64, + acdPortRxHistStatsShortBad Counter64, + acdPortRxHistStatsLongOk Counter64, + acdPortRxHistStatsLongBad Counter64, + acdPortRxHistStatsUnicastPkts Counter64, + acdPortRxHistStatsMulticastPkts Counter64, + acdPortRxHistStatsBroadcastPkts Counter64, + acdPortRxHistStatsPauseFrames Counter64, + acdPortRxHistStatsTaggedFrames Counter64, + acdPortRxHistStatsCRCErrors Counter64, + acdPortRxHistStatsAlignErrors Counter64, + acdPortRxHistStatsRuntFrames Counter64, + acdPortRxHistStatsLengthErrors Counter64, + acdPortRxHistStatsFalseCRS Counter64, + acdPortRxHistStatsPhyErrors Counter64, + acdPortRxHistStatsFifoErrors Counter64, + acdPortRxHistStatsIgnored Counter64, + acdPortRxHistStatsBadOpcode Counter64, + acdPortRxHistStatsPkts64 Counter64, + acdPortRxHistStatsPkts65to127 Counter64, + acdPortRxHistStatsPkts128to255 Counter64, + acdPortRxHistStatsPkts256to511 Counter64, + acdPortRxHistStatsPkts512to1023 Counter64, + acdPortRxHistStatsPkts1024to1518 Counter64, + acdPortRxHistStatsPkts1519to2047 Counter64, + acdPortRxHistStatsPkts2048to4095 Counter64, + acdPortRxHistStatsPkts4096to8191 Counter64, + acdPortRxHistStatsPkts8192andMore Counter64, + acdPortRxHistStatsPktsLarge Counter64, + acdPortRxHistStatsPackets Counter64, + acdPortRxHistStatsPktsErrors Counter64, + acdPortRxHistL1Rate Gauge32, + acdPortRxHistL1Percent Gauge32, + acdPortRxHistL2Rate Gauge32, + acdPortRxHistStatsSupportBitsExt BITS +} + +acdPortRxHistStatsIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object uniquely identifies this acdPortRxHistStats + entry." + ::= { acdPortRxHistStatsEntry 1 } + +acdPortRxHistStatsSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same PORT instance. + This index starts at 1 and increases by one as each new sample." + ::= { acdPortRxHistStatsEntry 2 } + +acdPortRxHistStatsStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this acdPortTxHistStats entry." + ::= { acdPortRxHistStatsEntry 3 } + +acdPortRxHistStatsDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdPortRxHistStatsEntry 4 } + +acdPortRxHistStatsIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdPortRxHistStatsEntry 5 } + +acdPortRxHistStatsSupportBits OBJECT-TYPE + SYNTAX BITS { + bBytesGood(0), -- acdPortRxHistStatsBytesGood validity flag + bBytesTotal(1), -- acdPortRxHistStatsBytesTotal validity flag + bRxStatsShortOk(2), -- acdPortRxHistStatsShortOkPkts validity flag + bRxStatsShortBad(3), -- acdPortRxHistStatsShortBadPkts validity flag + bRxStatsLongOk(4), -- acdPortRxHistStatsLongOkPkts validity flag + bRxStatsLongBad(5), -- acdPortRxHistStatsLongBadPkts validity flag + bUnicastPkts(6), -- acdPortRxHistStatsUnicastPkts validity flag + bMulticastPkts(7), -- acdPortRxHistStatsMulticastPkts validity flag + bBroadcastPkts(8), -- acdPortRxHistStatsBroadcastPkts validity flag + bPauseFrames(9), -- acdPortRxHistStatsPauseFrames validity flag + bTaggedFrames(10), -- acdPortRxHistStatsTaggedFrames validity flag + bCRCErrors(11), -- acdPortRxHistStatsCRCErrors validity flag + bAlignErrors(12), -- acdPortRxHistStatsAlignErrors validity flag + bRuntFrames(13), -- acdPortRxHistStatsRuntFrames validity flag + bLengthErrors(14), -- acdPortRxHistStatsLengthErrors validity flag + bFalseCRS(15), -- acdPortRxHistStatsFalseCRS validity flag + bPhyErrors(16), -- acdPortRxHistStatsPhyErrors validity flag + bFifoErrors(17), -- acdPortRxHistStatsFifoErrors validity flag + bIgnored(18), -- acdPortRxHistStatsIgnored validity flag + bBadOpcode(19), -- acdPortRxHistStatsBadOpCode validity flag + bPkts64(20), -- acdPortRxHistStatsPkts64 validity flag + bPkts65to127(21), -- acdPortRxHistStatsPkts65to127 validity flag + bPkts128to255(22), -- acdPortRxHistStatsPkts128to255 validity flag + bPkts256to511(23), -- acdPortRxHistStatsPkts256to511 validity flag + bPkts512to1023(24), -- acdPortRxHistStatsPkts512to1023 validity flag + bPkts1024to1518(25), -- acdPortRxHistStatsPkts1024to1518 validity flag + bPkts1519to2047(26), -- acdPortRxHistStatsPkts1519to2047 validity flag + bPkts2048to4095(27), -- acdPortRxHistStatsPkts2048to4095 validity flag + bPkts4096to8191(28), -- acdPortRxHistStatsPkts4096to8191 validity flag + bPkts8192andMore(29), -- acdPortRxHistStatsPkts8192andMore validity flag + bPktsLarge(30) -- acdPortRxHistStatsPktsLarge validity flag + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of RX statistics + supported by the device. Each bit indicates whether + or not the specific statistic value is valid on the + system." + + ::= { acdPortRxHistStatsEntry 6 } + +acdPortRxHistStatsBytesGood OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes received by the port in + good packets. The count includes the 4 CRC bytes but does not include + the preamble or SFD bytes. A good packet is a well-formed normally + sized packet (64 to maxsize bytes) with good CRC and no PHY or FIFO + errors." + ::= { acdPortRxHistStatsEntry 7 } + +acdPortRxHistStatsBytesTotal OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the total number of bytes received by the port in + good and bad packets. The count includes the 4 CRC bytes (if present) + but does not include the preamble or SFD bytes. Good packets are + described above. Bad packets include short packets (less than 64 + bytes), long packets (greater than maxsize bytes), packets with bad + CRC, packets with PHY errors, and packets with receive FIFO errors. + Bytes in bad packets resulting from a collision are counted if the + SFD is detected." + ::= { acdPortRxHistStatsEntry 8 } + +acdPortRxHistStatsShortOk OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of error-free packets received on this port that are + shorter than 64 bytes. A packet is error-free if it has a valid CRC, + no PHY errorsand no FIFO errors." + ::= { acdPortRxHistStatsEntry 9 } + +acdPortRxHistStatsShortBad OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of packets received on this port that are shorter + than 64 bytes and have a bad CRC. Packets with PHY or FIFO errors + are not counted." + ::= { acdPortRxHistStatsEntry 10 } + +acdPortRxHistStatsLongOk OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of error-free packets received on this port that + are longer than maxsize bytes. A packet is error-free if it has a + valid CRC, no PHY errors and no FIFO errors." + ::= { acdPortRxHistStatsEntry 11 } + +acdPortRxHistStatsLongBad OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of packets received on this port that are longer + than 64 bytes and have a bad CRC. Packets with PHY or FIFO errors + are not counted." + ::= { acdPortRxHistStatsEntry 12 } + +acdPortRxHistStatsUnicastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good unicast packets received by this port. + A good unicast packet is a normally sized packet (64 to maxsize + bytes) that is received without error a good CRC, no PHY or FIFO + errors. Unicast packets are identified by having a 0 in the least + significant bit of the first byte of the destination address (i.e. + the first bit received is a 0)." + ::= { acdPortRxHistStatsEntry 13 } + +acdPortRxHistStatsMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good multicast packets received by this port. + A good multicast packet is a normally sized packet (64 to maxsize + bytes) that is received without error, a good CRC, no PHY or FIFO + errors. Multicast packets are identified by having a 1 in the least + significant bit of the first byte of the destination address (i.e. + the first bit received is a 1). Broadcast packets are not included + in this count." + ::= { acdPortRxHistStatsEntry 14 } + +acdPortRxHistStatsBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good broadcast packets received by this port. + A good broadcast packet is a normally sized packet (64 to maxsize + bytes) that is received without error, a good CRC, no PHY or FIFO + errors. Broadcast packets are identified by a destination address + of all 1's." + ::= { acdPortRxHistStatsEntry 15 } + +acdPortRxHistStatsPauseFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good flow control pause packets received by + this port (good CRC, no PHY or FIFO errors, normally sized). Flow + control pause packets are identified by a type of 0x8808, and an + opcode field of 0x0001." + ::= { acdPortRxHistStatsEntry 16 } + +acdPortRxHistStatsTaggedFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good VLAN packets receive by this port + (good CRC, no PHY or FIFO errors, normally sized). VLAN packets + are identified by a type field equal to 0x8100 in the outer VLAN tag." + ::= { acdPortRxHistStatsEntry 17 } + +acdPortRxHistStatsCRCErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of normally sized packets (64 to maxsize bytes) + received by this port with a CRC error but not a dribbling nibble + (packet is an integral number of bytes long). Packets with FIFO or + PHY errors are not counted." + ::= { acdPortRxHistStatsEntry 18 } + +acdPortRxHistStatsAlignErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of normally sized packets (64 to maxsize bytes) + received by this port with a CRC error and a dribbling nibble (packet + is not an integral number of bytes long). Packets with PHY or FIFO + errors are not counted." + ::= { acdPortRxHistStatsEntry 19 } + +acdPortRxHistStatsRuntFrames OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of receive packets (or events) + detected by this port without SDF detection but with carrier + assertion. Packets with valid SFD but no data bytes are also + counted as runts. After detecting a runt packet, the update of + the RxRunts counter is held off until the next valid packet is + received. If multiple runt packets occur between valid packets, + the RxRunts counter is incremented only once." + ::= { acdPortRxHistStatsEntry 20 } + +acdPortRxHistStatsLengthErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of good packets received by this + port with a length field check error. A length check error occurs + when the value in the length field is within the valid range for + data length (3-1500 bytes) but does not match the actual data + length of the packet. Length field values less than 46 bytes + (which corresponds to the minimum legal packet size of 64 bytes) + are not checked due to padding." + ::= { acdPortRxHistStatsEntry 21 } + +acdPortRxHistStatsFalseCRS OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of receive packets (or events) + detected by this port with a false carrier (SSD1 not followed by + SSD2). After detecting a false carrier, update of the RxFalseCRS + counter is held off until the next valid packet is received. If + multiple false carrier events occur between valid packets, the + RxFalseCRS counter is incremented only once." + ::= { acdPortRxHistStatsEntry 22 } + +acdPortRxHistStatsPhyErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of packets received by this port with + RX_ER asserted during reception (while RX_DV asserted). Packets with + a FIFO error are not counted." + ::= { acdPortRxHistStatsEntry 23 } + +acdPortRxHistStatsFifoErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of receive packets dropped or aborted + due to receive FIFO overflow. The FIFO overflow error takes precedence + over all other errors - if this counter is incremented, then none of + the other packet type counters is incremented." + ::= { acdPortRxHistStatsEntry 24 } + +acdPortRxHistStatsIgnored OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the number of received packets that have been + ignored by this port. A packet is ignored if it violates the + programmed preamble rules or it violates the minimum data gap. The + preamble rules include long preamble enforcement (greater than 23 + nibbles) and pure preamble enforcement (only 55h bytes). The minimum + data gap is the time between packet data transfers and is measured + from immediately after the last CRC byte of the previous packet + through the SFD field of the current packet. The normal data gap + is 20 bytes long (12 bytes of IPG and 8 bytes of preamble/SFD). + The enforcement limit is set to 10 bytes (half the normal gap + length)." + ::= { acdPortRxHistStatsEntry 25 } + +acdPortRxHistStatsBadOpcode OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is a count of the good control packets received by this port + (good CRC, no PHY or FIFO errors, normally sized) with an unknown + opcode. Unknown control packets are identified by a type field of + 88-08 and an opcode field not equal to 00-01." + ::= { acdPortRxHistStatsEntry 26 } + +acdPortRxHistStatsPkts64 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were exactly 64 bytes in length (excluding preamble and SFD + but including CRC)." + ::= { acdPortRxHistStatsEntry 27 } + +acdPortRxHistStatsPkts65to127 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port that + were 65 to 127 bytes in length inclusive (excluding preamble and SFD + but including CRC)." + ::= { acdPortRxHistStatsEntry 28 } + +acdPortRxHistStatsPkts128to255 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 128 to 255 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 29 } + +acdPortRxHistStatsPkts256to511 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 256 to 511 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 30 } + +acdPortRxHistStatsPkts512to1023 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 512 to 1023 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 31 } + +acdPortRxHistStatsPkts1024to1518 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 1024 to 1518 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 32 } + +acdPortRxHistStatsPkts1519to2047 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 1519 to 2047 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 33 } + +acdPortRxHistStatsPkts2048to4095 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 2048 to 4095 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 34 } + +acdPortRxHistStatsPkts4096to8191 OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port + that were 4096 to 8191 bytes in length inclusive (excluding preamble + and SFD but including CRC)." + ::= { acdPortRxHistStatsEntry 35 } + +acdPortRxHistStatsPkts8192andMore OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets, good or bad, received by this port that + were greater than 8192 bytes in length (excluding preamble and SFD + but including CRC)." + ::= { acdPortRxHistStatsEntry 36 } + +acdPortRxHistStatsPktsLarge OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of large packets received by this port. Define the + size of large packets on the Port configuration page." + ::= { acdPortRxHistStatsEntry 37 } + +acdPortRxHistStatsPackets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this port." + ::= { acdPortRxHistStatsEntry 38 } + +acdPortRxHistStatsPktsErrors OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors packets received by this port." + ::= { acdPortRxHistStatsEntry 39 } + +acdPortRxHistL1Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 rate" + ::= { acdPortRxHistStatsEntry 40 } + +acdPortRxHistL1Percent OBJECT-TYPE + SYNTAX Gauge32 + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 1 bandwidth utilization" + ::= { acdPortRxHistStatsEntry 41 } + +acdPortRxHistL2Rate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Layer 2 rate" + ::= { acdPortRxHistStatsEntry 42 } + +acdPortRxHistStatsSupportBitsExt OBJECT-TYPE + SYNTAX BITS { + bL1Rate(0), -- acdPortRxHistL1Rate validity flag + bL1Percent(1), -- acdPortRxHistL1Percent validity flag + bL2Rate(2) -- acdPortRxHistL2Rate validity flag + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the set of RX statistics + supported by the device. Each bit indicates whether + or not the specific statistic value is valid on the + system." + + ::= { acdPortRxHistStatsEntry 43 } + +--------------------------------------------------------------------------- + -- ACD-PORT-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdPortCompliances OBJECT IDENTIFIER ::= { acdPortConformance 1 } +acdPortGroups OBJECT IDENTIFIER ::= { acdPortConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdPortConfigGroup OBJECT-GROUP + OBJECTS { + acdPortConfigName, + acdPortConfigAlias, + acdPortConfigMacAddress, + acdPortConfigConnectorId, + acdPortConfigState, + acdPortConfigMtu, + acdPortConfigAutoNegoState, + acdPortConfigSpeed, + acdPortConfigDuplex, + acdPortConfigMdi, + acdPortConfigPauseMode, + acdPortConfigAdvertisement, + acdPortConfigForceTxOn, + acdPortConfigLaserMode + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 1 } + +acdPortStatusGroup OBJECT-GROUP + OBJECTS { + acdPortStatusSpeed, + acdPortStatusDuplex, + acdPortStatusMdi, + acdPortStatusTxPause, + acdPortStatusRxPause, + acdPortStatusLinkPartnerAbility, + acdPortStatusLinkStatus, + acdPortStatusMedia, + acdPortStatusIsMonitor, + acdPortStatusIsManagement, + acdPortStatusIsSFP, + acdPortStatusIsFiber + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 2 } + +acdPortTxStatsGroup OBJECT-GROUP + OBJECTS { + acdPortTxStatsSupportBits, + acdPortTxStatsBytesGood, + acdPortTxStatsBytesTotal, + acdPortTxStatsUnicastPkts, + acdPortTxStatsMulticastPkts, + acdPortTxStatsBroadcastPkts, + acdPortTxStatsPauseFrames, + acdPortTxStatsTaggedFrames, + acdPortTxStatsCRCErrors, + acdPortTxStatsDeferred, + acdPortTxStatsExcessiveDeferrals, + acdPortTxStatsSingleCollisions, + acdPortTxStatsMultipleCollisions, + acdPortTxStatsExcessiveCollisions, + acdPortTxStatsLateCollisions, + acdPortTxStatsNormalCollisions, + acdPortTxStatsFifoErrors, + acdPortTxStatsPkts64, + acdPortTxStatsPkts65to127, + acdPortTxStatsPkts128to255, + acdPortTxStatsPkts256to511, + acdPortTxStatsPkts512to1023, + acdPortTxStatsPkts1024to1518, + acdPortTxStatsPkts1519to2047, + acdPortTxStatsPkts2048to4095, + acdPortTxStatsPkts4096to8191, + acdPortTxStatsPkts8192andMore, + acdPortTxStatsPktsLarge, + acdPortTxL1Rate, + acdPortTxL1Percent, + acdPortTxL2Rate + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 3 } + +acdPortRxStatsGroup OBJECT-GROUP + OBJECTS { + acdPortRxStatsSupportBits, + acdPortRxStatsBytesGood, + acdPortRxStatsBytesTotal, + acdPortRxStatsShortOk, + acdPortRxStatsShortBad, + acdPortRxStatsLongOk, + acdPortRxStatsLongBad, + acdPortRxStatsUnicastPkts, + acdPortRxStatsMulticastPkts, + acdPortRxStatsBroadcastPkts, + acdPortRxStatsPauseFrames, + acdPortRxStatsTaggedFrames, + acdPortRxStatsCRCErrors, + acdPortRxStatsAlignErrors, + acdPortRxStatsRuntFrames, + acdPortRxStatsLengthErrors, + acdPortRxStatsFalseCRS, + acdPortRxStatsPhyErrors, + acdPortRxStatsFifoErrors, + acdPortRxStatsIgnored, + acdPortRxStatsBadOpcode, + acdPortRxStatsPkts64, + acdPortRxStatsPkts65to127, + acdPortRxStatsPkts128to255, + acdPortRxStatsPkts256to511, + acdPortRxStatsPkts512to1023, + acdPortRxStatsPkts1024to1518, + acdPortRxStatsPkts1519to2047, + acdPortRxStatsPkts2048to4095, + acdPortRxStatsPkts4096to8191, + acdPortRxStatsPkts8192andMore, + acdPortRxStatsPktsLarge, + acdPortRxL1Rate, + acdPortRxL1Percent, + acdPortRxL2Rate, + acdPortRxStatsSupportBitsExt + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 4 } + +acdPortTidGroup OBJECT-GROUP + OBJECTS { + acdPortConfigTableLastChangeTid + } + STATUS current + DESCRIPTION + "List of scalars to monitior changes in tables." + ::= { acdPortGroups 5 } + +acdPortTxHistStatsGroup OBJECT-GROUP + OBJECTS { + acdPortTxHistStatsIndex, + acdPortTxHistStatsSampleIndex, + acdPortTxHistStatsStatus, + acdPortTxHistStatsDuration, + acdPortTxHistStatsIntervalEnd, + acdPortTxHistStatsSupportBits, + acdPortTxHistStatsBytesGood, + acdPortTxHistStatsBytesTotal, + acdPortTxHistStatsUnicastPkts, + acdPortTxHistStatsMulticastPkts, + acdPortTxHistStatsBroadcastPkts, + acdPortTxHistStatsPauseFrames, + acdPortTxHistStatsTaggedFrames, + acdPortTxHistStatsCRCErrors, + acdPortTxHistStatsDeferred, + acdPortTxHistStatsExcessiveDeferrals, + acdPortTxHistStatsSingleCollisions, + acdPortTxHistStatsMultipleCollisions, + acdPortTxHistStatsExcessiveCollisions, + acdPortTxHistStatsLateCollisions, + acdPortTxHistStatsNormalCollisions, + acdPortTxHistStatsFifoErrors, + acdPortTxHistStatsPkts64, + acdPortTxHistStatsPkts65to127, + acdPortTxHistStatsPkts128to255, + acdPortTxHistStatsPkts256to511, + acdPortTxHistStatsPkts512to1023, + acdPortTxHistStatsPkts1024to1518, + acdPortTxHistStatsPkts1519to2047, + acdPortTxHistStatsPkts2048to4095, + acdPortTxHistStatsPkts4096to8191, + acdPortTxHistStatsPkts8192andMore, + acdPortTxHistStatsPktsLarge, + acdPortTxHistStatsPackets, + acdPortTxHistStatsPktsErrors, + acdPortTxHistL1Rate, + acdPortTxHistL1Percent, + acdPortTxHistL2Rate + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 6 } + +acdPortRxHistStatsGroup OBJECT-GROUP + OBJECTS { + acdPortRxHistStatsIndex, + acdPortRxHistStatsSampleIndex, + acdPortRxHistStatsStatus, + acdPortRxHistStatsDuration, + acdPortRxHistStatsIntervalEnd, + acdPortRxHistStatsSupportBits, + acdPortRxHistStatsBytesGood, + acdPortRxHistStatsBytesTotal, + acdPortRxHistStatsShortOk, + acdPortRxHistStatsShortBad, + acdPortRxHistStatsLongOk, + acdPortRxHistStatsLongBad, + acdPortRxHistStatsUnicastPkts, + acdPortRxHistStatsMulticastPkts, + acdPortRxHistStatsBroadcastPkts, + acdPortRxHistStatsPauseFrames, + acdPortRxHistStatsTaggedFrames, + acdPortRxHistStatsCRCErrors, + acdPortRxHistStatsAlignErrors, + acdPortRxHistStatsRuntFrames, + acdPortRxHistStatsLengthErrors, + acdPortRxHistStatsFalseCRS, + acdPortRxHistStatsPhyErrors, + acdPortRxHistStatsFifoErrors, + acdPortRxHistStatsIgnored, + acdPortRxHistStatsBadOpcode, + acdPortRxHistStatsPkts64, + acdPortRxHistStatsPkts65to127, + acdPortRxHistStatsPkts128to255, + acdPortRxHistStatsPkts256to511, + acdPortRxHistStatsPkts512to1023, + acdPortRxHistStatsPkts1024to1518, + acdPortRxHistStatsPkts1519to2047, + acdPortRxHistStatsPkts2048to4095, + acdPortRxHistStatsPkts4096to8191, + acdPortRxHistStatsPkts8192andMore, + acdPortRxHistStatsPktsLarge, + acdPortRxHistStatsPackets, + acdPortRxHistStatsPktsErrors, + acdPortRxHistL1Rate, + acdPortRxHistL1Percent, + acdPortRxHistL2Rate, + acdPortRxHistStatsSupportBitsExt + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 7 } + +acdPortStatsSumGroup OBJECT-GROUP + OBJECTS { + acdPortStatsSumName, + acdPortStatsSumTXPkt, + acdPortStatsSumTXErr, + acdPortStatsSumRXPkt, + acdPortStatsSumRXErr + } + STATUS current + DESCRIPTION + "." + ::= { acdPortGroups 8 } + +acdPortCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-PORT-MIB module." + MODULE + MANDATORY-GROUPS { + acdPortConfigGroup, + acdPortStatusGroup, + acdPortTxStatsGroup, + acdPortRxStatsGroup, + acdPortTidGroup, + acdPortTxHistStatsGroup, + acdPortRxHistStatsGroup, + acdPortStatsSumGroup + } + + ::= { acdPortCompliances 1 } + +END diff --git a/mibs/accedian/ACD-REGULATOR-MIB b/mibs/accedian/ACD-REGULATOR-MIB new file mode 100644 index 0000000..07ac311 --- /dev/null +++ b/mibs/accedian/ACD-REGULATOR-MIB @@ -0,0 +1,1131 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2016, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-REGULATOR-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Gauge32, Counter32, Counter64, Unsigned32 + FROM SNMPv2-SMI + DisplayString, TruthValue, DateAndTime, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + acdMibs + FROM ACCEDIAN-SMI; + +acdRegulator MODULE-IDENTITY + + LAST-UPDATED "201702210100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Regulators database for this Accedian Networks device." + + REVISION "201702210100Z" -- 21 February 2017 + DESCRIPTION + "Change the Unit of acdRegulatorCbs and acdRegulatorEbs + from Kbytes to KiB." + + REVISION "201609230100Z" -- 23 September 2016 + DESCRIPTION + "Add acdRegulatorHistStatsID and acdRegulatorHistStatsSampleIndex + to acdRegulatorHistStatsGroup." + + REVISION "201605260100Z" -- 26 May 2016 + DESCRIPTION + "Set access level to read-only for acdRegulatorHistStatsID, + acdRegulatorHistStatsSampleIndex." + + REVISION "201406090000Z" -- 09 Jun 2014 + DESCRIPTION + "Added Green, Yellow, Red Stats to acdRegulatorStatsEntry." + + REVISION "201312010000Z" -- 01.Dec 2013 + DESCRIPTION + "Added CIR-MAX, EIR-MAX to AcdRegulatorEntry." + + REVISION "201201100100Z" -- 10 Jan 2012 + DESCRIPTION + "Add acdRegulatorWorkingRate entry in acdRegulatorTable." + REVISION "201110100100Z" -- 10 October 2011 + DESCRIPTION + "Add acdRegulatorTableLastChangeTid." + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Add compliance section." + + REVISION "200805010100Z" -- 1 May 2008 + DESCRIPTION + "Add RowStatus in acdRegulatorTable table." + + REVISION "200802060100Z" -- 6 Feb 2008 + DESCRIPTION + "Add support for history table." + + REVISION "200703280100Z" -- 28 March 2007 + DESCRIPTION + "Initial version of MIB module ACD-REGULATOR-MIB." + + ::= { acdMibs 6 } + +acdRegulatorNotifications OBJECT IDENTIFIER ::= { acdRegulator 4 } +acdRegulatorMIBObjects OBJECT IDENTIFIER ::= { acdRegulator 5 } +acdRegulatorConformance OBJECT IDENTIFIER ::= { acdRegulator 6 } + +acdRegulatorTableTid OBJECT IDENTIFIER ::= { acdRegulatorMIBObjects 1 } + +----------------------------------------------------------------------- + -- The Regulators table + -- This table contains all Regulators. +--------------------------------------------------------------------------- + +acdRegulatorTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdRegulatorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all Regulators" + ::= { acdRegulator 1 } + +acdRegulatorEntry OBJECT-TYPE + SYNTAX AcdRegulatorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Regulator is a two rates three colors engine to regulate a + given traffic." + INDEX { acdRegulatorID } + ::= { acdRegulatorTable 1 } + + +AcdRegulatorEntry ::= SEQUENCE { + acdRegulatorID Unsigned32, + acdRegulatorName DisplayString, + acdRegulatorCir Unsigned32, + acdRegulatorCbs Unsigned32, + acdRegulatorEir Unsigned32, + acdRegulatorEbs Unsigned32, + acdRegulatorIsBlind TruthValue, + acdRegulatorIsCouple TruthValue, + acdRegulatorRowStatus RowStatus, + acdRegulatorWorkingRate INTEGER, + acdRegulatorCirMax Unsigned32, + acdRegulatorEirMax Unsigned32 +} + +acdRegulatorID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each regulator entry. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdRegulatorEntry 1 } + +acdRegulatorName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to identify the regulator." + ::= { acdRegulatorEntry 2 } + +acdRegulatorCir OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The committed information rate." + DEFVAL { 20000 } + ::= { acdRegulatorEntry 3 } + +acdRegulatorCbs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "KiB" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The committed burst size." + DEFVAL { 8 } + ::= { acdRegulatorEntry 4 } + +acdRegulatorEir OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The excess information rate." + DEFVAL { 1000 } + ::= { acdRegulatorEntry 5 } + +acdRegulatorEbs OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "KiB" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The excess burst size." + DEFVAL { 8 } + ::= { acdRegulatorEntry 6 } + +acdRegulatorIsBlind OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the pre-marking color processing." + DEFVAL { false } + ::= { acdRegulatorEntry 7 } + +acdRegulatorIsCouple OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Enable or disable the coupling flag in this regulator." + DEFVAL { false } + ::= { acdRegulatorEntry 8 } + +acdRegulatorRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new regulator you shall provide the a unique name for + an empty row with the RowStatus set to Create and Go. To delete the + row you need to set the RowStatus to destroy." + ::= { acdRegulatorEntry 9 } + +acdRegulatorWorkingRate OBJECT-TYPE + SYNTAX INTEGER { + layer1(1), + layer2(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The layer at which the regulator work. The layer-1 Ethernet Frame + contains all Ethernet Frame fields plus the Inter-Frame Gap (IPG), + Preamble and Start-Frame Delimiter (SFD). The layer-2 Ethernet + Frame contains all Ethernet Frame fields." + DEFVAL { layer1 } + ::= { acdRegulatorEntry 10 } + +acdRegulatorCirMax OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum committed information rate." + DEFVAL { 20000 } + ::= { acdRegulatorEntry 11 } + +acdRegulatorEirMax OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "Kbps" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum excess information rate." + DEFVAL { 1000 } + ::= { acdRegulatorEntry 12 } + +--------------------------------------------------------------------------- + -- The Regulator Counters table + -- This table contains all counters associated with each regulator. +--------------------------------------------------------------------------- + +acdRegulatorStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdRegulatorStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all counters associated with each regulator." + ::= { acdRegulator 2 } + +acdRegulatorStatsEntry OBJECT-TYPE + SYNTAX AcdRegulatorStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Entry consists of statitics related to a regulator entry." + INDEX { acdRegulatorStatsID } + ::= { acdRegulatorStatsTable 1 } + + +AcdRegulatorStatsEntry ::= SEQUENCE { + acdRegulatorStatsID Unsigned32, + acdRegulatorStatsAcceptOctets Counter32, + acdRegulatorStatsAcceptOverflowOctets Counter32, + acdRegulatorStatsAcceptHCOctets Counter64, + acdRegulatorStatsAcceptPkts Counter32, + acdRegulatorStatsAcceptOverflowPkts Counter32, + acdRegulatorStatsAcceptHCPkts Counter64, + acdRegulatorStatsAcceptRate Gauge32, + acdRegulatorStatsDropOctets Counter32, + acdRegulatorStatsDropOverflowOctets Counter32, + acdRegulatorStatsDropHCOctets Counter64, + acdRegulatorStatsDropPkts Counter32, + acdRegulatorStatsDropOverflowPkts Counter32, + acdRegulatorStatsDropHCPkts Counter64, + acdRegulatorStatsDropRate Gauge32, + acdRegulatorStatsGreenHCOctets Counter64, + acdRegulatorStatsGreenHCPkts Counter64, + acdRegulatorStatsYellowHCOctets Counter64, + acdRegulatorStatsYellowHCPkts Counter64, + acdRegulatorStatsRedHCOctets Counter64, + acdRegulatorStatsRedHCPkts Counter64, + acdRegulatorStatsGreenRate Gauge32, + acdRegulatorStatsYellowRate Gauge32, + acdRegulatorStatsRedRate Gauge32 +} + +acdRegulatorStatsID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each regulator entry. Its value ranges from 1 to + MAXINT (4 bytes)." + ::= { acdRegulatorStatsEntry 1 } + +acdRegulatorStatsAcceptOctets OBJECT-TYPE + SYNTAX Counter32 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator. This is a + 32 bits counter. Combined with acdRegulatorStatsAcceptOverflowOctets, + it provides the equivalent of the 64 bits counter + acdRegulatorStatsAcceptHCOctets." + ::= { acdRegulatorStatsEntry 2 } + +acdRegulatorStatsAcceptOverflowOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorStatsAcceptOctets + counter has overflowed. This is a 32 bits counter. Combined with + acdRegulatorStatsAcceptOctets, it provides the equivalent of the + 64 bits counter acdRegulatorStatsAccpetHCOctets." + ::= { acdRegulatorStatsEntry 3 } + +acdRegulatorStatsAcceptHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator." + ::= { acdRegulatorStatsEntry 4 } + +acdRegulatorStatsAcceptPkts OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator. This is a + 32 bits counter. Combined with acdRegulatorStatsAcceptOverflowPkts, + it provides the equivalent of the 64 bits counter + acdRegulatorStatsAcceptHCPkts." + ::= { acdRegulatorStatsEntry 5 } + +acdRegulatorStatsAcceptOverflowPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorStatsAcceptPkts + counter has overflowed. This is a 32 bits counter. Combined with + acdRegulatorStatsAcceptPkts, it provides the equivalent of the + 64 bits counter acdRegulatorStatsAcceptHCPkts." + ::= { acdRegulatorStatsEntry 6 } + +acdRegulatorStatsAcceptHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator." + ::= { acdRegulatorStatsEntry 7 } + +acdRegulatorStatsAcceptRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The accept rate." + ::= { acdRegulatorStatsEntry 8 } + +acdRegulatorStatsDropOctets OBJECT-TYPE + SYNTAX Counter32 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator. This is a + 32 bits counter. Combined with acdRegulatorStatsDropOverflowOctets, + it provides the equivalent of the 64 bits counter + acdRegulatorStatsDropHCOctets." + ::= { acdRegulatorStatsEntry 9 } + +acdRegulatorStatsDropOverflowOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorStatsDropOctets + counter has overflowed. This is a 32 bits counter. Combined with + acdRegulatorStatsDropOctets, it provides the equivalent of the + 64 bits counter acdRegulatorStatsDropHCOctets." + ::= { acdRegulatorStatsEntry 10 } + +acdRegulatorStatsDropHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator." + ::= { acdRegulatorStatsEntry 11 } + +acdRegulatorStatsDropPkts OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator. This is a + 32 bits counter. Combined with acdRegulatorStatsDropOverflowPkts, + it provides the equivalent of the 64 bits counter + acdRegulatorStatsDropHCPkts." + ::= { acdRegulatorStatsEntry 12 } + +acdRegulatorStatsDropOverflowPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorStatsDropPkts + counter has overflowed. This is a 32 bits counter. Combined with + acdRegulatorStatsDropPkts, it provides the equivalent of the + 64 bits counter acdRegulatorStatsDropHCPkts." + ::= { acdRegulatorStatsEntry 13 } + +acdRegulatorStatsDropHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator." + ::= { acdRegulatorStatsEntry 14 } + +acdRegulatorStatsDropRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The drop rate." + ::= { acdRegulatorStatsEntry 15 } + +acdRegulatorStatsGreenHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Green octets received by this regulator." + ::= { acdRegulatorStatsEntry 16 } + +acdRegulatorStatsGreenHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Green packets received by this regulator." + ::= { acdRegulatorStatsEntry 17 } + +acdRegulatorStatsYellowHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Yellow octets received by this regulator." + ::= { acdRegulatorStatsEntry 18 } + +acdRegulatorStatsYellowHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Yellow packets received by this regulator." + ::= { acdRegulatorStatsEntry 19 } + +acdRegulatorStatsRedHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Red octets received by this regulator." + ::= { acdRegulatorStatsEntry 20 } + +acdRegulatorStatsRedHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Red packets received by this regulator." + ::= { acdRegulatorStatsEntry 21 } + +acdRegulatorStatsGreenRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Green rate." + ::= { acdRegulatorStatsEntry 22 } + +acdRegulatorStatsYellowRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Yellow rate." + ::= { acdRegulatorStatsEntry 23 } + +acdRegulatorStatsRedRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Red rate." + ::= { acdRegulatorStatsEntry 24 } +--------------------------------------------------------------------------- + -- The Regulator History group + + -- The Regulator History group records periodic statistical samples + -- from a regulator and stores them for later retrieval. + +--------------------------------------------------------------------------- + +acdRegulatorHistStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdRegulatorHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all counters associated with each regulator." + ::= { acdRegulator 3 } + +acdRegulatorHistStatsEntry OBJECT-TYPE + SYNTAX AcdRegulatorHistStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An Entry consists of statitics related to a regulator entry." + INDEX { acdRegulatorHistStatsID , acdRegulatorHistStatsSampleIndex } + ::= { acdRegulatorHistStatsTable 1 } + + +AcdRegulatorHistStatsEntry ::= SEQUENCE { + acdRegulatorHistStatsID Unsigned32, + acdRegulatorHistStatsSampleIndex Unsigned32, + acdRegulatorHistStatsStatus INTEGER, + acdRegulatorHistStatsDuration Unsigned32, + acdRegulatorHistStatsIntervalEnd DateAndTime, + acdRegulatorHistStatsAcceptOctets Counter32, + acdRegulatorHistStatsAcceptOverflowOctets Counter32, + acdRegulatorHistStatsAcceptHCOctets Counter64, + acdRegulatorHistStatsAcceptPkts Counter32, + acdRegulatorHistStatsAcceptOverflowPkts Counter32, + acdRegulatorHistStatsAcceptHCPkts Counter64, + acdRegulatorHistStatsAcceptAvgRate Gauge32, + acdRegulatorHistStatsAcceptMinRate Gauge32, + acdRegulatorHistStatsAcceptMaxRate Gauge32, + acdRegulatorHistStatsDropOctets Counter32, + acdRegulatorHistStatsDropOverflowOctets Counter32, + acdRegulatorHistStatsDropHCOctets Counter64, + acdRegulatorHistStatsDropPkts Counter32, + acdRegulatorHistStatsDropOverflowPkts Counter32, + acdRegulatorHistStatsDropHCPkts Counter64, + acdRegulatorHistStatsDropAvgRate Gauge32, + acdRegulatorHistStatsDropMinRate Gauge32, + acdRegulatorHistStatsDropMaxRate Gauge32, + acdRegulatorHistStatsGreenHCOctets Counter64, + acdRegulatorHistStatsGreenHCPkts Counter64, + acdRegulatorHistStatsYellowHCOctets Counter64, + acdRegulatorHistStatsYellowHCPkts Counter64, + acdRegulatorHistStatsRedHCOctets Counter64, + acdRegulatorHistStatsRedHCPkts Counter64, + acdRegulatorHistStatsGreenAvgRate Gauge32, + acdRegulatorHistStatsGreenMinRate Gauge32, + acdRegulatorHistStatsGreenMaxRate Gauge32, + acdRegulatorHistStatsYellowAvgRate Gauge32, + acdRegulatorHistStatsYellowMinRate Gauge32, + acdRegulatorHistStatsYellowMaxRate Gauge32, + acdRegulatorHistStatsRedAvgRate Gauge32, + acdRegulatorHistStatsRedMinRate Gauge32, + acdRegulatorHistStatsRedMaxRate Gauge32 +} + +acdRegulatorHistStatsID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each regulator entry. Its value ranges from 1 to + MAXINT (4 bytes)." + ::= { acdRegulatorHistStatsEntry 1 } + +acdRegulatorHistStatsSampleIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same regulator + instance. This index starts at 1 and increases by one as each new + sample." + ::= { acdRegulatorHistStatsEntry 2 } + +acdRegulatorHistStatsStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + invalid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this acdRegulatorHistStats entry." + ::= { acdRegulatorHistStatsEntry 3 } + +acdRegulatorHistStatsDuration OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interval in seconds over which the data is sampled for this entry." + ::= { acdRegulatorHistStatsEntry 4 } + +acdRegulatorHistStatsIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdRegulatorHistStatsEntry 5 } + +acdRegulatorHistStatsAcceptOctets OBJECT-TYPE + SYNTAX Counter32 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator during this + sampling interval. This is a 32 bits counter. Combined with + acdRegulatorHistStatsAcceptOverflowOctets, it provides the equivalent + of the 64 bits counter acdRegulatorHistStatsAcceptHCOctets." + ::= { acdRegulatorHistStatsEntry 6 } + +acdRegulatorHistStatsAcceptOverflowOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorHistStatsAcceptOctets + counter has overflowed during this sampling interval. This is a + 32 bits counter. Combined with acdRegulatorHistStatsAcceptOctets, + it provides the equivalent of the 64 bits counter + acdRegulatorHistStatsAcceptHCOctets." + ::= { acdRegulatorHistStatsEntry 7 } + +acdRegulatorHistStatsAcceptHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 8 } + +acdRegulatorHistStatsAcceptPkts OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator during this + sampling interval. This is a 32 bits counter. Combined with + acdRegulatorHistStatsAcceptOverflowPkts, it provides the equivalent + of the 64 bits counter acdRegulatorHistStatsAcceptHCPkts." + ::= { acdRegulatorHistStatsEntry 9 } + +acdRegulatorHistStatsAcceptOverflowPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorHistStatsAcceptPkts + counter has overflowed during this sampling interval. This is a + 32 bits counter. Combined with acdRegulatorHistStatsAcceptPkts, it + provides the equivalent of the 64 bits counter + acdRegulatorHistStatsAcceptHCPkts." + ::= { acdRegulatorHistStatsEntry 10 } + +acdRegulatorHistStatsAcceptHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 11 } + +acdRegulatorHistStatsAcceptAvgRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average accept rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 12 } + +acdRegulatorHistStatsAcceptMinRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum accept rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 13 } + +acdRegulatorHistStatsAcceptMaxRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum accept rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 14 } + +acdRegulatorHistStatsDropOctets OBJECT-TYPE + SYNTAX Counter32 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator during this + sampling interval. This is a 32 bits counter. Combined the overflow, + counter it provides the equivalent of the 64 bits counter + acdRegulatorHistStatsDropHCOctets." + ::= { acdRegulatorHistStatsEntry 15 } + +acdRegulatorHistStatsDropOverflowOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorHistStatsDropOctets + counter has overflowed during this sampling interval. This is a + 32 bits counter. Combined with acdRegulatorHistStatsDropOctets, it + provides the equivalent of the 64 bits counter + acdRegulatorHistStatsDropHCOctets." + ::= { acdRegulatorHistStatsEntry 16 } + +acdRegulatorHistStatsDropHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 17 } + +acdRegulatorHistStatsDropPkts OBJECT-TYPE + SYNTAX Counter32 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator during this + sampling interval. This is a 32 bits counter. Combined with + acdRegulatorHistStatsDropOverflowPkts, it provides the equivalent of + the 64 bits counter acdRegulatorHistStatsDropHCPkts." + ::= { acdRegulatorHistStatsEntry 18 } + +acdRegulatorHistStatsDropOverflowPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the associated acdRegulatorHistStatsDropPkts + counter has overflowed during this sampling interval. This is a + 32 bits counter. Combined with acdRegulatorHistStatsDropPkts, it + provides the equivalent of the 64 bits counter + acdRegulatorHistStatsDropHCPkts." + ::= { acdRegulatorHistStatsEntry 19 } + +acdRegulatorHistStatsDropHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 20 } + +acdRegulatorHistStatsDropAvgRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average drop rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 21 } + +acdRegulatorHistStatsDropMinRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum drop rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 22 } + +acdRegulatorHistStatsDropMaxRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum drop rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 23 } + +acdRegulatorHistStatsGreenHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Green octets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 24 } + +acdRegulatorHistStatsGreenHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Green packets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 25 } + +acdRegulatorHistStatsYellowHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Yellow octets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 26 } + +acdRegulatorHistStatsYellowHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Yellow packets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 27 } + +acdRegulatorHistStatsRedHCOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Red octets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 28 } + +acdRegulatorHistStatsRedHCPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Red packets received by this regulator during this + sampling interval." + ::= { acdRegulatorHistStatsEntry 29 } + + +acdRegulatorHistStatsGreenAvgRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average green rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 30 } + +acdRegulatorHistStatsGreenMinRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum green rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 31 } + +acdRegulatorHistStatsGreenMaxRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum green rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 32 } + +acdRegulatorHistStatsYellowAvgRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average Yellow rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 33 } + +acdRegulatorHistStatsYellowMinRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum Yellow rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 34 } + +acdRegulatorHistStatsYellowMaxRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum Yellow rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 35 } + +acdRegulatorHistStatsRedAvgRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average Red rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 36 } + +acdRegulatorHistStatsRedMinRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum Red rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 37 } + +acdRegulatorHistStatsRedMaxRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Kbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum Red rate during this sampling interval." + ::= { acdRegulatorHistStatsEntry 38 } +--------------------------------------------------------------------------- + -- Transaction ID Information +--------------------------------------------------------------------------- + +acdRegulatorTableLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of the acdRegulatorTable + table. If this value is different since the last read this is indicate + a table change." + ::= { acdRegulatorTableTid 1 } + +--------------------------------------------------------------------------- + -- ACD-REGULATOR-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdRegulatorCompliances OBJECT IDENTIFIER ::= { acdRegulatorConformance 1 } +acdRegulatorGroups OBJECT IDENTIFIER ::= { acdRegulatorConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdRegulatorGroup OBJECT-GROUP + OBJECTS { + acdRegulatorName, + acdRegulatorCir, + acdRegulatorCbs, + acdRegulatorEir, + acdRegulatorEbs, + acdRegulatorIsBlind, + acdRegulatorIsCouple, + acdRegulatorRowStatus, + acdRegulatorWorkingRate, + acdRegulatorCirMax, + acdRegulatorEirMax + } + STATUS current + DESCRIPTION + "Objects for the Regulator configurtion Group." + ::= { acdRegulatorGroups 1 } + +acdRegulatorStatsGroup OBJECT-GROUP + OBJECTS { + acdRegulatorStatsAcceptOctets, + acdRegulatorStatsAcceptOverflowOctets, + acdRegulatorStatsAcceptHCOctets, + acdRegulatorStatsAcceptPkts, + acdRegulatorStatsAcceptOverflowPkts, + acdRegulatorStatsAcceptHCPkts, + acdRegulatorStatsAcceptRate, + acdRegulatorStatsDropOctets, + acdRegulatorStatsDropOverflowOctets, + acdRegulatorStatsDropHCOctets, + acdRegulatorStatsDropPkts, + acdRegulatorStatsDropOverflowPkts, + acdRegulatorStatsDropHCPkts, + acdRegulatorStatsDropRate, + acdRegulatorStatsGreenHCOctets, + acdRegulatorStatsGreenHCPkts, + acdRegulatorStatsYellowHCOctets, + acdRegulatorStatsYellowHCPkts, + acdRegulatorStatsRedHCOctets, + acdRegulatorStatsRedHCPkts, + acdRegulatorStatsGreenRate, + acdRegulatorStatsYellowRate, + acdRegulatorStatsRedRate + } + STATUS current + DESCRIPTION + "Objects for the Regulator statistics Group." + ::= { acdRegulatorGroups 2 } + +acdRegulatorHistStatsGroup OBJECT-GROUP + OBJECTS { + acdRegulatorHistStatsID, + acdRegulatorHistStatsSampleIndex, + acdRegulatorHistStatsStatus, + acdRegulatorHistStatsDuration, + acdRegulatorHistStatsIntervalEnd, + acdRegulatorHistStatsAcceptOctets, + acdRegulatorHistStatsAcceptOverflowOctets, + acdRegulatorHistStatsAcceptHCOctets, + acdRegulatorHistStatsAcceptPkts, + acdRegulatorHistStatsAcceptOverflowPkts, + acdRegulatorHistStatsAcceptHCPkts, + acdRegulatorHistStatsAcceptAvgRate, + acdRegulatorHistStatsAcceptMinRate, + acdRegulatorHistStatsAcceptMaxRate, + acdRegulatorHistStatsDropOctets, + acdRegulatorHistStatsDropOverflowOctets, + acdRegulatorHistStatsDropHCOctets, + acdRegulatorHistStatsDropPkts, + acdRegulatorHistStatsDropOverflowPkts, + acdRegulatorHistStatsDropHCPkts, + acdRegulatorHistStatsDropAvgRate, + acdRegulatorHistStatsDropMinRate, + acdRegulatorHistStatsDropMaxRate, + acdRegulatorHistStatsGreenHCOctets, + acdRegulatorHistStatsGreenHCPkts, + acdRegulatorHistStatsYellowHCOctets, + acdRegulatorHistStatsYellowHCPkts, + acdRegulatorHistStatsRedHCOctets, + acdRegulatorHistStatsRedHCPkts, + acdRegulatorHistStatsGreenAvgRate, + acdRegulatorHistStatsGreenMinRate, + acdRegulatorHistStatsGreenMaxRate, + acdRegulatorHistStatsYellowAvgRate, + acdRegulatorHistStatsYellowMinRate, + acdRegulatorHistStatsYellowMaxRate, + acdRegulatorHistStatsRedAvgRate, + acdRegulatorHistStatsRedMinRate , + acdRegulatorHistStatsRedMaxRate + } + STATUS current + DESCRIPTION + "Objects for the Regulator history statistics Group." + ::= { acdRegulatorGroups 3 } + +acdRegulatorTidGroup OBJECT-GROUP + OBJECTS { + acdRegulatorTableLastChangeTid + } + STATUS current + DESCRIPTION + "List of scalars to monitior changes in tables." + ::= { acdRegulatorGroups 4 } + +acdRegulatorCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-REGULATOR-MIB module." + MODULE + MANDATORY-GROUPS { + acdRegulatorGroup, + acdRegulatorStatsGroup, + acdRegulatorHistStatsGroup, + acdRegulatorTidGroup + } + + OBJECT acdRegulatorRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + ::= { acdRegulatorCompliances 1 } + + +END diff --git a/mibs/accedian/ACD-SA-MIB b/mibs/accedian/ACD-SA-MIB new file mode 100644 index 0000000..bc1bef9 --- /dev/null +++ b/mibs/accedian/ACD-SA-MIB @@ -0,0 +1,1182 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2016, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-SA-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, Gauge32 + FROM SNMPv2-SMI + DisplayString, DateAndTime, TEXTUAL-CONVENTION, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + + acdMibs + FROM ACCEDIAN-SMI; + +acdSa MODULE-IDENTITY + + LAST-UPDATED "201609230100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Service Availability database for this Accedian Networks device." + + REVISION "201609230100Z" -- 23 September 2016 + DESCRIPTION + "Add acdSaServiceHistCounterPeriodIndex + to acdSaServiceHistCounterGroup. + Add acdSaMetricHistCounterID and acdSaMetricHistCounterPeriodIndex + to acdSaMetricHistCounterGroup." + + REVISION "201606160100Z" -- 16 June 2016 + DESCRIPTION + "Add invalid(4) value for AcdSaValidFlag syntax." + + REVISION "201605260100Z" -- 26 May 2016 + DESCRIPTION + "Set access level to read-only for acdSaServiceHistCounterPeriodIndex, + acdSaMetricHistCounterID, acdSaMetricHistCounterPeriodIndex." + + REVISION "201112210100Z" -- 21 Dec 2011 + DESCRIPTION + "Add support for ETH-SLM metrics." + + + REVISION "201103150100Z" -- 15 Mars 2011 + DESCRIPTION + "Initial version of MIB module ACD-SA-MIB." + + ::= { acdMibs 12 } + +acdSaNotifications OBJECT IDENTIFIER ::= { acdSa 0 } +acdSaMIBObjects OBJECT IDENTIFIER ::= { acdSa 1 } +acdSaConformance OBJECT IDENTIFIER ::= { acdSa 2 } + +acdSaConfig OBJECT IDENTIFIER ::= { acdSaMIBObjects 1 } +acdSaCounter OBJECT IDENTIFIER ::= { acdSaMIBObjects 2 } +acdSaStatus OBJECT IDENTIFIER ::= { acdSaMIBObjects 3 } + +--------------------------------------------------------------------------- +-- Textual conventions +--------------------------------------------------------------------------- + +AcdSaMetricType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A value that represents a type of metric that can be used in an + instance of Service Availability." + SYNTAX INTEGER { + metricPaaPlr(1), + metricPaaOwDelay(2), + metricPaaOwDv(3), + metricPaaTwDelay(4), + metricPaaTwDv(5), + metricCfmPlr(6), + metricCfmOwDelay(7), + metricCfmOwDv(8), + metricCfmTwDelay(9), + metricCfmTwDv(10), + metricCfmSlmNearEndPlr(11), + metricCfmSlmFarEndPlr(12) + } + +AcdSaValidFlag ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The validity flag can have three values: valid, adjusted, or pending. + The value of valid indicates the metrics are calculated normally. + The value of adjusted is used to indicate a change occurred in the + configuration during the reporting period which may impact the service + availability calculation. + The value of pending indicates that the counters were reset in the + middle of a time interval." + SYNTAX INTEGER { + valid(1), + adjusted(2), + pending(3), + invalid(4) + } + +AcdSaAdminStateFlag ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This flag is used for the administrative state. + The value IS indicates the state is In-Service. The value OOS + indicates the state is Out-of-Service." + SYNTAX INTEGER { + is(1), + oos(2) + } + +AcdSaOperStateFlag ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This flag is used for the operational state. + The value IS indicates the state is In-Service. The value OOS + indicates the state is Out-of-Service. The value oos-au indicates + the state is Out-of-Service-Autonomous. This state is entered when + all of the metrics associated with the service instance are disabled." + SYNTAX INTEGER { + is(1), + oos(2), + oosAu(3) + } + +--------------------------------------------------------------------------- + -- The Service configuration table + -- This table contains all Service entry configurations. +--------------------------------------------------------------------------- + +acdSaServiceConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaServiceConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaConfig 1 } + +acdSaServiceConfigEntry OBJECT-TYPE + SYNTAX AcdSaServiceConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings for a Service." + INDEX { acdSaServiceIndex } + ::= { acdSaServiceConfigTable 1 } + +AcdSaServiceConfigEntry ::= SEQUENCE { + acdSaServiceIndex Unsigned32, + acdSaServiceConfigRowStatus RowStatus, + acdSaServiceConfigName DisplayString, + acdSaServiceConfigAdminState AcdSaAdminStateFlag, + acdSaServiceConfigReportingPeriod Unsigned32, + acdSaServiceConfigUaWindowSize Unsigned32, + acdSaServiceConfigHliWindowSize Unsigned32, + acdSaServiceConfigTimeInterval Unsigned32 +} + +acdSaServiceIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each service instance." + ::= { acdSaServiceConfigEntry 1 } + +acdSaServiceConfigRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new Service you shall provide a unique name for an empty + row with the RowStatus set to Create and Go." + ::= { acdSaServiceConfigEntry 2 } + +acdSaServiceConfigName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A unique name used to identify the Service." + ::= { acdSaServiceConfigEntry 3 } + +acdSaServiceConfigAdminState OBJECT-TYPE + SYNTAX AcdSaAdminStateFlag + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Administrative state is(1) or oos(2)." + DEFVAL { 2 } + ::= { acdSaServiceConfigEntry 4 } + +acdSaServiceConfigReportingPeriod OBJECT-TYPE + SYNTAX Unsigned32 (1 .. 1440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A reporting period over which availability counters are evaluated + in addition to the monotonic counters (In minutes)." + DEFVAL { 15 } + ::= { acdSaServiceConfigEntry 5 } + +acdSaServiceConfigUaWindowSize OBJECT-TYPE + SYNTAX Unsigned32 (1 .. 1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of consecutive seconds over which to assess unavailability." + DEFVAL { 10 } + ::= { acdSaServiceConfigEntry 6 } + +acdSaServiceConfigHliWindowSize OBJECT-TYPE + SYNTAX Unsigned32 (1 .. 999) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of consecutive Time Intervals used to assess High Loss Intervals for this instance." + DEFVAL { 3 } + ::= { acdSaServiceConfigEntry 7 } + +acdSaServiceConfigTimeInterval OBJECT-TYPE + SYNTAX Unsigned32 (1 .. 60) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval of time during which the metric is evaluated. Allowed values + are 1, 5, 10, 20, or 60." + DEFVAL { 1 } + ::= { acdSaServiceConfigEntry 8 } + + +--------------------------------------------------------------------------- + -- The Metric configuration table + -- This table contains all Metric entry configurations. +--------------------------------------------------------------------------- + +acdSaMetricConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaMetricConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ....." + ::= { acdSaConfig 2 } + +acdSaMetricConfigEntry OBJECT-TYPE + SYNTAX AcdSaMetricConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings for a Metric." + INDEX { acdSaServiceIndex, + acdSaMetricIndex } + ::= { acdSaMetricConfigTable 1 } + +AcdSaMetricConfigEntry ::= SEQUENCE { + acdSaMetricIndex Unsigned32, + acdSaMetricConfigRowStatus RowStatus, + acdSaMetricConfigName DisplayString, + acdSaMetricConfigSrcName DisplayString, + acdSaMetricConfigType AcdSaMetricType, + acdSaMetricConfigThreshold Unsigned32 +} + +acdSaMetricIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index for each metric instance." + ::= { acdSaMetricConfigEntry 1 } + +acdSaMetricConfigRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new Service you shall provide the a unique name for an empty + row with the RowStatus set to Create and Go. To delete the VLAN set + you need to set the RowStatus to destroy." + ::= { acdSaMetricConfigEntry 2 } + +acdSaMetricConfigName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A unique name used to identify the Metric." + ::= { acdSaMetricConfigEntry 3 } + +acdSaMetricConfigSrcName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A unique name used to identify the source metric." + ::= { acdSaMetricConfigEntry 4 } + +acdSaMetricConfigType OBJECT-TYPE + SYNTAX AcdSaMetricType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable the Service Availability entry." + DEFVAL { metricCfmTwDelay } + ::= { acdSaMetricConfigEntry 5 } + +acdSaMetricConfigThreshold OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the delay threshold for this metric when type is + one of metric delay parameters (in micro-seconds). Indicates + the packet loss threshold for this metric when type is one of + packet-loss parameter expressed in millionth of percent + (1,000,000 is 1%)." + DEFVAL { 0 } + ::= { acdSaMetricConfigEntry 6 } + + +--------------------------------------------------------------------------- + -- The Service counters table + -- This table contains all services history counters. +--------------------------------------------------------------------------- + +acdSaServiceCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaServiceCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaCounter 1 } + +acdSaServiceCounterEntry OBJECT-TYPE + SYNTAX AcdSaServiceCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all counters for a Service." + INDEX { acdSaServiceIndex } + ::= { acdSaServiceCounterTable 1 } + +AcdSaServiceCounterEntry ::= SEQUENCE { + acdSaServiceCounterPeriodIndex Unsigned32, + acdSaServiceCounterValidFlag AcdSaValidFlag, + acdSaServiceCounterUpTime Unsigned32, + acdSaServiceCounterUaTime Unsigned32, + acdSaServiceCounterMaintTime Unsigned32, + acdSaServiceCounterAvailRatio Unsigned32, + acdSaServiceCounterGaps Unsigned32, + acdSaServiceCounterLargestGap Unsigned32, + acdSaServiceCounterChliTime Unsigned32, + acdSaServiceCounterChliRatio Unsigned32 +} + +acdSaServiceCounterPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same service + instance. This index starts at 1 and increases by one as each new + period." + ::= { acdSaServiceCounterEntry 1 } + +acdSaServiceCounterValidFlag OBJECT-TYPE + SYNTAX AcdSaValidFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the service counter during this sampling + interval." + ::= { acdSaServiceCounterEntry 2 } + + +acdSaServiceCounterUpTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Uptime is a measure of the time a service has been up during this + sampling interval." + ::= { acdSaServiceCounterEntry 3 } + +acdSaServiceCounterUaTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UaTime is a measure of the time a service has been unavailable + during this sampling interval." + ::= { acdSaServiceCounterEntry 4 } + +acdSaServiceCounterMaintTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MaintTime is a measure of the time a service has been in maintenance + during this sampling interval." + ::= { acdSaServiceCounterEntry 5 } + +acdSaServiceCounterAvailRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the availability ratio in millionth of a percent + (1,000,000 is 1%)." + ::= { acdSaServiceCounterEntry 6 } + + +acdSaServiceCounterGaps OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gap shall be the number of time the state change from available + to unavailable." + ::= { acdSaServiceCounterEntry 7 } + +acdSaServiceCounterLargestGap OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The largest gap shall be the largest number of consecutive unavailable + second." + ::= { acdSaServiceCounterEntry 8 } + +acdSaServiceCounterChliTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CHLI time is a counter which increments for every high loss interval. + It is only reset to zero when one of the following conditions occur: + 1) device reboot 2) explicit counter reset." + ::= { acdSaServiceCounterEntry 9 } + +acdSaServiceCounterChliRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ratio of high loss intervals divided by the uptime minus the sum of + maintenance time and unavailable time, expressed in millionth of a percent (1,000,000 is 1%)." + ::= { acdSaServiceCounterEntry 10 } + + +--------------------------------------------------------------------------- + -- The Service History counters table + -- This table contains all services history counters. +--------------------------------------------------------------------------- + +acdSaServiceHistCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaServiceHistCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaCounter 2 } + +acdSaServiceHistCounterEntry OBJECT-TYPE + SYNTAX AcdSaServiceHistCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all counters for a Service." + INDEX { acdSaServiceIndex, + acdSaServiceHistCounterPeriodIndex } + ::= { acdSaServiceHistCounterTable 1 } + +AcdSaServiceHistCounterEntry ::= SEQUENCE { + acdSaServiceHistCounterPeriodIndex Unsigned32, + acdSaServiceHistCounterIntervalEnd DateAndTime, + acdSaServiceHistCounterValidFlag AcdSaValidFlag, + acdSaServiceHistCounterUpTime Unsigned32, + acdSaServiceHistCounterUaTime Unsigned32, + acdSaServiceHistCounterMaintTime Unsigned32, + acdSaServiceHistCounterAvailRatio Unsigned32, + acdSaServiceHistCounterGaps Unsigned32, + acdSaServiceHistCounterLargestGap Unsigned32, + acdSaServiceHistCounterChliTime Unsigned32, + acdSaServiceHistCounterChliRatio Unsigned32 +} + +acdSaServiceHistCounterPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same service + instance. This index starts at 1 and increases by one as each new + period." + ::= { acdSaServiceHistCounterEntry 1 } + + +acdSaServiceHistCounterIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdSaServiceHistCounterEntry 2 } + + +acdSaServiceHistCounterValidFlag OBJECT-TYPE + SYNTAX AcdSaValidFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the service counter during this sampling + interval." + ::= { acdSaServiceHistCounterEntry 3 } + + +acdSaServiceHistCounterUpTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Uptime is a measure of the time a service has been up during this + sampling interval." + ::= { acdSaServiceHistCounterEntry 4 } + +acdSaServiceHistCounterUaTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UaTime is a measure of the time a service has been unavailable + during this sampling interval." + ::= { acdSaServiceHistCounterEntry 5 } + +acdSaServiceHistCounterMaintTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MaintTime is a measure of the time a service has been in maintenance + during this sampling interval." + ::= { acdSaServiceHistCounterEntry 6 } + +acdSaServiceHistCounterAvailRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the availability ratio as a percentage." + ::= { acdSaServiceHistCounterEntry 7 } + + +acdSaServiceHistCounterGaps OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gap shall be the number of time the state change from available + to unavailable." + ::= { acdSaServiceHistCounterEntry 8 } + +acdSaServiceHistCounterLargestGap OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The largest gap shall be the largest number of consecutive unavailable + second." + ::= { acdSaServiceHistCounterEntry 9 } + +acdSaServiceHistCounterChliTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CHLI time is a counter which increments for every High Loss Interval. + It is only reset to zero when one of the following conditions occur: + 1) device reboot 2) explicit counter reset." + ::= { acdSaServiceHistCounterEntry 10 } + +acdSaServiceHistCounterChliRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ratio of high loss intervals divided by the uptime minus the sum of + maintenance time and unavailable time, expressed in millionth of a percent (1,000,000 is 1%)." + ::= { acdSaServiceHistCounterEntry 11 } + +--------------------------------------------------------------------------- + -- The Monotonic Service counters table + -- This table contains all services monotonic counters. +--------------------------------------------------------------------------- + +acdSaServiceMonoCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaServiceMonoCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaCounter 3 } + +acdSaServiceMonoCounterEntry OBJECT-TYPE + SYNTAX AcdSaServiceMonoCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all monotonic counters for a Service." + INDEX { acdSaServiceIndex } + ::= { acdSaServiceMonoCounterTable 1 } + +AcdSaServiceMonoCounterEntry ::= SEQUENCE { + acdSaServiceMonoCounterValidFlag AcdSaValidFlag, + acdSaServiceMonoCounterUpTime Unsigned32, + acdSaServiceMonoCounterUaTime Unsigned32, + acdSaServiceMonoCounterMaintTime Unsigned32, + acdSaServiceMonoCounterAvailRatio Unsigned32, + acdSaServiceMonoCounterGaps Unsigned32, + acdSaServiceMonoCounterLargestGap Unsigned32, + acdSaServiceMonoCounterChliTime Unsigned32, + acdSaServiceMonoCounterChliRatio Unsigned32 +} + +acdSaServiceMonoCounterValidFlag OBJECT-TYPE + SYNTAX AcdSaValidFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the service counter during this sampling + interval." + ::= { acdSaServiceMonoCounterEntry 1 } + + +acdSaServiceMonoCounterUpTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Uptime is a measure of the time a service has been up during this + sampling interval." + ::= { acdSaServiceMonoCounterEntry 2 } + +acdSaServiceMonoCounterUaTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UaTime is a measure of the time a service has been unavailable + during this sampling interval." + ::= { acdSaServiceMonoCounterEntry 3 } + +acdSaServiceMonoCounterMaintTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MaintTime is a measure of the time a service has been in maintenance + during this sampling interval." + ::= { acdSaServiceMonoCounterEntry 4 } + +acdSaServiceMonoCounterAvailRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the availability ratio in millionth of a percent + (1,000,000 is 1%)." + ::= { acdSaServiceMonoCounterEntry 5 } + + +acdSaServiceMonoCounterGaps OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The gap shall be the number of time the state change from available + to unavailable." + ::= { acdSaServiceMonoCounterEntry 6 } + +acdSaServiceMonoCounterLargestGap OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The largest gap shall be the largest number of consecutive unavailable + second." + ::= { acdSaServiceMonoCounterEntry 7 } + +acdSaServiceMonoCounterChliTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A counter which increments for every high loss interval. + It is only reset to zero when one of the following conditions occur: + 1) device reboot 2) explicit counter reset." + ::= { acdSaServiceMonoCounterEntry 8 } + +acdSaServiceMonoCounterChliRatio OBJECT-TYPE + SYNTAX Unsigned32 (0..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ratio of high loss intervals divided by the uptime minus the sum of maintenance time and unavailable time, + expressed in millionth of a percent (1,000,000 is 1%)." + ::= { acdSaServiceMonoCounterEntry 9 } + + +--------------------------------------------------------------------------- + -- The Metric counters table + -- This table contains all metrics history counters. +--------------------------------------------------------------------------- + +acdSaMetricCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaMetricCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaCounter 4 } + +acdSaMetricCounterEntry OBJECT-TYPE + SYNTAX AcdSaMetricCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all counters for a Metric." + INDEX { acdSaServiceIndex, + acdSaMetricIndex } + ::= { acdSaMetricCounterTable 1 } + +AcdSaMetricCounterEntry ::= SEQUENCE { + acdSaMetricCounterValidFlag AcdSaValidFlag, + acdSaMetricCounterUaTime Unsigned32, + acdSaMetricCounterChliTime Unsigned32 +} + +acdSaMetricCounterValidFlag OBJECT-TYPE + SYNTAX AcdSaValidFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the metric counter during this sampling + interval." + ::= { acdSaMetricCounterEntry 1 } + + +acdSaMetricCounterUaTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UaTime is a measure of the time a metric has been unavailable + during this sampling interval." + ::= { acdSaMetricCounterEntry 2 } + +acdSaMetricCounterChliTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A counter which increments for every High Loss Interval. It is only reset to zero when one of the following conditions occur: + 1) device reboot 2) explicit counter reset." + ::= { acdSaMetricCounterEntry 3 } + + +--------------------------------------------------------------------------- + -- The Metric History counters table + -- This table contains all metrics history counters. +--------------------------------------------------------------------------- + +acdSaMetricHistCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaMetricHistCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaCounter 5 } + +acdSaMetricHistCounterEntry OBJECT-TYPE + SYNTAX AcdSaMetricHistCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all counters for a Metric." + INDEX { acdSaMetricHistCounterID, + acdSaMetricHistCounterPeriodIndex } + ::= { acdSaMetricHistCounterTable 1 } + +AcdSaMetricHistCounterEntry ::= SEQUENCE { + acdSaMetricHistCounterID Unsigned32, + acdSaMetricHistCounterPeriodIndex Unsigned32, + acdSaMetricHistCounterIntervalEnd DateAndTime, + acdSaMetricHistCounterValidFlag AcdSaValidFlag, + acdSaMetricHistCounterUaTime Unsigned32, + acdSaMetricHistCounterChliTime Unsigned32 +} + +acdSaMetricHistCounterID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value for each Metric instance. This value follows the + ordering of the service table." + ::= { acdSaMetricHistCounterEntry 1 } + +acdSaMetricHistCounterPeriodIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index that uniquely identifies the particular sample this entry + represents among all samples associated with the same service + instance. This index starts at 1 and increases by one as each new + period." + ::= { acdSaMetricHistCounterEntry 2 } + + +acdSaMetricHistCounterIntervalEnd OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the time of the end of this entry." + ::= { acdSaMetricHistCounterEntry 3 } + + +acdSaMetricHistCounterValidFlag OBJECT-TYPE + SYNTAX AcdSaValidFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the metric counter during this sampling + interval." + ::= { acdSaMetricHistCounterEntry 4 } + + +acdSaMetricHistCounterUaTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UaTime is a measure of the time a metric has been unavailable + during this sampling interval." + ::= { acdSaMetricHistCounterEntry 5 } + +acdSaMetricHistCounterChliTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A counter which increments for every High Loss Interval. It is only reset to zero when one of the following conditions occur: + 1) device reboot 2) explicit counter reset." + ::= { acdSaMetricHistCounterEntry 6 } + +--------------------------------------------------------------------------- + -- The Metric counters table + -- This table contains all metrics history counters. +--------------------------------------------------------------------------- + +acdSaMetricMonoCounterTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaMetricMonoCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaCounter 6 } + +acdSaMetricMonoCounterEntry OBJECT-TYPE + SYNTAX AcdSaMetricMonoCounterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all counters for a Metric." + INDEX { acdSaServiceIndex, + acdSaMetricIndex } + ::= { acdSaMetricMonoCounterTable 1 } + +AcdSaMetricMonoCounterEntry ::= SEQUENCE { + acdSaMetricMonoCounterValidFlag AcdSaValidFlag, + acdSaMetricMonoCounterUaTime Unsigned32, + acdSaMetricMonoCounterChliTime Unsigned32 +} + +acdSaMetricMonoCounterValidFlag OBJECT-TYPE + SYNTAX AcdSaValidFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the validity of the metric counter during this sampling + interval." + ::= { acdSaMetricMonoCounterEntry 1 } + + +acdSaMetricMonoCounterUaTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UaTime is a measure of the time a metric has been unavailable + during this sampling interval." + ::= { acdSaMetricMonoCounterEntry 2 } + +acdSaMetricMonoCounterChliTime OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A counter which increments for every high loss interval. It is only reset to zero when one of the following conditions occur: + 1) device reboot 2) explicit counter reset." + ::= { acdSaMetricMonoCounterEntry 3 } + + + +--------------------------------------------------------------------------- + -- The Service status table + -- This table contains all Service entry status. +--------------------------------------------------------------------------- + +acdSaServiceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSaServiceStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all instance of service availability of this unit." + ::= { acdSaStatus 1 } + +acdSaServiceStatusEntry OBJECT-TYPE + SYNTAX AcdSaServiceStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all status for a Service." + INDEX { acdSaServiceStatusID } + ::= { acdSaServiceStatusTable 1 } + +AcdSaServiceStatusEntry ::= SEQUENCE { + acdSaServiceStatusID Unsigned32, + acdSaServiceStatusName DisplayString, + acdSaServiceStatusAdminState AcdSaAdminStateFlag, + acdSaServiceStatusOperState AcdSaOperStateFlag, + acdSaServiceStatusNbrMetrics Gauge32 +} + +acdSaServiceStatusID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each service instance." + ::= { acdSaServiceStatusEntry 1 } + +acdSaServiceStatusName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique name used to identify the Service." + ::= { acdSaServiceStatusEntry 2 } + +acdSaServiceStatusAdminState OBJECT-TYPE + SYNTAX AcdSaAdminStateFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Administrative state is one of is(1) or oos(2)." + DEFVAL { 2 } + ::= { acdSaServiceStatusEntry 3 } + +acdSaServiceStatusOperState OBJECT-TYPE + SYNTAX AcdSaOperStateFlag + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operational state is one of is(1), oos(2) or oosAu (3)." + DEFVAL { 2 } + ::= { acdSaServiceStatusEntry 4 } + +acdSaServiceStatusNbrMetrics OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of metrics associated with this Service instance." + DEFVAL { 0 } + ::= { acdSaServiceStatusEntry 5 } + + + + + +--------------------------------------------------------------------------- + -- ACD-SA-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdSaCompliances OBJECT IDENTIFIER ::= { acdSaConformance 1 } +acdSaGroups OBJECT IDENTIFIER ::= { acdSaConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdSaServiceConfigGroup OBJECT-GROUP + OBJECTS { + acdSaServiceConfigRowStatus, + acdSaServiceConfigName, + acdSaServiceConfigAdminState, + acdSaServiceConfigReportingPeriod, + acdSaServiceConfigUaWindowSize, + acdSaServiceConfigHliWindowSize, + acdSaServiceConfigTimeInterval + } + STATUS current + DESCRIPTION + "Objects for the Service configuration Group." + ::= { acdSaGroups 1 } + +acdSaMetricConfigGroup OBJECT-GROUP + OBJECTS { + acdSaMetricConfigRowStatus, + acdSaMetricConfigName, + acdSaMetricConfigSrcName, + acdSaMetricConfigType, + acdSaMetricConfigThreshold + } + STATUS current + DESCRIPTION + "Objects for the Metric configuration Group." + ::= { acdSaGroups 2 } + +acdSaServiceCounterGroup OBJECT-GROUP + OBJECTS { + acdSaServiceCounterPeriodIndex, + acdSaServiceCounterValidFlag, + acdSaServiceCounterUpTime, + acdSaServiceCounterUaTime, + acdSaServiceCounterMaintTime, + acdSaServiceCounterAvailRatio, + acdSaServiceCounterGaps, + acdSaServiceCounterLargestGap, + acdSaServiceCounterChliTime, + acdSaServiceCounterChliRatio + } + STATUS current + DESCRIPTION + "Objects for the Service Counter Group." + ::= { acdSaGroups 3 } + +acdSaServiceHistCounterGroup OBJECT-GROUP + OBJECTS { + acdSaServiceHistCounterPeriodIndex, + acdSaServiceHistCounterIntervalEnd, + acdSaServiceHistCounterValidFlag, + acdSaServiceHistCounterUpTime, + acdSaServiceHistCounterUaTime, + acdSaServiceHistCounterMaintTime, + acdSaServiceHistCounterAvailRatio, + acdSaServiceHistCounterGaps, + acdSaServiceHistCounterLargestGap, + acdSaServiceHistCounterChliTime, + acdSaServiceHistCounterChliRatio + } + STATUS current + DESCRIPTION + "Objects for the Service History Counter Group." + ::= { acdSaGroups 4 } + +acdSaServiceMonoCounterGroup OBJECT-GROUP + OBJECTS { + acdSaServiceMonoCounterValidFlag, + acdSaServiceMonoCounterUpTime, + acdSaServiceMonoCounterUaTime, + acdSaServiceMonoCounterMaintTime, + acdSaServiceMonoCounterAvailRatio, + acdSaServiceMonoCounterGaps, + acdSaServiceMonoCounterLargestGap, + acdSaServiceMonoCounterChliTime, + acdSaServiceMonoCounterChliRatio + } + STATUS current + DESCRIPTION + "Objects for the Service Monotonic Counter Group." + ::= { acdSaGroups 5 } + +acdSaMetricCounterGroup OBJECT-GROUP + OBJECTS { + acdSaMetricCounterValidFlag, + acdSaMetricCounterUaTime, + acdSaMetricCounterChliTime + } + STATUS current + DESCRIPTION + "Objects for the Metric Counter Group." + ::= { acdSaGroups 6 } + +acdSaMetricHistCounterGroup OBJECT-GROUP + OBJECTS { + acdSaMetricHistCounterID, + acdSaMetricHistCounterPeriodIndex, + acdSaMetricHistCounterIntervalEnd, + acdSaMetricHistCounterValidFlag, + acdSaMetricHistCounterUaTime, + acdSaMetricHistCounterChliTime + } + STATUS current + DESCRIPTION + "Objects for the Metric History Counter Group." + ::= { acdSaGroups 7 } + +acdSaMetricMonoCounterGroup OBJECT-GROUP + OBJECTS { + acdSaMetricMonoCounterValidFlag, + acdSaMetricMonoCounterUaTime, + acdSaMetricMonoCounterChliTime + } + STATUS current + DESCRIPTION + "Objects for the Metric History Counter Group." + ::= { acdSaGroups 8 } + +acdSaServiceStatusGroup OBJECT-GROUP + OBJECTS { + acdSaServiceStatusName, + acdSaServiceStatusAdminState, + acdSaServiceStatusOperState, + acdSaServiceStatusNbrMetrics + } + STATUS current + DESCRIPTION + "Objects for the Service Status Group." + ::= { acdSaGroups 9 } + + +acdSaCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-SA-MIB module." + MODULE + MANDATORY-GROUPS { + acdSaServiceConfigGroup, + acdSaMetricConfigGroup, + acdSaServiceCounterGroup, + acdSaServiceHistCounterGroup, + acdSaServiceMonoCounterGroup, + acdSaMetricCounterGroup, + acdSaMetricHistCounterGroup, + acdSaMetricMonoCounterGroup, + acdSaServiceStatusGroup + } + + OBJECT acdSaServiceConfigRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdSaMetricConfigRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + ::= { acdSaCompliances 1 } + +END diff --git a/mibs/accedian/ACD-SFP-MIB b/mibs/accedian/ACD-SFP-MIB new file mode 100644 index 0000000..d8cdf4a --- /dev/null +++ b/mibs/accedian/ACD-SFP-MIB @@ -0,0 +1,1182 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2010, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document is subject to change without notice. +-- + + +ACD-SFP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32, Unsigned32 + FROM SNMPv2-SMI + DisplayString, TruthValue + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + acdMibs + FROM ACCEDIAN-SMI; + +acdSfp MODULE-IDENTITY + + LAST-UPDATED "201011100100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 4878 Levy, suite 202 + Saint-Laurent, Quebec Canada H4R 2P1 + E-mail: support@accedian.com" + DESCRIPTION + "The SFPs database for this Accedian Networks device." + + REVISION "201011100100Z" -- 10 November 2010 + DESCRIPTION + "Add compliance section." + + REVISION "200804220100Z" -- 22 April 2008 + DESCRIPTION + "Add acdSfpInfoIdType, acdSfpInfoExtIdType and acdSfpInfoTransCode support." + + REVISION "200608060100Z" -- 6 Aug 2006 + DESCRIPTION + "Initial version of MIB module ACD-SFP-MIB." + + ::= { acdMibs 4 } + +acdSfpNotifications OBJECT IDENTIFIER ::= { acdSfp 5 } +acdSfpMIBObjects OBJECT IDENTIFIER ::= { acdSfp 6 } +acdSfpConformance OBJECT IDENTIFIER ::= { acdSfp 7 } + +----------------------------------------------------------------------- + -- The information SFP table + -- This table contains all SFP Info. +--------------------------------------------------------------------------- + +acdSfpInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all SFP info" + ::= { acdSfp 1 } + +acdSfpInfoEntry OBJECT-TYPE + SYNTAX AcdSfpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a part of the content of the SFP's 0xA0 EEPROM" + INDEX { acdSfpInfoID } + ::= { acdSfpInfoTable 1 } + + +AcdSfpInfoEntry ::= SEQUENCE { + acdSfpInfoID Unsigned32, + acdSfpInfoConnIdx Unsigned32, + acdSfpInfoConnType INTEGER, + acdSfpInfoVendor DisplayString, + acdSfpInfoVendorOui DisplayString, + acdSfpInfoVendorPn DisplayString, + acdSfpInfoVendorRev DisplayString, + acdSfpInfoWavelength Unsigned32, + acdSfpInfoSerialNum DisplayString, + acdSfpInfoYear Unsigned32, + acdSfpInfoMonth Unsigned32, + acdSfpInfoDay Unsigned32, + acdSfpInfoLot Unsigned32, + acdSfpInfoRev8472 INTEGER, + acdSfpInfoPresent TruthValue, + acdSfpInfoDiag TruthValue, + acdSfpInfoInternal TruthValue, + acdSfpInfoAlm TruthValue, + acdSfpInfoIdType Unsigned32, + acdSfpInfoExtIdType Unsigned32, + acdSfpInfoTransCode DisplayString +} + +acdSfpInfoID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each SFP. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdSfpInfoEntry 1 } + +acdSfpInfoConnIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the connector index on the box. The index + is assigned form left to rigth starting with 1." + ::= { acdSfpInfoEntry 2 } + +acdSfpInfoConnType OBJECT-TYPE + SYNTAX INTEGER { + sfpSC(1), + sfpFC1COPPER(2), + sfpFC2COPPER(3), + sfpBNC(4), + sfpFCCOAX(5), + sfpFIBERJACK(6), + sfpLC(7), + sfpMTRJ(8), + sfpMU(9), + sfpSG(10), + sfpPIGTAIL(11), + sfpHSSDCII(32), + sfpCOPPERPIGTAIL(33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The connector value indicates the external optical or electrical + cable connector provided as the media interface." + ::= { acdSfpInfoEntry 3 } + +acdSfpInfoVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor name is a 16 character field that contains ASCII + characters, left-aligned and padded on the right with ASCII + spaces (20h). The vendor name shall be the full name of the + corporation, a commonly accepted abbreviation of the name of + the corporation, the SCSI company code for the corporation, + or the stock exchange code for the corporation. At least one + of the vendor name or the vendor OUI fields shall contain + valid serial data." + ::= { acdSfpInfoEntry 4 } + +acdSfpInfoVendorOui OBJECT-TYPE + SYNTAX DisplayString (SIZE (3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor organizationally unique identifier field (vendor OUI) + is a 3-byte field that contains the IEEE Company Identifier for + the vendor. A value of all zero in the 3-byte field indicates + that the Vendor OUI is unspecified." + ::= { acdSfpInfoEntry 5 } + +acdSfpInfoVendorPn OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor part number (vendor PN) is a 16-byte field that + contains ASCII characters, leftaligned and padded on the + right with ASCII spaces (20h), defining the vendor's part + number or product name. A value of all zero in the 16-byte + field indicates that the vendor PN is unspecified." + ::= { acdSfpInfoEntry 6 } + +acdSfpInfoVendorRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor revision number (vendor rev) is a 4-byte field that + contains ASCII characters, leftaligned and padded on the right + with ASCII spaces (20h), defining the vendor's product revision + number. A value of all zero in the 4-byte field indicates that + the vendor PN is unspecified." + ::= { acdSfpInfoEntry 7 } + +acdSfpInfoWavelength OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Nominal transmitter output wavelength at room temperature. 16 bit + value with byte 60 as high order byte and byte 61 as low order + byte. The laser wavelength is equal to the 16 bit integer + value in nm. This field allows the user to read the laser + wavelength directly, so it is not necessary to infer it from the + transceiver Code for Electronic Compatibility." + ::= { acdSfpInfoEntry 8 } + +acdSfpInfoSerialNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor serial number (vendor SN) is a 16 character field that + contains ASCII characters, left-aligned and padded on the right + with ASCII spaces (20h), defining the vendor's serial number for + the transceiver. A value of all zero in the 16-byte field indicates + that the vendor PN is unspecified." + ::= { acdSfpInfoEntry 9 } + +acdSfpInfoYear OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the year of manufacturing." + ::= { acdSfpInfoEntry 10 } + +acdSfpInfoMonth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the month of manufacturing." + ::= { acdSfpInfoEntry 11 } + +acdSfpInfoDay OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the day of manufacturing." + ::= { acdSfpInfoEntry 12 } + +acdSfpInfoLot OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the Lot number of manufacturing." + ::= { acdSfpInfoEntry 13 } + + +acdSfpInfoRev8472 OBJECT-TYPE + SYNTAX INTEGER { + undefined(0), + rev93(1), + rev94(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate to which revision this SFP is compatible." + ::= { acdSfpInfoEntry 14 } + +acdSfpInfoPresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the SFP is present or not." + ::= { acdSfpInfoEntry 15 } + +acdSfpInfoDiag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the SFP supports Digital Diagnostics." + ::= { acdSfpInfoEntry 16 } + +acdSfpInfoInternal OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the SFP supports internal calibration. If + externally calibrated, the measurements are raw A/D values and must + be converted to real world units using calibration constants + stored in EEPROM locations 56 to 95 at 2 wire serial bus address + A2h. Calibration is valid over vendor specified operating + temperature and voltage. Alarm and warning threshold values + should be interpreted in the same manner as real time 16 bit data." + ::= { acdSfpInfoEntry 17 } + +acdSfpInfoAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the SFP supports Alarm and warning + thresholds for the Digital Diagnostics." + ::= { acdSfpInfoEntry 18 } + +acdSfpInfoIdType OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier value specifies the physical device described by + the two-wire interface information. This value shall be included + in the two-wire interface data (see SFF-8472 for details)." + ::= { acdSfpInfoEntry 19 } + +acdSfpInfoExtIdType OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The extended identifier value provides additional information + about the transceiver. The field should be set to 04h for all SFP + modules indicating two-wire interface ID module definition (see + SFF-8472 for details)." + ::= { acdSfpInfoEntry 20 } + +acdSfpInfoTransCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The following bit significant indicators define the electronic + or optical interfaces that are supported by the transceiver. At + least one bit shall be set in this field (see SFF-8472 for details)." + ::= { acdSfpInfoEntry 21 } + +----------------------------------------------------------------------- + -- The Digital Diagnostics SFP table + -- This table contains all SFP Digital Diagnostics. +--------------------------------------------------------------------------- + +acdSfpDiagTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSfpDiagEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all SFP Digital Diagnostics" + ::= { acdSfp 2 } + +acdSfpDiagEntry OBJECT-TYPE + SYNTAX AcdSfpDiagEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a part the content of the SFP's 0xA0 EEPROM" + INDEX { acdSfpDiagID } + ::= { acdSfpDiagTable 1 } + + +AcdSfpDiagEntry ::= SEQUENCE { + acdSfpDiagID Unsigned32, + acdSfpDiagConnIdx Unsigned32, + acdSfpDiagTemp Integer32, + acdSfpDiagVcc Unsigned32, + acdSfpDiagLbc Unsigned32, + acdSfpDiagTxPwr Unsigned32, + acdSfpDiagRxPwr Unsigned32, + acdSfpDiagTxPwrdBm DisplayString, + acdSfpDiagRxPwrdBm DisplayString +} + +acdSfpDiagID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each SFP. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdSfpDiagEntry 1 } + +acdSfpDiagConnIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the connector index on the box. The index + is assigned form left to rigth starting with 1." + ::= { acdSfpDiagEntry 2 } + +acdSfpDiagTemp OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internally measured transceiver temperature. Represented as a + 16 bit signed twos complement value in degrees Celsius, yielding + a total range of -128C to +128C." + ::= { acdSfpDiagEntry 3 } + +acdSfpDiagVcc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Internally measured transceiver supply voltage. Represented as + a 16 bit unsigned integer with the voltage defined as the full + 16 bit value (0 to 65535) with LSB equal to 100 micro-Volt, + yielding a total range of 0 to +6.55 Volts." + ::= { acdSfpDiagEntry 4 } + +acdSfpDiagLbc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured TX bias current in micro-Amps yielding a total range of + 0 to 131 mA." + ::= { acdSfpDiagEntry 5 } + +acdSfpDiagTxPwr OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured TX output power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpDiagEntry 6 } + +acdSfpDiagRxPwr OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Rx input power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpDiagEntry 7 } + +acdSfpDiagTxPwrdBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured TX output power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpDiagEntry 8 } + +acdSfpDiagRxPwrdBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured Rx input power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpDiagEntry 9 } + +----------------------------------------------------------------------- + -- The Alarm and Warning Thresholds SFP table + -- This table contains all SFP Alarm and Warning Thresholds. +--------------------------------------------------------------------------- + +acdSfpThreshTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSfpThreshEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all SFP Alarm and Warning Thresholds" + ::= { acdSfp 3 } + +acdSfpThreshEntry OBJECT-TYPE + SYNTAX AcdSfpThreshEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " This is a part the content of the SFP's 0xA0 EEPROM" + INDEX { acdSfpThreshID } + ::= { acdSfpThreshTable 1 } + + +AcdSfpThreshEntry ::= SEQUENCE { + acdSfpThreshID Unsigned32, + acdSfpThreshConnIdx Unsigned32, + acdSfpThreshTempHighAlm Integer32, + acdSfpThreshTempLowAlm Integer32, + acdSfpThreshTempHighWarn Integer32, + acdSfpThreshTempLowWarn Integer32, + acdSfpThreshVccHighAlm Unsigned32, + acdSfpThreshVccLowAlm Unsigned32, + acdSfpThreshVccHighWarn Unsigned32, + acdSfpThreshVccLowWarn Unsigned32, + acdSfpThreshLbcHighAlm Unsigned32, + acdSfpThreshLbcLowAlm Unsigned32, + acdSfpThreshLbcHighWarn Unsigned32, + acdSfpThreshLbcLowWarn Unsigned32, + acdSfpThreshTxPwrHighAlm Unsigned32, + acdSfpThreshTxPwrLowAlm Unsigned32, + acdSfpThreshTxPwrHighWarn Unsigned32, + acdSfpThreshTxPwrLowWarn Unsigned32, + acdSfpThreshRxPwrHighAlm Unsigned32, + acdSfpThreshRxPwrLowAlm Unsigned32, + acdSfpThreshRxPwrHighWarn Unsigned32, + acdSfpThreshRxPwrLowWarn Unsigned32, + acdSfpThreshTxPwrHighAlmdBm DisplayString, + acdSfpThreshTxPwrLowAlmdBm DisplayString, + acdSfpThreshTxPwrHighWarndBm DisplayString, + acdSfpThreshTxPwrLowWarndBm DisplayString, + acdSfpThreshRxPwrHighAlmdBm DisplayString, + acdSfpThreshRxPwrLowAlmdBm DisplayString, + acdSfpThreshRxPwrHighWarndBm DisplayString, + acdSfpThreshRxPwrLowWarndBm DisplayString + +} + +acdSfpThreshID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each SFP. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdSfpThreshEntry 1 } + +acdSfpThreshConnIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the connector index on the box. The index + is assigned form left to rigth starting with 1." + ::= { acdSfpThreshEntry 2 } + +acdSfpThreshTempHighAlm OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm transceiver temperature. Represented as a 16 bit + signed twos complement value in degrees Celsius, yielding + a total range of -128C to +128C." + ::= { acdSfpThreshEntry 3 } + +acdSfpThreshTempLowAlm OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm transceiver temperature. Represented as a 16 bit + signed twos complement value in degrees Celsius, yielding + a total range of -128C to +128C." + ::= { acdSfpThreshEntry 4 } + +acdSfpThreshTempHighWarn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning transceiver temperature. Represented as a 16 bit + signed twos complement value in degrees Celsius, yielding + a total range of -128C to +128C." + ::= { acdSfpThreshEntry 5 } + +acdSfpThreshTempLowWarn OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning transceiver temperature. Represented as a 16 bit + signed twos complement value in degrees Celsius, yielding + a total range of -128C to +128C." + ::= { acdSfpThreshEntry 6 } + +acdSfpThreshVccHighAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm transceiver supply voltage. Represented as + a 16 bit unsigned integer with the voltage defined as the full + 16 bit value (0 to 65535) with LSB equal to 100 micro-Volt, + yielding a total range of 0 to +6.55 Volts." + ::= { acdSfpThreshEntry 7 } + +acdSfpThreshVccLowAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm transceiver supply voltage. Represented as + a 16 bit unsigned integer with the voltage defined as the full + 16 bit value (0 to 65535) with LSB equal to 100 micro-Volt, + yielding a total range of 0 to +6.55 Volts." + ::= { acdSfpThreshEntry 8 } + +acdSfpThreshVccHighWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning transceiver supply voltage. Represented as + a 16 bit unsigned integer with the voltage defined as the full + 16 bit value (0 to 65535) with LSB equal to 100 micro-Volt, + yielding a total range of 0 to +6.55 Volts." + ::= { acdSfpThreshEntry 9 } + +acdSfpThreshVccLowWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning transceiver supply voltage. Represented as + a 16 bit unsigned integer with the voltage defined as the full + 16 bit value (0 to 65535) with LSB equal to 100 micro-Volt, + yielding a total range of 0 to +6.55 Volts." + ::= { acdSfpThreshEntry 10 } + +acdSfpThreshLbcHighAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm TX bias current in micro-Amps yielding a total range of + 0 to 131 mA." + ::= { acdSfpThreshEntry 11 } + +acdSfpThreshLbcLowAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm TX bias current in micro-Amps yielding a total range of + 0 to 131 mA." + ::= { acdSfpThreshEntry 12 } + +acdSfpThreshLbcHighWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning TX bias current in micro-Amps yielding a total range of + 0 to 131 mA." + ::= { acdSfpThreshEntry 13 } + +acdSfpThreshLbcLowWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning TX bias current in micro-Amps yielding a total range of + 0 to 131 mA." + ::= { acdSfpThreshEntry 14 } + +acdSfpThreshTxPwrHighAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm TX output power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 15 } + +acdSfpThreshTxPwrLowAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm TX output power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 16 } + +acdSfpThreshTxPwrHighWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning TX output power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 17 } + +acdSfpThreshTxPwrLowWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning TX output power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 18 } + +acdSfpThreshRxPwrHighAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm RX input power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 19 } + +acdSfpThreshRxPwrLowAlm OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm RX input power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 20 } + +acdSfpThreshRxPwrHighWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning RX input power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 21 } + +acdSfpThreshRxPwrLowWarn OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning RX input power in mW. Represented as a 16 bit unsigned + integer with the power defined as the full 16 bit value (0 to 65535) + with LSB equal to 0.1 micro-Watt, yielding a total range of 0 + to 6.5535 mW (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 22 } + +acdSfpThreshTxPwrHighAlmdBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm TX output power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 23 } + +acdSfpThreshTxPwrLowAlmdBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm TX output power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 24 } + +acdSfpThreshTxPwrHighWarndBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning TX output power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 25 } + +acdSfpThreshTxPwrLowWarndBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning TX output power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 26 } + +acdSfpThreshRxPwrHighAlmdBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Alarm Rx input power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 27 } + +acdSfpThreshRxPwrLowAlmdBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Alarm Rx input power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 28 } + +acdSfpThreshRxPwrHighWarndBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "High Warning Rx input power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 29 } + +acdSfpThreshRxPwrLowWarndBm OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Low Warning Rx input power in dBm (~ -40 to +8.2 dBm)." + ::= { acdSfpThreshEntry 30 } + +------------------------------------------------------------------------------ + -- The Alarm and Warning Thresholds SFP Status table + -- This table contains all statuses for the SFP Alarm and Warning Thresholds. +------------------------------------------------------------------------------ + +acdSfpThreshStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSfpThreshStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all SFP Digital Diagnostics Thresholds statuses" + ::= { acdSfp 4 } + +acdSfpThreshStatusEntry OBJECT-TYPE + SYNTAX AcdSfpThreshStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a part the content of the SFP's 0xA2 EEPROM" + INDEX { acdSfpThreshStatusID } + ::= { acdSfpThreshStatusTable 1 } + + +AcdSfpThreshStatusEntry ::= SEQUENCE { + acdSfpThreshStatusID Unsigned32, + acdSfpThreshStatusConnIdx Unsigned32, + acdSfpThreshStatusTempHighAlm TruthValue, + acdSfpThreshStatusTempLowAlm TruthValue, + acdSfpThreshStatusTempHighWarn TruthValue, + acdSfpThreshStatusTempLowWarn TruthValue, + acdSfpThreshStatusVccHighAlm TruthValue, + acdSfpThreshStatusVccLowAlm TruthValue, + acdSfpThreshStatusVccHighWarn TruthValue, + acdSfpThreshStatusVccLowWarn TruthValue, + acdSfpThreshStatusLbcHighAlm TruthValue, + acdSfpThreshStatusLbcLowAlm TruthValue, + acdSfpThreshStatusLbcHighWarn TruthValue, + acdSfpThreshStatusLbcLowWarn TruthValue, + acdSfpThreshStatusTxPwrHighAlm TruthValue, + acdSfpThreshStatusTxPwrLowAlm TruthValue, + acdSfpThreshStatusTxPwrHighWarn TruthValue, + acdSfpThreshStatusTxPwrLowWarn TruthValue, + acdSfpThreshStatusRxPwrHighAlm TruthValue, + acdSfpThreshStatusRxPwrLowAlm TruthValue, + acdSfpThreshStatusRxPwrHighWarn TruthValue, + acdSfpThreshStatusRxPwrLowWarn TruthValue +} + +acdSfpThreshStatusID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each SFP. Its value ranges from 1 to + MAXINT (4 bytes). " + ::= { acdSfpThreshStatusEntry 1 } + +acdSfpThreshStatusConnIdx OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the connector index on the box. The index + is assigned form left to rigth starting with 1." + ::= { acdSfpThreshStatusEntry 2 } + +acdSfpThreshStatusTempHighAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the temperature reaches or overpasses the High + alarm threshold." + ::= { acdSfpThreshStatusEntry 3 } + +acdSfpThreshStatusTempLowAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the temperature reaches or underpasses the Low + alarm threshold." + ::= { acdSfpThreshStatusEntry 4 } + +acdSfpThreshStatusTempHighWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the temperature reaches or overpasses the High + warning threshold." + ::= { acdSfpThreshStatusEntry 5 } + +acdSfpThreshStatusTempLowWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the temperature reaches or underpasses the Low + warning threshold." + ::= { acdSfpThreshStatusEntry 6 } + +acdSfpThreshStatusVccHighAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the supply voltage reaches or overpasses the High + alarm threshold." + ::= { acdSfpThreshStatusEntry 7 } + +acdSfpThreshStatusVccLowAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the supply voltage reaches or underpasses the Low + alarm threshold." + ::= { acdSfpThreshStatusEntry 8 } + +acdSfpThreshStatusVccHighWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the supply voltage reaches or overpasses the High + warning threshold." + ::= { acdSfpThreshStatusEntry 9 } + +acdSfpThreshStatusVccLowWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the supply voltage reaches or underpasses the Low + warning threshold." + ::= { acdSfpThreshStatusEntry 10 } + +acdSfpThreshStatusLbcHighAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Laser Bias Current reaches or overpasses + the High alarm threshold." + ::= { acdSfpThreshStatusEntry 11 } + +acdSfpThreshStatusLbcLowAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Laser Bias Current reaches or underpasses + the Low alarm threshold." + ::= { acdSfpThreshStatusEntry 12 } + +acdSfpThreshStatusLbcHighWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Laser Bias Current reaches or overpasses + the High warning threshold." + ::= { acdSfpThreshStatusEntry 13 } + +acdSfpThreshStatusLbcLowWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Laser Bias Current reaches or underpasses + the Low warning threshold." + ::= { acdSfpThreshStatusEntry 14 } + +acdSfpThreshStatusTxPwrHighAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Transmit Power reaches or overpasses the High + alarm threshold." + ::= { acdSfpThreshStatusEntry 15 } + +acdSfpThreshStatusTxPwrLowAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Transmit Power reaches or underpasses the Low + alarm threshold." + ::= { acdSfpThreshStatusEntry 16 } + +acdSfpThreshStatusTxPwrHighWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Transmit Power reaches or overpasses the High + warning threshold." + ::= { acdSfpThreshStatusEntry 17 } + +acdSfpThreshStatusTxPwrLowWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Transmit Power reaches or underpasses the Low + warning threshold." + ::= { acdSfpThreshStatusEntry 18 } + +acdSfpThreshStatusRxPwrHighAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Receive Power reaches or overpasses the High + alarm threshold." + ::= { acdSfpThreshStatusEntry 19 } + +acdSfpThreshStatusRxPwrLowAlm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Receive Power reaches or underpasses the Low + alarm threshold." + ::= { acdSfpThreshStatusEntry 20 } + +acdSfpThreshStatusRxPwrHighWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Receive Power reaches or overpasses the High + warning threshold." + ::= { acdSfpThreshStatusEntry 21 } + +acdSfpThreshStatusRxPwrLowWarn OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is to indicate if the Receive Power reaches or underpasses the Low + warning threshold." + ::= { acdSfpThreshStatusEntry 22 } + +--------------------------------------------------------------------------- + -- ACD-SFP-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdSfpCompliances OBJECT IDENTIFIER ::= { acdSfpConformance 1 } +acdSfpGroups OBJECT IDENTIFIER ::= { acdSfpConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdSfpInfoGroup OBJECT-GROUP + OBJECTS { + acdSfpInfoConnIdx, + acdSfpInfoConnType, + acdSfpInfoVendor, + acdSfpInfoVendorOui, + acdSfpInfoVendorPn, + acdSfpInfoVendorRev, + acdSfpInfoWavelength, + acdSfpInfoSerialNum, + acdSfpInfoYear, + acdSfpInfoMonth, + acdSfpInfoDay, + acdSfpInfoLot, + acdSfpInfoRev8472, + acdSfpInfoPresent, + acdSfpInfoDiag, + acdSfpInfoInternal, + acdSfpInfoAlm, + acdSfpInfoIdType, + acdSfpInfoExtIdType, + acdSfpInfoTransCode + } + STATUS current + DESCRIPTION + "Objects for the SFP information Group." + ::= { acdSfpGroups 1 } + +acdSfpDiagGroup OBJECT-GROUP + OBJECTS { + acdSfpDiagConnIdx, + acdSfpDiagTemp, + acdSfpDiagVcc, + acdSfpDiagLbc, + acdSfpDiagTxPwr, + acdSfpDiagRxPwr, + acdSfpDiagTxPwrdBm, + acdSfpDiagRxPwrdBm + } + STATUS current + DESCRIPTION + "Objects for the SFP diagnostics Group." + ::= { acdSfpGroups 2 } + +acdSfpThreshGroup OBJECT-GROUP + OBJECTS { + acdSfpThreshConnIdx, + acdSfpThreshTempHighAlm, + acdSfpThreshTempLowAlm, + acdSfpThreshTempHighWarn, + acdSfpThreshTempLowWarn, + acdSfpThreshVccHighAlm, + acdSfpThreshVccLowAlm, + acdSfpThreshVccHighWarn, + acdSfpThreshVccLowWarn, + acdSfpThreshLbcHighAlm, + acdSfpThreshLbcLowAlm, + acdSfpThreshLbcHighWarn, + acdSfpThreshLbcLowWarn, + acdSfpThreshTxPwrHighAlm, + acdSfpThreshTxPwrLowAlm, + acdSfpThreshTxPwrHighWarn, + acdSfpThreshTxPwrLowWarn, + acdSfpThreshRxPwrHighAlm, + acdSfpThreshRxPwrLowAlm, + acdSfpThreshRxPwrHighWarn, + acdSfpThreshRxPwrLowWarn, + acdSfpThreshTxPwrHighAlmdBm, + acdSfpThreshTxPwrLowAlmdBm, + acdSfpThreshTxPwrHighWarndBm, + acdSfpThreshTxPwrLowWarndBm, + acdSfpThreshRxPwrHighAlmdBm, + acdSfpThreshRxPwrLowAlmdBm, + acdSfpThreshRxPwrHighWarndBm, + acdSfpThreshRxPwrLowWarndBm + } + STATUS current + DESCRIPTION + "Objects for the SFP thresholds Group." + ::= { acdSfpGroups 3 } + +acdSfpThreshStatusGroup OBJECT-GROUP + OBJECTS { + acdSfpThreshStatusConnIdx, + acdSfpThreshStatusTempHighAlm, + acdSfpThreshStatusTempLowAlm, + acdSfpThreshStatusTempHighWarn, + acdSfpThreshStatusTempLowWarn, + acdSfpThreshStatusVccHighAlm, + acdSfpThreshStatusVccLowAlm, + acdSfpThreshStatusVccHighWarn, + acdSfpThreshStatusVccLowWarn, + acdSfpThreshStatusLbcHighAlm, + acdSfpThreshStatusLbcLowAlm, + acdSfpThreshStatusLbcHighWarn, + acdSfpThreshStatusLbcLowWarn, + acdSfpThreshStatusTxPwrHighAlm, + acdSfpThreshStatusTxPwrLowAlm, + acdSfpThreshStatusTxPwrHighWarn, + acdSfpThreshStatusTxPwrLowWarn, + acdSfpThreshStatusRxPwrHighAlm, + acdSfpThreshStatusRxPwrLowAlm, + acdSfpThreshStatusRxPwrHighWarn, + acdSfpThreshStatusRxPwrLowWarn + } + STATUS current + DESCRIPTION + "Objects for the SFP threshold status Group." + ::= { acdSfpGroups 4 } + +acdSfpCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-SFP-MIB module." + MODULE + MANDATORY-GROUPS { + acdSfpInfoGroup, + acdSfpDiagGroup, + acdSfpThreshGroup, + acdSfpThreshStatusGroup + } + + ::= { acdSfpCompliances 1 } + +END diff --git a/mibs/accedian/ACD-SHAPER-MIB b/mibs/accedian/ACD-SHAPER-MIB new file mode 100644 index 0000000..645294b --- /dev/null +++ b/mibs/accedian/ACD-SHAPER-MIB @@ -0,0 +1,278 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2009, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-SHAPER-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, Gauge32, Counter64 + FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + + acdMibs + FROM ACCEDIAN-SMI; + +acdShaper MODULE-IDENTITY + + LAST-UPDATED "200911010100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 4878 Levy, suite 202 + Saint-Laurent, Quebec Canada H4R 2P1 + E-mail: support@accedian.com" + DESCRIPTION + "." + + REVISION "200911010100Z" -- 1 Nov 2009 + DESCRIPTION + "Initial version of MIB module ACD-SHAPER-MIB." + + ::= { acdMibs 10 } + +acdShaper1 OBJECT IDENTIFIER ::= { acdShaper 1 } +acdShaper1MIBObjects OBJECT IDENTIFIER ::= { acdShaper1 1 } +acdShaper1Conformance OBJECT IDENTIFIER ::= { acdShaper1 2 } + +acdShaper1Config OBJECT IDENTIFIER ::= { acdShaper1MIBObjects 1 } +acdShaper1Stats OBJECT IDENTIFIER ::= { acdShaper1MIBObjects 2 } + +--------------------------------------------------------------------------- + -- The Shaper Code Point statistics table + -- This table contains all Code Point statistics. +--------------------------------------------------------------------------- + +acdShaper1CodePointStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdShaper1CodePointStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains statistics for all Code Point in the system. + Each Code Point are define by tuple PCP, color, incoming port + and outgoing port." + ::= { acdShaper1Stats 1 } + +acdShaper1CodePointStatsEntry OBJECT-TYPE + SYNTAX AcdShaper1CodePointStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "." + INDEX { acdShaper1CodePointStatsDstID, acdShaper1CodePointStatsSrcID, + acdShaper1CodePointStatsColorID, acdShaper1CodePointStatsPcpID } + ::= { acdShaper1CodePointStatsTable 1 } + +AcdShaper1CodePointStatsEntry ::= SEQUENCE { + acdShaper1CodePointStatsDstID Unsigned32, + acdShaper1CodePointStatsSrcID Unsigned32, + acdShaper1CodePointStatsColorID INTEGER, + acdShaper1CodePointStatsPcpID Unsigned32, + acdShaper1CodePointStatsFwdOctets Counter64, + acdShaper1CodePointStatsFwdPkts Counter64, + acdShaper1CodePointStatsFwdRate Gauge32, + acdShaper1CodePointStatsDelayedOctets Counter64, + acdShaper1CodePointStatsDelayedPkts Counter64, + acdShaper1CodePointStatsDelayedRate Gauge32, + acdShaper1CodePointStatsOverflowOctets Counter64, + acdShaper1CodePointStatsOverflowPkts Counter64, + acdShaper1CodePointStatsOverflowRate Gauge32, + acdShaper1CodePointStatsQMgmtDropOctets Counter64, + acdShaper1CodePointStatsQMgmtDropPkts Counter64, + acdShaper1CodePointStatsQMgmtDropRate Gauge32 +} + +acdShaper1CodePointStatsDstID OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Destination port ID." + ::= { acdShaper1CodePointStatsEntry 1 } + +acdShaper1CodePointStatsSrcID OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Source port ID." + ::= { acdShaper1CodePointStatsEntry 2 } + +acdShaper1CodePointStatsColorID OBJECT-TYPE + SYNTAX INTEGER { + green(1), + yellow(2) + } + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Color value." + ::= { acdShaper1CodePointStatsEntry 3 } + +acdShaper1CodePointStatsPcpID OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "PCP value." + ::= { acdShaper1CodePointStatsEntry 4 } + +acdShaper1CodePointStatsFwdOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of octets forwarded without delay." + ::= { acdShaper1CodePointStatsEntry 5 } + +acdShaper1CodePointStatsFwdPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets forwarded without delay." + ::= { acdShaper1CodePointStatsEntry 6 } + +acdShaper1CodePointStatsFwdRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit rate in Mbps forwarded without delay." + ::= { acdShaper1CodePointStatsEntry 7 } + +acdShaper1CodePointStatsDelayedOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of octets enqueued." + ::= { acdShaper1CodePointStatsEntry 8 } + +acdShaper1CodePointStatsDelayedPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets enqueued." + ::= { acdShaper1CodePointStatsEntry 9 } + +acdShaper1CodePointStatsDelayedRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit rate in Mbps enqueued." + ::= { acdShaper1CodePointStatsEntry 10 } + +acdShaper1CodePointStatsOverflowOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of octets dropped due to the queue overflow." + ::= { acdShaper1CodePointStatsEntry 11 } + +acdShaper1CodePointStatsOverflowPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets dropped due to the queue overflow." + ::= { acdShaper1CodePointStatsEntry 12 } + +acdShaper1CodePointStatsOverflowRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit rate in Mbps dropped due to the queue overflow." + ::= { acdShaper1CodePointStatsEntry 13 } + +acdShaper1CodePointStatsQMgmtDropOctets OBJECT-TYPE + SYNTAX Counter64 + UNITS "Octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of octets dropped by the queue management algorithm." + ::= { acdShaper1CodePointStatsEntry 14 } + +acdShaper1CodePointStatsQMgmtDropPkts OBJECT-TYPE + SYNTAX Counter64 + UNITS "Packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets dropped by the queue management algorithm." + ::= { acdShaper1CodePointStatsEntry 15 } + +acdShaper1CodePointStatsQMgmtDropRate OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Mbps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bit rate in Mbps dropped by the queue management algorithm." + ::= { acdShaper1CodePointStatsEntry 16 } + +--------------------------------------------------------------------------- + -- ACD-SMAP-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdShaper1Compliances OBJECT IDENTIFIER ::= { acdShaper1Conformance 1 } +acdShaper1Groups OBJECT IDENTIFIER ::= { acdShaper1Conformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdShaper1CodePointStatsGroup OBJECT-GROUP + OBJECTS { + acdShaper1CodePointStatsFwdOctets, + acdShaper1CodePointStatsFwdPkts, + acdShaper1CodePointStatsFwdRate, + acdShaper1CodePointStatsDelayedOctets, + acdShaper1CodePointStatsDelayedPkts, + acdShaper1CodePointStatsDelayedRate, + acdShaper1CodePointStatsOverflowOctets, + acdShaper1CodePointStatsOverflowPkts, + acdShaper1CodePointStatsOverflowRate, + acdShaper1CodePointStatsQMgmtDropOctets, + acdShaper1CodePointStatsQMgmtDropPkts, + acdShaper1CodePointStatsQMgmtDropRate + } + STATUS current + DESCRIPTION + "." + ::= { acdShaper1Groups 1 } + +acdShaper1Compliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-SHAPER-MIB module." + MODULE + MANDATORY-GROUPS { + acdShaper1CodePointStatsGroup + } + + ::= { acdShaper1Compliances 1 } + +END diff --git a/mibs/accedian/ACD-SMAP-MIB b/mibs/accedian/ACD-SMAP-MIB new file mode 100644 index 0000000..0f8d38d --- /dev/null +++ b/mibs/accedian/ACD-SMAP-MIB @@ -0,0 +1,606 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2008, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-SMAP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32 + FROM SNMPv2-SMI + DisplayString, TruthValue, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + + acdMibs + FROM ACCEDIAN-SMI; + +acdSmap MODULE-IDENTITY + + LAST-UPDATED "201305110100Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Service mapping database for this Accedian Networks device." + + REVISION "201305110100Z" -- 11 April 2013 + DESCRIPTION + "Add port cos mapping tables." + + REVISION "200810010100Z" -- 1 October 2008 + DESCRIPTION + "Definition revision." + + REVISION "200806150100Z" -- 15 June 2008 + DESCRIPTION + "Initial version of MIB module ACD-SMAP-MIB." + + ::= { acdMibs 8 } + +acdSmapNotifications OBJECT IDENTIFIER ::= { acdSmap 0 } +acdSmapMIBObjects OBJECT IDENTIFIER ::= { acdSmap 1 } +acdSmapConformance OBJECT IDENTIFIER ::= { acdSmap 2 } + +acdSmapConfig OBJECT IDENTIFIER ::= { acdSmapMIBObjects 1 } + +--------------------------------------------------------------------------- + -- The CoS Profile configuration table + -- This table contains all CoS Profile entry configurations. +--------------------------------------------------------------------------- + +acdSmapCoSProfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapCoSProfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The CoS profile table. Each row in the table represents a CoS Profile. + A CoS profile is used to map an input packet to an L2 class of service. + This traffic mapping (classification) is accomplished using one of + the following fields in the incoming packet: + + p-bits in 802.1Q / 802.1Q-in-Q tags + IP precedence bits in IPv4 TOS byte + DSCP bits in IPv4 DSCP byte + + The class of service value (0-7) assigned to the outgoing traffic is + selected based on the conformance level (Green/Yellow) of the incoming + traffic. The following sections describe the general configuration + parameters and the mapping table of a CoS profile." + ::= { acdSmapConfig 1 } + +acdSmapCoSProfEntry OBJECT-TYPE + SYNTAX AcdSmapCoSProfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a CoS profile." + INDEX { acdSmapCoSProfID } + ::= { acdSmapCoSProfTable 1 } + +AcdSmapCoSProfEntry ::= SEQUENCE { + acdSmapCoSProfID Unsigned32, + acdSmapCoSProfRowStatus RowStatus, + acdSmapCoSProfName DisplayString, + acdSmapCoSProfType INTEGER, + acdSmapCoSProfDecodeDropBit TruthValue, + acdSmapCoSProfEncodeDropBit TruthValue +} + +acdSmapCoSProfID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each CoS Profile instance." + ::= { acdSmapCoSProfEntry 1 } + +acdSmapCoSProfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new CoS Profile you shall provide the a unique name and the + type for an empty row with the RowStatus set to Create and Go. To + delete the CoS Profile you need to set the RowStatus to destroy." + ::= { acdSmapCoSProfEntry 2 } + +acdSmapCoSProfName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to uniquely identify the CoS profile." + ::= { acdSmapCoSProfEntry 3 } + +acdSmapCoSProfType OBJECT-TYPE + SYNTAX INTEGER { + pcp(1), + dscp(2), + pre(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates the type of CoS profile. Possible values are: PCP, IP + precedence or DSCP." + ::= { acdSmapCoSProfEntry 4 } + +acdSmapCoSProfDecodeDropBit OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This field is only valid for PCP CoS profiles. If this field is set, + the pre-marking color is decoded from the DEI bit (Drop Eligible + Indication). Otherwise, the user defined pre-color is used." + DEFVAL { false } + ::= { acdSmapCoSProfEntry 5 } + +acdSmapCoSProfEncodeDropBit OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This field controls the DEI bit in an S-VLAN tag. If this field is set + and the outgoing packet is marked yellow then the DEI bit is set to 1. + Otherwise, the DEI is set to 0." + DEFVAL { false } + ::= { acdSmapCoSProfEntry 6 } + +--------------------------------------------------------------------------- + -- The CoS Profile Code Point configuration table + -- This table contains all Code Point for a CoS profile entry. +--------------------------------------------------------------------------- + +acdSmapCoSProfCodePointTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapCoSProfCodePointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Configuration table of all code point entries. Each row in the + table represents a Code point. the number of code points depend of the + acdSmapCoSProfType value. + + p-bits in 802.1Q / 802.1Q-in-Q tags + IP precedence bits in IPv4 TOS byte + DSCP bits in IPv4 DSCP byte + + The class of service value (0-7) assigned to the outgoing traffic is + selected based on the conformance level (Green/Yellow) of the incoming + traffic." + ::= { acdSmapConfig 2 } + +acdSmapCoSProfCodePointEntry OBJECT-TYPE + SYNTAX AcdSmapCoSProfCodePointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings for a code point." + INDEX { acdSmapCoSProfID, acdSmapCoSProfCodePointID } + ::= { acdSmapCoSProfCodePointTable 1 } + +AcdSmapCoSProfCodePointEntry ::= SEQUENCE { + acdSmapCoSProfCodePointID Unsigned32, + acdSmapCoSProfCodePointPreMarkingColor INTEGER, + acdSmapCoSProfCodePointGreenOut Unsigned32, + acdSmapCoSProfCodePointYellowOut Unsigned32 +} + +acdSmapCoSProfCodePointID OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each row. Base on Code Point, 0 to 63 for DSCP or 0 + to 7 for PCP or IP precedence." + ::= { acdSmapCoSProfCodePointEntry 1 } + +acdSmapCoSProfCodePointPreMarkingColor OBJECT-TYPE + SYNTAX INTEGER { + green(1), + yellow(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This is the user pre-color to mark the incoming traffic. This field + is only valid if acdSmapCoSProfDecodeDropBit is not set." + DEFVAL { green } + ::= { acdSmapCoSProfCodePointEntry 2 } + +acdSmapCoSProfCodePointGreenOut OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The class of service value that will be used in the outgoing green + packets. This value is selected if the result of the bandwidth + regulator assigned to this entry is green or if the pre-marking + color is green and no bandwidth regulator is assigned to this entry." + DEFVAL { 0 } + ::= { acdSmapCoSProfCodePointEntry 3 } + +acdSmapCoSProfCodePointYellowOut OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The class of service value that will be used in the outgoing yellow + packets. This value is selected if the result of the bandwidth + regulator assigned to this entry is yellow or if the pre-marking + color is yellow and no bandwidth regulator is assigned to this entry." + DEFVAL { 0 } + ::= { acdSmapCoSProfCodePointEntry 4 } + +--------------------------------------------------------------------------- + -- The Regulator Set configuration table + -- This table contains all Regulator Set entry configurations. +--------------------------------------------------------------------------- + +acdSmapRegSetTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapRegSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Regulator Set profile table. Each row in the table represents a + Regulator Set. A bandwidth regulator set allows the user to regulate + traffic based on the following information: + + p-bits in 802.1Q / 802.1Q-in-Q tags + IP precedence bits in IPv4 TOS byte + DSCP bits in IPv4 DSCP byte. + " + ::= { acdSmapConfig 3 } + +acdSmapRegSetEntry OBJECT-TYPE + SYNTAX AcdSmapRegSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings to manage a Regulator set." + INDEX { acdSmapRegSetID } + ::= { acdSmapRegSetTable 1 } + +AcdSmapRegSetEntry ::= SEQUENCE { + acdSmapRegSetID Unsigned32, + acdSmapRegSetRowStatus RowStatus, + acdSmapRegSetName DisplayString, + acdSmapRegSetType INTEGER +} + +acdSmapRegSetID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each Regulator set instance." + ::= { acdSmapRegSetEntry 1 } + +acdSmapRegSetRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "All columns must have a valid value before a row can be activated. To + create a new Regulator set you shall provide the a unique name and the + type for an empty row with the RowStatus set to Create and Go. To + delete the CoS Profile you need to set the RowStatus to destroy." + ::= { acdSmapRegSetEntry 2 } + +acdSmapRegSetName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..31)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is a string to uniquely identify the Regulator set." + ::= { acdSmapRegSetEntry 3 } + +acdSmapRegSetType OBJECT-TYPE + SYNTAX INTEGER { + pcp(1), + dscp(2), + pre(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates the type of Regulator Set. Possible values are: PCP, IP + precedence or DSCP." + ::= { acdSmapRegSetEntry 4 } + +--------------------------------------------------------------------------- + -- The Regulator Set Code Point configuration table + -- This table contains all Code Point for a Regulator set profile entry. +--------------------------------------------------------------------------- + +acdSmapRegSetCodePointTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapRegSetCodePointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Configuration table of all code point entries. Each row in the + table represents a Code point. the number of code points depend of the + acdSmapCoSProfType value. + + p-bits in 802.1Q / 802.1Q-in-Q tags; + IP precedence bits in IPv4 TOS byte; + DSCP bits in IPv4 DSCP byte. + " + ::= { acdSmapConfig 4 } + +acdSmapRegSetCodePointEntry OBJECT-TYPE + SYNTAX AcdSmapRegSetCodePointEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings for a code point." + INDEX { acdSmapRegSetID, acdSmapRegSetCodePointID } + ::= { acdSmapRegSetCodePointTable 1 } + +AcdSmapRegSetCodePointEntry ::= SEQUENCE { + acdSmapRegSetCodePointID Unsigned32, + acdSmapRegSetCodePointRegulatorID Unsigned32, + acdSmapRegSetCodePointRegulatorEnable TruthValue +} + +acdSmapRegSetCodePointID OBJECT-TYPE + SYNTAX Unsigned32 (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each row. Base on Code Point, 0 to 64 for DSCP or 0 + to 7 for PCP or IP precedence." + ::= { acdSmapRegSetCodePointEntry 1 } + + +acdSmapRegSetCodePointRegulatorID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bandwidth regulator that will be used to regulate the traffic flow + that has this PCP/IP precendence/DSCP value. Refer to acdRegulatorTable + to find the exact identifier (same as acdRegulatorID)." + DEFVAL { 0 } + ::= { acdSmapRegSetCodePointEntry 2 } + +acdSmapRegSetCodePointRegulatorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable traffic regulation for this PCP, IP precedence or + DSCP value." + DEFVAL { false } + ::= { acdSmapRegSetCodePointEntry 3 } + +--------------------------------------------------------------------------- + -- The Port CoS to encode DEI enable configuration table +--------------------------------------------------------------------------- + +acdSmapPortCoSEncodeDeiTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapPortCoSEncodeDeiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TBD" + ::= { acdSmapConfig 5 } + +acdSmapPortCoSEncodeDeiEntry OBJECT-TYPE + SYNTAX AcdSmapPortCoSEncodeDeiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings for a code point." + INDEX { acdSmapPortCoSPortID } + ::= { acdSmapPortCoSEncodeDeiTable 1 } + +AcdSmapPortCoSEncodeDeiEntry ::= SEQUENCE { + acdSmapPortCoSPortID Unsigned32, + acdSmapPortCoSEncodeDeiEnable INTEGER +} + +acdSmapPortCoSPortID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique value for each row. Based on port number." + ::= { acdSmapPortCoSEncodeDeiEntry 1 } + +acdSmapPortCoSEncodeDeiEnable OBJECT-TYPE + SYNTAX INTEGER { + enable(0), + disable(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Entry to enable/disable encode DEI on a port." + ::= { acdSmapPortCoSEncodeDeiEntry 2 } + +--------------------------------------------------------------------------- + -- The Port CoS to Pcp mapping configuration table + -- This table contains all Code Point for a CoS profile entry. +--------------------------------------------------------------------------- + +acdSmapPortCoSMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdSmapPortCoSMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "TBD" + ::= { acdSmapConfig 6 } + +acdSmapPortCoSMapEntry OBJECT-TYPE + SYNTAX AcdSmapPortCoSMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry consisting of all settings for a code point." + INDEX { acdSmapPortCoSPortID, acdSmapPortCoSMapID } + ::= { acdSmapPortCoSMapTable 1 } + +AcdSmapPortCoSMapEntry ::= SEQUENCE { + acdSmapPortCoSMapID Unsigned32, + acdSmapPortCoSMapCosIn Unsigned32, + acdSmapPortCoSMapGreenOut Unsigned32, + acdSmapPortCoSMapYellowOut Unsigned32 +} + +acdSmapPortCoSMapID OBJECT-TYPE + SYNTAX Unsigned32 (1..8) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value based on CoS value." + ::= { acdSmapPortCoSMapEntry 1 } + +acdSmapPortCoSMapCosIn OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CoS value for this entry." + ::= { acdSmapPortCoSMapEntry 2 } + +acdSmapPortCoSMapGreenOut OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Priority code Point value that will be used in the outgoing green + packets. This value is selected if the result of the bandwidth + regulator assigned to this entry is green or if the pre-marking + color is green and no bandwidth regulator is assigned to this entry." + ::= { acdSmapPortCoSMapEntry 3 } + +acdSmapPortCoSMapYellowOut OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Priority code Point value that will be used in the outgoing yellow + packets. This value is selected if the result of the bandwidth + regulator assigned to this entry is yellow or if the pre-marking + color is yellow and no bandwidth regulator is assigned to this entry." + ::= { acdSmapPortCoSMapEntry 4 } + +--------------------------------------------------------------------------- + -- ACD-SMAP-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdSmapCompliances OBJECT IDENTIFIER ::= { acdSmapConformance 1 } +acdSmapGroups OBJECT IDENTIFIER ::= { acdSmapConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdSmapCoSProfGroup OBJECT-GROUP + OBJECTS { + acdSmapCoSProfRowStatus, + acdSmapCoSProfName, + acdSmapCoSProfType, + acdSmapCoSProfDecodeDropBit, + acdSmapCoSProfEncodeDropBit + } + STATUS current + DESCRIPTION + "Objects for the CoS profile Group." + ::= { acdSmapGroups 1 } + +acdSmapCoSProfCodePointGroup OBJECT-GROUP + OBJECTS { + acdSmapCoSProfCodePointPreMarkingColor, + acdSmapCoSProfCodePointGreenOut, + acdSmapCoSProfCodePointYellowOut + } + STATUS current + DESCRIPTION + "Objects for the CoS profile CodePoint Group." + ::= { acdSmapGroups 2 } + +acdSmapRegSetGroup OBJECT-GROUP + OBJECTS { + acdSmapRegSetRowStatus, + acdSmapRegSetName, + acdSmapRegSetType + } + STATUS current + DESCRIPTION + "Objects for the Regulator Set Group." + ::= { acdSmapGroups 3 } + +acdSmapRegSetCodePointGroup OBJECT-GROUP + OBJECTS { + acdSmapRegSetCodePointRegulatorID, + acdSmapRegSetCodePointRegulatorEnable + } + STATUS current + DESCRIPTION + "Objects for the Regulator Set CodePoint Group." + ::= { acdSmapGroups 4 } + +acdSmapPortCoSEncodeDeiGroup OBJECT-GROUP + OBJECTS { + acdSmapPortCoSEncodeDeiEnable + } + STATUS current + DESCRIPTION + "Objects for the Port CoS Map DIE enable Group." + ::= { acdSmapGroups 5 } + +acdSmapPortCoSMapGroup OBJECT-GROUP + OBJECTS { + acdSmapPortCoSMapCosIn, + acdSmapPortCoSMapGreenOut, + acdSmapPortCoSMapYellowOut + } + STATUS current + DESCRIPTION + "Objects for the CoS profile CodePoint Group." + ::= { acdSmapGroups 6 } + + +acdSmapCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-SMAP-MIB module." + MODULE + MANDATORY-GROUPS { + acdSmapCoSProfGroup, + acdSmapCoSProfCodePointGroup, + acdSmapRegSetGroup, + acdSmapRegSetCodePointGroup, + acdSmapPortCoSEncodeDeiGroup, + acdSmapPortCoSMapGroup + } + + + OBJECT acdSmapCoSProfRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + OBJECT acdSmapRegSetRowStatus + SYNTAX RowStatus { active(1) } + WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) } + DESCRIPTION "Support for createAndWait is not required." + + ::= { acdSmapCompliances 1 } + +END diff --git a/mibs/accedian/ACD-TID-MIB b/mibs/accedian/ACD-TID-MIB new file mode 100644 index 0000000..e04ef93 --- /dev/null +++ b/mibs/accedian/ACD-TID-MIB @@ -0,0 +1,272 @@ +-- +-- Accedian Enterprise Specific MIB +-- +-- Copyright (c) 2005-2012, Accedian Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +ACD-TID-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, + NOTIFICATION-GROUP + FROM SNMPv2-CONF + + acdMibs + FROM ACCEDIAN-SMI; + +acdTid MODULE-IDENTITY + + LAST-UPDATED "201211052200Z" + ORGANIZATION "Accedian Networks, Inc." + CONTACT-INFO + "Accedian Technical Assistance Center + Accedian Networks, Inc. + 2351 Alfred-Nobel blvd., Suite N-410 + Saint-Laurent, Quebec Canada H4S 2A9 + E-mail: support@accedian.com" + DESCRIPTION + "The Transaction ID database for this Accedian Networks device." + + REVISION "201211052200Z" -- 05 November 2012 + DESCRIPTION + "Add global configuration change notification." + + REVISION "201111110100Z" -- 11 November 2011 + DESCRIPTION + "Initial version of MIB module ACD-TID-MIB." + + ::= { acdMibs 14 } + +acdTidNotifications OBJECT IDENTIFIER ::= { acdTid 0 } +acdTidMIBObjects OBJECT IDENTIFIER ::= { acdTid 1 } +acdTidConformance OBJECT IDENTIFIER ::= { acdTid 2 } + +acdTidGeneral OBJECT IDENTIFIER ::= { acdTidMIBObjects 1 } +acdTidInfo OBJECT IDENTIFIER ::= { acdTidMIBObjects 2 } +acdTidGlobalCfg OBJECT IDENTIFIER ::= { acdTidMIBObjects 3 } + +--------------------------------------------------------------------------- +-- Textual conventions +--------------------------------------------------------------------------- + +AcdTidType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Indicate if the object is covers by the acdTidCfgLastChangeTid or + or by the acdTidStatusLastChangeTid transaction identifier." + SYNTAX INTEGER { + configuration(1), + status(2) + } + +--------------------------------------------------------------------------- + -- Transaction Identifier General onfiguration + -- +--------------------------------------------------------------------------- + +acdTidCfgLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of a configuration + object. If this value is different since the last read this is + indicate a change." + ::= { acdTidGeneral 1 } + +acdTidStatusLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of a status object. + If this value is different since the last read this is indicate + a change." + ::= { acdTidGeneral 2 } + +--------------------------------------------------------------------------- + -- Table of all object covers by Transaction Identifier feature. + --------------------------------------------------------------------------- + +acdTidInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF AcdTidInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of all object covers by Transaction Identifier feature." + ::= { acdTidInfo 1 } + +acdTidInfoEntry OBJECT-TYPE + SYNTAX AcdTidInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains information applicble to a specific object." + INDEX { acdTidInfoIndex } + ::= { acdTidInfoTable 1 } + +AcdTidInfoEntry ::= SEQUENCE { + acdTidInfoIndex Unsigned32, + acdTidInfoOID OBJECT IDENTIFIER, + acdTidInfoType AcdTidType, + acdTidInfoDescr DisplayString, + acdTidInfoLastChangeTid Unsigned32 +} + +acdTidInfoIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each entry." + ::= { acdTidInfoEntry 1 } + +acdTidInfoOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the OID covers by this transaction + Identifier." + ::= { acdTidInfoEntry 2 } + +acdTidInfoType OBJECT-TYPE + SYNTAX AcdTidType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate if the object is covers by the acdTidCfgLastChangeTid or + or by the acdTidStatusLastChangeTid transaction identifier." + ::= { acdTidInfoEntry 3 } + +acdTidInfoDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the object point by acdTidInfoOID." + ::= { acdTidInfoEntry 4 } + +acdTidInfoLastChangeTid OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the transaction ID of the last change of a the object + point by acdTidInfoOID. If this value is different since the + last read this is indicate a change." + ::= { acdTidInfoEntry 5 } + +--------------------------------------------------------------------------- + -- Transaction Identifier Global Configuration change + -- +--------------------------------------------------------------------------- + +acdTidglobalCfgChangeCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the number of times a configuration change was detected. + There may be more than one change per detected event." + ::= { acdTidGlobalCfg 2 } + + +-- *********************************************************** +-- ACD-TID-MIB Module - N O T I F I C A T I O N S +-- *********************************************************** +acdTidNotificationPrefix OBJECT IDENTIFIER ::= { acdTidNotifications 0 } + +acdTidGlobalCfgChange NOTIFICATION-TYPE + OBJECTS { + acdTidglobalCfgChangeCount + } + STATUS current + DESCRIPTION + "A Configuration Change notification is sent when the system + has detected that a monitored configuration item has changed + + Note that transmission of acdTidConfigChange notifications + are throttled by the agent and by the system. The count given + in actTidCfgChangeCount represent the number of times a change + was detected by the system. Timing in the agent may skip some + changes as it is desired not to flood the network with configuration + changes." + ::= { acdTidNotificationPrefix 1 } + +--------------------------------------------------------------------------- + -- ACD-TID-MIB Module - Conformance Information +--------------------------------------------------------------------------- + +acdTidCompliances OBJECT IDENTIFIER ::= { acdTidConformance 1 } +acdTidGroups OBJECT IDENTIFIER ::= { acdTidConformance 2 } + +--------------------------------------------------------------------------- + -- Units of conformance +--------------------------------------------------------------------------- + +acdTidGeneralGroup OBJECT-GROUP + OBJECTS { + acdTidCfgLastChangeTid, + acdTidStatusLastChangeTid + } + STATUS current + DESCRIPTION + "List of scalars to monitior changes in supported object." + ::= { acdTidGroups 1 } + +acdTidTableGroup OBJECT-GROUP + OBJECTS { + acdTidInfoOID, + acdTidInfoType, + acdTidInfoDescr, + acdTidInfoLastChangeTid + } + STATUS current + DESCRIPTION + "Group for the acdTidTable." + ::= { acdTidGroups 2 } + +acdTidGlobalCfgGroup OBJECT-GROUP + OBJECTS { + acdTidglobalCfgChangeCount + } + STATUS current + DESCRIPTION + "Group for the acdTidGlobalCfgChange." + ::= { acdTidGroups 3 } + +acdTidNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { + acdTidGlobalCfgChange + } + STATUS current + DESCRIPTION + "Group for the acdTidGlobalConfig." + ::= { acdTidGroups 4 } + +acdTidCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for support of the ACD-TID-MIB module." + MODULE + MANDATORY-GROUPS { + acdTidGeneralGroup, + acdTidTableGroup, + acdTidGlobalCfgGroup, + acdTidNotificationsGroup + } + + ::= { acdTidCompliances 1 } + +END diff --git a/snmp-parse.py b/snmp-parse.py new file mode 100644 index 0000000..9c834dd --- /dev/null +++ b/snmp-parse.py @@ -0,0 +1,1417 @@ +#!/usr/bin/env python3 +""" +SNMP Walk Parser with Full MIB-Aware OID Resolution + +Parses an snmpwalk output file (net-snmp -On -OQ format) from an +Accedian GT NID and resolves numeric OIDs to human-readable names +using downloaded Accedian MIB files + built-in standard MIB mappings. + +Outputs: + - {base}_resolved.json : Full structured output grouped by MIB module + - {base}_monitoring.json : Monitoring-focused subset (SFP optics, alarms, ports, system) + - {base}_tables.csv : Reconstructed SNMP tables as flat CSV with named columns + +Usage: + python3 snmp-parse.py [walk_file] + +If no walk_file is given, defaults to the walk in this directory. +""" + +import json +import re +import sys +import csv +from pathlib import Path +from collections import defaultdict, OrderedDict + +# ──────────────────────────────────────────────────────────────────────── +# CONFIG +# ──────────────────────────────────────────────────────────────────────── + +SCRIPT_DIR = Path(__file__).resolve().parent +WALKS_DIR = SCRIPT_DIR / "walks" +DEFAULT_WALK = WALKS_DIR / "10-13-60-102_2026-02-27_11-23-07_walk.txt" +MIB_DIR = SCRIPT_DIR / "mibs" / "accedian" + +# ──────────────────────────────────────────────────────────────────────── +# STANDARD MIB NAME MAP (RFC 1213, IF-MIB, SNMPv2-MIB, etc.) +# Covers the ~18% of OIDs under .1.3.6.1.2.1 and .1.3.6.1.6 +# ──────────────────────────────────────────────────────────────────────── + +STANDARD_OID_MAP = { + # ── SNMPv2-MIB / RFC 1213: System group ── + ".1.3.6.1.2.1.1.1": "sysDescr", + ".1.3.6.1.2.1.1.2": "sysObjectID", + ".1.3.6.1.2.1.1.3": "sysUpTime", + ".1.3.6.1.2.1.1.4": "sysContact", + ".1.3.6.1.2.1.1.5": "sysName", + ".1.3.6.1.2.1.1.6": "sysLocation", + ".1.3.6.1.2.1.1.7": "sysServices", + ".1.3.6.1.2.1.1.8": "sysORLastChange", + ".1.3.6.1.2.1.1.9": "sysORTable", + ".1.3.6.1.2.1.1.9.1.1": "sysORIndex", + ".1.3.6.1.2.1.1.9.1.2": "sysORID", + ".1.3.6.1.2.1.1.9.1.3": "sysORDescr", + ".1.3.6.1.2.1.1.9.1.4": "sysORUpTime", + + # ── IF-MIB: Interfaces group ── + ".1.3.6.1.2.1.2.1": "ifNumber", + ".1.3.6.1.2.1.2.2": "ifTable", + ".1.3.6.1.2.1.2.2.1.1": "ifIndex", + ".1.3.6.1.2.1.2.2.1.2": "ifDescr", + ".1.3.6.1.2.1.2.2.1.3": "ifType", + ".1.3.6.1.2.1.2.2.1.4": "ifMtu", + ".1.3.6.1.2.1.2.2.1.5": "ifSpeed", + ".1.3.6.1.2.1.2.2.1.6": "ifPhysAddress", + ".1.3.6.1.2.1.2.2.1.7": "ifAdminStatus", + ".1.3.6.1.2.1.2.2.1.8": "ifOperStatus", + ".1.3.6.1.2.1.2.2.1.9": "ifLastChange", + ".1.3.6.1.2.1.2.2.1.10": "ifInOctets", + ".1.3.6.1.2.1.2.2.1.11": "ifInUcastPkts", + ".1.3.6.1.2.1.2.2.1.12": "ifInNUcastPkts", + ".1.3.6.1.2.1.2.2.1.13": "ifInDiscards", + ".1.3.6.1.2.1.2.2.1.14": "ifInErrors", + ".1.3.6.1.2.1.2.2.1.15": "ifInUnknownProtos", + ".1.3.6.1.2.1.2.2.1.16": "ifOutOctets", + ".1.3.6.1.2.1.2.2.1.17": "ifOutUcastPkts", + ".1.3.6.1.2.1.2.2.1.18": "ifOutNUcastPkts", + ".1.3.6.1.2.1.2.2.1.19": "ifOutDiscards", + ".1.3.6.1.2.1.2.2.1.20": "ifOutErrors", + ".1.3.6.1.2.1.2.2.1.21": "ifOutQLen", + ".1.3.6.1.2.1.2.2.1.22": "ifSpecific", + + # ── IF-MIB: ifXTable (extended interface stats) ── + ".1.3.6.1.2.1.31.1.1.1.1": "ifName", + ".1.3.6.1.2.1.31.1.1.1.2": "ifInMulticastPkts", + ".1.3.6.1.2.1.31.1.1.1.3": "ifInBroadcastPkts", + ".1.3.6.1.2.1.31.1.1.1.4": "ifOutMulticastPkts", + ".1.3.6.1.2.1.31.1.1.1.5": "ifOutBroadcastPkts", + ".1.3.6.1.2.1.31.1.1.1.6": "ifHCInOctets", + ".1.3.6.1.2.1.31.1.1.1.7": "ifHCInUcastPkts", + ".1.3.6.1.2.1.31.1.1.1.8": "ifHCInMulticastPkts", + ".1.3.6.1.2.1.31.1.1.1.9": "ifHCInBroadcastPkts", + ".1.3.6.1.2.1.31.1.1.1.10": "ifHCOutOctets", + ".1.3.6.1.2.1.31.1.1.1.11": "ifHCOutUcastPkts", + ".1.3.6.1.2.1.31.1.1.1.12": "ifHCOutMulticastPkts", + ".1.3.6.1.2.1.31.1.1.1.13": "ifHCOutBroadcastPkts", + ".1.3.6.1.2.1.31.1.1.1.14": "ifLinkUpDownTrapEnable", + ".1.3.6.1.2.1.31.1.1.1.15": "ifHighSpeed", + ".1.3.6.1.2.1.31.1.1.1.16": "ifPromiscuousMode", + ".1.3.6.1.2.1.31.1.1.1.17": "ifConnectorPresent", + ".1.3.6.1.2.1.31.1.1.1.18": "ifAlias", + ".1.3.6.1.2.1.31.1.1.1.19": "ifCounterDiscontinuityTime", + ".1.3.6.1.2.1.31.1.5": "ifTableLastChange", + + # ── IP-MIB ── + ".1.3.6.1.2.1.4.1": "ipForwarding", + ".1.3.6.1.2.1.4.2": "ipDefaultTTL", + ".1.3.6.1.2.1.4.3": "ipInReceives", + ".1.3.6.1.2.1.4.4": "ipInHdrErrors", + ".1.3.6.1.2.1.4.5": "ipInAddrErrors", + ".1.3.6.1.2.1.4.6": "ipForwDatagrams", + ".1.3.6.1.2.1.4.7": "ipInUnknownProtos", + ".1.3.6.1.2.1.4.8": "ipInDiscards", + ".1.3.6.1.2.1.4.9": "ipInDelivers", + ".1.3.6.1.2.1.4.10": "ipOutRequests", + ".1.3.6.1.2.1.4.11": "ipOutDiscards", + ".1.3.6.1.2.1.4.12": "ipOutNoRoutes", + ".1.3.6.1.2.1.4.13": "ipReasmTimeout", + ".1.3.6.1.2.1.4.20": "ipAddrTable", + ".1.3.6.1.2.1.4.20.1.1": "ipAdEntAddr", + ".1.3.6.1.2.1.4.20.1.2": "ipAdEntIfIndex", + ".1.3.6.1.2.1.4.20.1.3": "ipAdEntNetMask", + ".1.3.6.1.2.1.4.20.1.4": "ipAdEntBcastAddr", + ".1.3.6.1.2.1.4.20.1.5": "ipAdEntReasmMaxSize", + ".1.3.6.1.2.1.4.21": "ipRouteTable", + ".1.3.6.1.2.1.4.22": "ipNetToMediaTable", + ".1.3.6.1.2.1.4.24": "ipForward", + ".1.3.6.1.2.1.4.31": "ipTrafficStats", + ".1.3.6.1.2.1.4.32": "ipAddressPrefixTable", + ".1.3.6.1.2.1.4.34": "ipAddressTable", + ".1.3.6.1.2.1.4.34.1.3": "ipAddressIfIndex", + ".1.3.6.1.2.1.4.34.1.4": "ipAddressType", + ".1.3.6.1.2.1.4.34.1.5": "ipAddressPrefix", + ".1.3.6.1.2.1.4.34.1.6": "ipAddressOrigin", + ".1.3.6.1.2.1.4.34.1.7": "ipAddressStatus", + ".1.3.6.1.2.1.4.34.1.8": "ipAddressCreated", + ".1.3.6.1.2.1.4.34.1.9": "ipAddressLastChanged", + ".1.3.6.1.2.1.4.34.1.10": "ipAddressRowStatus", + ".1.3.6.1.2.1.4.34.1.11": "ipAddressStorageType", + ".1.3.6.1.2.1.4.35": "ipNetToPhysicalTable", + ".1.3.6.1.2.1.4.36": "ipv6ScopeZoneIndexTable", + + # ── TCP-MIB ── + ".1.3.6.1.2.1.6.1": "tcpRtoAlgorithm", + ".1.3.6.1.2.1.6.2": "tcpRtoMin", + ".1.3.6.1.2.1.6.3": "tcpRtoMax", + ".1.3.6.1.2.1.6.4": "tcpMaxConn", + ".1.3.6.1.2.1.6.5": "tcpActiveOpens", + ".1.3.6.1.2.1.6.6": "tcpPassiveOpens", + ".1.3.6.1.2.1.6.7": "tcpAttemptFails", + ".1.3.6.1.2.1.6.8": "tcpEstabResets", + ".1.3.6.1.2.1.6.9": "tcpCurrEstab", + ".1.3.6.1.2.1.6.10": "tcpInSegs", + ".1.3.6.1.2.1.6.11": "tcpOutSegs", + ".1.3.6.1.2.1.6.12": "tcpRetransSegs", + ".1.3.6.1.2.1.6.13": "tcpConnTable", + ".1.3.6.1.2.1.6.14": "tcpInErrs", + ".1.3.6.1.2.1.6.15": "tcpOutRsts", + ".1.3.6.1.2.1.6.19": "tcpConnectionTable", + ".1.3.6.1.2.1.6.20": "tcpListenerTable", + ".1.3.6.1.2.1.49": "tcpMIB", + + # ── UDP-MIB ── + ".1.3.6.1.2.1.7.1": "udpInDatagrams", + ".1.3.6.1.2.1.7.2": "udpNoPorts", + ".1.3.6.1.2.1.7.3": "udpInErrors", + ".1.3.6.1.2.1.7.4": "udpOutDatagrams", + ".1.3.6.1.2.1.7.7": "udpEndpointTable", + ".1.3.6.1.2.1.50": "udpMIB", + + # ── SNMP group ── + ".1.3.6.1.2.1.11.1": "snmpInPkts", + ".1.3.6.1.2.1.11.2": "snmpOutPkts", + ".1.3.6.1.2.1.11.3": "snmpInBadVersions", + ".1.3.6.1.2.1.11.4": "snmpInBadCommunityNames", + ".1.3.6.1.2.1.11.5": "snmpInBadCommunityUses", + ".1.3.6.1.2.1.11.6": "snmpInASNParseErrs", + ".1.3.6.1.2.1.11.8": "snmpInTooBigs", + ".1.3.6.1.2.1.11.9": "snmpInNoSuchNames", + ".1.3.6.1.2.1.11.10": "snmpInBadValues", + ".1.3.6.1.2.1.11.11": "snmpInReadOnlys", + ".1.3.6.1.2.1.11.12": "snmpInGenErrs", + ".1.3.6.1.2.1.11.13": "snmpInTotalReqVars", + ".1.3.6.1.2.1.11.14": "snmpInTotalSetVars", + ".1.3.6.1.2.1.11.15": "snmpInGetRequests", + ".1.3.6.1.2.1.11.16": "snmpInGetNexts", + ".1.3.6.1.2.1.11.17": "snmpInSetRequests", + ".1.3.6.1.2.1.11.18": "snmpInGetResponses", + ".1.3.6.1.2.1.11.19": "snmpInTraps", + ".1.3.6.1.2.1.11.20": "snmpOutTooBigs", + ".1.3.6.1.2.1.11.21": "snmpOutNoSuchNames", + ".1.3.6.1.2.1.11.22": "snmpOutBadValues", + ".1.3.6.1.2.1.11.24": "snmpOutGenErrs", + ".1.3.6.1.2.1.11.25": "snmpOutGetRequests", + ".1.3.6.1.2.1.11.26": "snmpOutGetNexts", + ".1.3.6.1.2.1.11.28": "snmpOutGetResponses", + ".1.3.6.1.2.1.11.29": "snmpOutTraps", + ".1.3.6.1.2.1.11.30": "snmpEnableAuthenTraps", + ".1.3.6.1.2.1.11.31": "snmpSilentDrops", + ".1.3.6.1.2.1.11.32": "snmpProxyDrops", + + # ── ENTITY-MIB (.1.3.6.1.2.1.47) ── + ".1.3.6.1.2.1.47.1.1.1.1.2": "entPhysicalDescr", + ".1.3.6.1.2.1.47.1.1.1.1.3": "entPhysicalVendorType", + ".1.3.6.1.2.1.47.1.1.1.1.4": "entPhysicalContainedIn", + ".1.3.6.1.2.1.47.1.1.1.1.5": "entPhysicalClass", + ".1.3.6.1.2.1.47.1.1.1.1.7": "entPhysicalName", + + # ── IPv6-MIB (.1.3.6.1.2.1.55) ── + ".1.3.6.1.2.1.55.1.1": "ipv6Forwarding", + ".1.3.6.1.2.1.55.1.2": "ipv6DefaultHopLimit", + ".1.3.6.1.2.1.55.1.3": "ipv6Interfaces", + ".1.3.6.1.2.1.55.1.5": "ipv6IfTable", + ".1.3.6.1.2.1.55.1.5.1.2": "ipv6IfDescr", + ".1.3.6.1.2.1.55.1.5.1.3": "ipv6IfLowerLayer", + ".1.3.6.1.2.1.55.1.5.1.4": "ipv6IfEffectiveMtu", + ".1.3.6.1.2.1.55.1.5.1.8": "ipv6IfPhysicalAddress", + ".1.3.6.1.2.1.55.1.5.1.9": "ipv6IfAdminStatus", + ".1.3.6.1.2.1.55.1.5.1.10": "ipv6IfOperStatus", + + # ── LAG-MIB (.1.3.6.1.2.1.32) ── (partial, IEEE 802.3ad) + ".1.3.6.1.2.1.32": "dot3adAgg", + + # ── Notification log (.1.3.6.1.2.1.92) ── + ".1.3.6.1.2.1.92": "notificationLogMIB", + + # ── IEEE 802.1 Bridge / LLDP ── + ".1.3.111.2.802.1.1.8": "ieee8021BridgeMIB", + ".1.3.111.2.802.1.1.13": "lldpMIB", + + # ── SNMPv2 framework ── + ".1.3.6.1.6.3.1": "snmpFrameworkMIB", + ".1.3.6.1.6.3.13.3.1.3": "snmpNotifyFilterMIB", + ".1.3.6.1.6.3.16.2.2.1": "vacmAccessTable", +} + +# Module-level OID prefix labels for grouping +STD_MODULE_MAP = OrderedDict([ + (".1.3.6.1.2.1.1", "SNMPv2-MIB::system"), + (".1.3.6.1.2.1.2", "IF-MIB::interfaces"), + (".1.3.6.1.2.1.4", "IP-MIB"), + (".1.3.6.1.2.1.6", "TCP-MIB"), + (".1.3.6.1.2.1.7", "UDP-MIB"), + (".1.3.6.1.2.1.11", "SNMPv2-MIB::snmp"), + (".1.3.6.1.2.1.31", "IF-MIB::ifXTable"), + (".1.3.6.1.2.1.47", "ENTITY-MIB"), + (".1.3.6.1.2.1.49", "TCP-MIB"), + (".1.3.6.1.2.1.50", "UDP-MIB"), + (".1.3.6.1.2.1.55", "IPv6-MIB"), + (".1.3.6.1.2.1.92", "NOTIFICATION-LOG-MIB"), + (".1.3.111.2.802.1", "IEEE-802.1"), + (".1.3.6.1.6.3", "SNMPv3-FRAMEWORK"), +]) + + +# ──────────────────────────────────────────────────────────────────────── +# MIB FILE PARSER — extracts OBJECT-TYPE definitions from .mib files +# ──────────────────────────────────────────────────────────────────────── + +def parse_mib_files(mib_dir: Path) -> dict: + """ + Parse all MIB files in mib_dir and return a mapping of + numeric_oid (str) -> {name, description, syntax, max_access, parent_table} + """ + if not mib_dir.is_dir(): + print(f" Warning: MIB directory not found: {mib_dir}", file=sys.stderr) + return {} + + # Step 1: Extract all name -> (parent_name, number) assignments + name_to_parent = {} # name -> (parent_name, sub_id) + name_to_info = {} # name -> {description, syntax, max_access, ...} + + # Known roots from ACCEDIAN-SMI + name_to_parent["enterprises"] = ("_root", None) + name_to_parent["accedianMIB"] = ("enterprises", 22420) + name_to_parent["acdProducts"] = ("accedianMIB", 1) + name_to_parent["acdMibs"] = ("accedianMIB", 2) + name_to_parent["acdTraps"] = ("accedianMIB", 3) + name_to_parent["acdExperiment"] = ("accedianMIB", 4) + name_to_parent["acdServices"] = ("accedianMIB", 5) + + # Well-known standard roots + name_to_parent["sysName"] = ("_std", None) + + mib_files = sorted(mib_dir.glob("*")) + for mib_file in mib_files: + if mib_file.name == "ACCEDIAN-SMI": + continue # Already handled above + text = mib_file.read_text(encoding="utf-8", errors="replace") + _parse_single_mib(text, name_to_parent, name_to_info) + + # Step 2: Resolve each name to its full numeric OID + oid_map = {} + resolved_cache = {} + + def resolve(name): + if name in resolved_cache: + return resolved_cache[name] + if name == "_root" or name == "_std": + return None + if name not in name_to_parent: + return None + parent_name, sub_id = name_to_parent[name] + if sub_id is None: + return None + parent_oid = resolve(parent_name) + if parent_oid is None: + # Parent is enterprises + if parent_name == "enterprises": + result = f".1.3.6.1.4.1.{sub_id}" + else: + return None + else: + result = f"{parent_oid}.{sub_id}" + resolved_cache[name] = result + return result + + for name in name_to_parent: + oid = resolve(name) + if oid: + info = name_to_info.get(name, {}) + info["name"] = name + oid_map[oid] = info + + return oid_map + + +def _parse_single_mib(text: str, name_to_parent: dict, name_to_info: dict): + """Extract OBJECT-TYPE, MODULE-IDENTITY, and OBJECT IDENTIFIER assignments.""" + + # Remove single-line comments (-- to end of line) but NOT inside quoted strings. + # MIB comments start with -- and go to end of line. + # Be careful not to strip inside DESCRIPTION "..." blocks. + # Simple approach: strip comments outside of quotes. + lines = text.split('\n') + cleaned_lines = [] + in_quotes = False + for line in lines: + cleaned = [] + i = 0 + while i < len(line): + if line[i] == '"': + in_quotes = not in_quotes + cleaned.append(line[i]) + elif not in_quotes and line[i:i+2] == '--': + break # Rest of line is comment + else: + cleaned.append(line[i]) + i += 1 + cleaned_lines.append(''.join(cleaned)) + text = '\n'.join(cleaned_lines) + + # Strategy: find ALL "::= { parentName number }" assignments and + # look backwards to find the object name. + + # 1. Simple OBJECT IDENTIFIER assignments: name OBJECT IDENTIFIER ::= { parent num } + simple_oid_pattern = re.compile( + r'(\w+)\s+OBJECT\s+IDENTIFIER\s*::=\s*\{\s*(\w+)\s+(\d+)\s*\}' + ) + for m in simple_oid_pattern.finditer(text): + name, parent, num = m.group(1), m.group(2), int(m.group(3)) + name_to_parent[name] = (parent, num) + + # 2. MODULE-IDENTITY assignments + mod_pattern = re.compile( + r'(\w+)\s+MODULE-IDENTITY\s.*?::=\s*\{\s*(\w+)\s+(\d+)\s*\}', + re.DOTALL + ) + for m in mod_pattern.finditer(text): + name, parent, num = m.group(1), m.group(2), int(m.group(3)) + name_to_parent[name] = (parent, num) + + # 3. OBJECT-TYPE / OBJECT-IDENTITY / NOTIFICATION-TYPE assignments + # Use a targeted approach: find all ::= { parent num } and look back for the name + assign_pattern = re.compile(r'::=\s*\{\s*(\w+)\s+(\d+)\s*\}') + for m in assign_pattern.finditer(text): + parent = m.group(1) + num = int(m.group(2)) + # Look backwards from match start to find the object name + before = text[:m.start()].rstrip() + # Find the last OBJECT-TYPE, OBJECT-IDENTITY, or similar keyword + # then the name is the word before that keyword + name_match = re.search( + r'(\w+)\s+(?:OBJECT-TYPE|OBJECT-IDENTITY|MODULE-IDENTITY|NOTIFICATION-TYPE)' + r'\s*$', + before, re.DOTALL + ) + if name_match: + name = name_match.group(1) + name_to_parent[name] = (parent, num) + else: + # Could be a SEQUENCE member or OBJECT IDENTIFIER (already caught above) + # Try: name OBJECT IDENTIFIER ::= { parent num } + oid_match = re.search(r'(\w+)\s+OBJECT\s+IDENTIFIER\s*$', before) + if oid_match: + name = oid_match.group(1) + name_to_parent[name] = (parent, num) + + # 4. Extract detailed info (SYNTAX, DESCRIPTION, MAX-ACCESS) for OBJECT-TYPE + obj_pattern = re.compile( + r'(\w+)\s+OBJECT-TYPE\s+' + r'SYNTAX\s+(.*?)\s+' + r'(?:UNITS\s+"(.*?)"\s+)?' + r'MAX-ACCESS\s+(\S+)\s+' + r'STATUS\s+\S+\s+' + r'DESCRIPTION\s+"(.*?)"', + re.DOTALL + ) + + for m in obj_pattern.finditer(text): + name = m.group(1) + syntax_raw = m.group(2).strip() + units = m.group(3) + max_access = m.group(4) + desc = m.group(5).strip() + + # Clean up syntax (take first word) + syntax = syntax_raw.split()[0] if syntax_raw else "" + # Clean description (collapse whitespace) + desc = re.sub(r'\s+', ' ', desc).strip() + + name_to_info[name] = { + "syntax": syntax, + "units": units, + "max_access": max_access, + "description": desc[:200], # Truncate long descriptions + } + + +# ──────────────────────────────────────────────────────────────────────── +# WALK FILE PARSER +# ──────────────────────────────────────────────────────────────────────── + +def parse_walk_file(walk_file: Path) -> dict: + """ + Parse entire walk file into {oid: value} dict. + Handles multi-line quoted values (e.g., "-inf dBm\\n"). + """ + data = OrderedDict() + skipped = 0 + pending_oid = None + pending_value = None + + oid_re = re.compile(r'^(\.\d+(?:\.\d+)*)\s+=\s+(.*)$') + + with walk_file.open(encoding="utf-8", errors="replace") as f: + for line in f: + raw = line.rstrip('\n\r') + stripped = raw.strip() + + if not stripped or "No more variables left" in stripped: + skipped += 1 + continue + + # If we're accumulating a multi-line quoted value + if pending_oid is not None: + pending_value += " " + stripped + # Check if the closing quote arrived + if stripped.endswith('"'): + # Strip surrounding quotes + val = pending_value.strip() + if val.startswith('"') and val.endswith('"'): + val = val[1:-1] + data[pending_oid] = val.strip() + pending_oid = None + pending_value = None + continue + + match = oid_re.match(stripped) + if not match: + skipped += 1 + continue + + oid, value = match.groups() + value = value.strip() + + # Check for multi-line quoted value (opening " but no closing ") + if value.startswith('"') and not value.endswith('"'): + pending_oid = oid + pending_value = value + continue + + # Normal single-line value + if value.startswith('"') and value.endswith('"'): + value = value[1:-1] + data[oid] = value.strip() + + # Flush any pending value + if pending_oid is not None: + val = pending_value.strip().strip('"') + data[pending_oid] = val.strip() + + return data, skipped + + +# ──────────────────────────────────────────────────────────────────────── +# OID RESOLVER — matches numeric OIDs to names +# ──────────────────────────────────────────────────────────────────────── + +class OIDResolver: + def __init__(self, accedian_map: dict, standard_map: dict): + # Merge both maps: numeric_oid -> info dict + self.oid_map = {} + for oid, name in standard_map.items(): + self.oid_map[oid] = {"name": name} + for oid, info in accedian_map.items(): + self.oid_map[oid] = info + + # Build sorted list of known OIDs for longest-prefix matching + self._sorted_oids = sorted(self.oid_map.keys(), + key=lambda x: len(x), reverse=True) + + def resolve(self, oid: str): + """ + Resolve a numeric OID to (column_name, index_suffix, info_dict). + Uses longest-prefix matching: finds the longest known OID prefix, + then treats the remainder as the table index. + """ + # Exact match first + if oid in self.oid_map: + return self.oid_map[oid]["name"], "", self.oid_map[oid] + + # Longest prefix match + for known_oid in self._sorted_oids: + if oid.startswith(known_oid + "."): + suffix = oid[len(known_oid) + 1:] + return self.oid_map[known_oid]["name"], suffix, self.oid_map[known_oid] + + return None, None, None + + def get_module(self, oid: str) -> str: + """Determine which MIB module an OID belongs to.""" + # Check Accedian modules first (sorted longest-prefix-first) + accedian_modules = { + ".1.3.6.1.4.1.22420.1.1": "ACD-DESC-MIB", + ".1.3.6.1.4.1.22420.2.1": "ACD-ALARM-MIB", + ".1.3.6.1.4.1.22420.2.2": "ACD-FILTER-MIB", + ".1.3.6.1.4.1.22420.2.3": "ACD-POLICY-MIB", + ".1.3.6.1.4.1.22420.2.4": "ACD-SFP-MIB", + ".1.3.6.1.4.1.22420.2.5": "ACD-PAA-MIB", + ".1.3.6.1.4.1.22420.2.6": "ACD-REGULATOR-MIB", + ".1.3.6.1.4.1.22420.2.7": "ACD-CFM-MIB", + ".1.3.6.1.4.1.22420.2.8": "ACD-SMAP-MIB", + ".1.3.6.1.4.1.22420.2.9": "ACD-PORT-MIB", + ".1.3.6.1.4.1.22420.2.10": "ACD-SHAPER-MIB", + ".1.3.6.1.4.1.22420.2.11": "ACD-DISCOVERY-MIB", + ".1.3.6.1.4.1.22420.2.12": "ACD-SA-MIB", + ".1.3.6.1.4.1.22420.2.14": "ACD-TID-MIB", + } + for prefix, module in sorted(accedian_modules.items(), + key=lambda x: len(x[0]), reverse=True): + if oid == prefix or oid.startswith(prefix + "."): + return module + + # Check standard modules (sorted longest-prefix-first to avoid + # .1.3.6.1.2.1.1 matching .1.3.6.1.2.1.11) + for prefix, module in sorted(STD_MODULE_MAP.items(), + key=lambda x: len(x[0]), reverse=True): + if oid == prefix or oid.startswith(prefix + "."): + return module + + if oid.startswith(".1.3.6.1.4.1.22420"): + return "ACCEDIAN-ENTERPRISE" + if oid.startswith(".1.3.6.1.2.1"): + return "STD-MIB" + return "UNKNOWN" + + +# ──────────────────────────────────────────────────────────────────────── +# TABLE RECONSTRUCTOR — groups OIDs into SNMP tables +# ──────────────────────────────────────────────────────────────────────── + +def reconstruct_tables(walk_data: dict, resolver: OIDResolver) -> dict: + """ + Group walk data into SNMP tables. + Returns: {table_key: {index: {column_name: value}}} + """ + tables = defaultdict(lambda: defaultdict(dict)) + scalars = OrderedDict() + unresolved = OrderedDict() + + for oid, value in walk_data.items(): + col_name, index, info = resolver.resolve(oid) + + if col_name is None: + # Unresolved — store with module grouping + module = resolver.get_module(oid) + unresolved[oid] = {"module": module, "value": value} + continue + + if not index: + # Scalar value (no index suffix) — e.g., sysDescr.0 + scalars[col_name] = value + else: + # Table row — group by column name prefix + tables[col_name][index] = value + + return dict(tables), scalars, dict(unresolved) + + +# ──────────────────────────────────────────────────────────────────────── +# OUTPUT BUILDERS +# ──────────────────────────────────────────────────────────────────────── + +def build_resolved_output(walk_data: dict, resolver: OIDResolver) -> dict: + """Build the full resolved JSON output grouped by MIB module.""" + modules = defaultdict(lambda: {"scalars": {}, "tables": defaultdict(dict)}) + + for oid, value in walk_data.items(): + module = resolver.get_module(oid) + col_name, index, info = resolver.resolve(oid) + + if col_name is None: + # Unresolved — store raw + if "unresolved" not in modules[module]: + modules[module]["unresolved"] = {} + modules[module]["unresolved"][oid] = value + continue + + if not index: + # Scalar — e.g., .0 suffix was already stripped by walk + # Check if there's a .0 variant + modules[module]["scalars"][col_name] = value + else: + # Table entry + table_key = col_name + modules[module]["tables"][table_key][index] = value + + # Convert to regular dicts for JSON serialization + result = OrderedDict() + for mod_name in sorted(modules.keys()): + mod_data = modules[mod_name] + entry = OrderedDict() + if mod_data["scalars"]: + entry["scalars"] = dict(mod_data["scalars"]) + if mod_data["tables"]: + entry["tables"] = {} + for tbl_name, rows in sorted(mod_data["tables"].items()): + entry["tables"][tbl_name] = dict(rows) + if "unresolved" in mod_data and mod_data["unresolved"]: + entry["unresolved_oids"] = mod_data["unresolved"] + result[mod_name] = entry + + return result + + +def build_monitoring_output(walk_data: dict, resolver: OIDResolver) -> dict: + """ + Build a monitoring-focused JSON with the most useful data for + device monitoring and config status. + """ + output = OrderedDict() + + # ── 1. Device Identity ── + device = OrderedDict() + identity_oids = { + ".1.3.6.1.2.1.1.1.0": "sysDescr", + ".1.3.6.1.2.1.1.3.0": "sysUpTime", + ".1.3.6.1.2.1.1.4.0": "sysContact", + ".1.3.6.1.2.1.1.5.0": "sysName", + ".1.3.6.1.2.1.1.6.0": "sysLocation", + ".1.3.6.1.4.1.22420.1.1.1.0": "commercialName", + ".1.3.6.1.4.1.22420.1.1.2.0": "macBaseAddr", + ".1.3.6.1.4.1.22420.1.1.3.0": "identifier", + ".1.3.6.1.4.1.22420.1.1.4.0": "firmwareVersion", + ".1.3.6.1.4.1.22420.1.1.5.0": "hardwareVersion", + ".1.3.6.1.4.1.22420.1.1.6.0": "serialNumber", + ".1.3.6.1.4.1.22420.1.1.7.0": "hardwareOptions", + ".1.3.6.1.4.1.22420.1.1.20.0": "cpuUsageCurrent", + ".1.3.6.1.4.1.22420.1.1.21.0": "cpuUsageAvg15s", + ".1.3.6.1.4.1.22420.1.1.22.0": "cpuUsageAvg30s", + ".1.3.6.1.4.1.22420.1.1.23.0": "cpuUsageAvg60s", + ".1.3.6.1.4.1.22420.1.1.24.0": "cpuUsageAvg900s", + ".1.3.6.1.4.1.22420.1.1.25.0": "uptimeSeconds", + } + for oid, label in identity_oids.items(): + if oid in walk_data: + device[label] = walk_data[oid] + output["device"] = device + + # ── 2. Interfaces ── + interfaces = OrderedDict() + if_columns = { + ".1.3.6.1.2.1.2.2.1.2": "ifDescr", + ".1.3.6.1.2.1.2.2.1.3": "ifType", + ".1.3.6.1.2.1.2.2.1.4": "ifMtu", + ".1.3.6.1.2.1.2.2.1.5": "ifSpeed", + ".1.3.6.1.2.1.2.2.1.6": "ifPhysAddress", + ".1.3.6.1.2.1.2.2.1.7": "ifAdminStatus", + ".1.3.6.1.2.1.2.2.1.8": "ifOperStatus", + ".1.3.6.1.2.1.2.2.1.10": "ifInOctets", + ".1.3.6.1.2.1.2.2.1.13": "ifInDiscards", + ".1.3.6.1.2.1.2.2.1.14": "ifInErrors", + ".1.3.6.1.2.1.2.2.1.16": "ifOutOctets", + ".1.3.6.1.2.1.2.2.1.19": "ifOutDiscards", + ".1.3.6.1.2.1.2.2.1.20": "ifOutErrors", + ".1.3.6.1.2.1.31.1.1.1.1": "ifName", + ".1.3.6.1.2.1.31.1.1.1.6": "ifHCInOctets", + ".1.3.6.1.2.1.31.1.1.1.10": "ifHCOutOctets", + ".1.3.6.1.2.1.31.1.1.1.15": "ifHighSpeed", + ".1.3.6.1.2.1.31.1.1.1.18": "ifAlias", + } + for prefix, col_name in if_columns.items(): + for oid, value in walk_data.items(): + if oid.startswith(prefix + "."): + idx = oid[len(prefix) + 1:] + if idx not in interfaces: + interfaces[idx] = OrderedDict() + interfaces[idx][col_name] = value + output["interfaces"] = interfaces + + # ── 3. Connectors (ACD-DESC-MIB) ── + connectors = _extract_table(walk_data, ".1.3.6.1.4.1.22420.1.1.10.1", { + "1": "id", "2": "name", "3": "type", "4": "poeSupport", + }) + if connectors: + output["connectors"] = connectors + + # ── 4. Power Supplies (ACD-DESC-MIB) ── + power = _extract_table(walk_data, ".1.3.6.1.4.1.22420.1.1.11.1", { + "1": "id", "2": "name", "3": "type", "4": "present", + }) + if power: + output["power_supplies"] = power + + # ── 5. Temperature Sensors (ACD-DESC-MIB) ── + temps = _extract_table(walk_data, ".1.3.6.1.4.1.22420.1.1.12.1", { + "1": "id", "2": "currentTemp", "3": "highThreshold", + "4": "highAlarmEnabled", "5": "criticalThreshold", + "6": "criticalAlarmEnabled", "7": "label", + }) + if temps: + output["temperature_sensors"] = temps + + # ── 6. SFP Info (ACD-SFP-MIB) ── + sfp_info = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.4.1.1", { + "1": "id", "2": "connectorIdx", "3": "connectorType", + "4": "vendor", "5": "vendorOui", "6": "vendorPn", + "7": "vendorRev", "8": "wavelength", "9": "serialNum", + "10": "mfgYear", "11": "mfgMonth", "12": "mfgDay", + "13": "lot", "14": "rev8472", "15": "present", + "16": "diagCapable", "17": "internalCal", "18": "alarmCapable", + "19": "idType", "20": "extIdType", "21": "transCode", + }) + if sfp_info: + # Decode hex-encoded SFP EEPROM fields to ASCII + hex_fields = ("vendor", "vendorPn", "vendorRev", "vendorOui", "transCode") + for idx, row in sfp_info.items(): + for field in hex_fields: + if field in row: + row[field] = _decode_hex_string(row[field]) + output["sfp_info"] = sfp_info + + # ── 7. SFP Diagnostics (ACD-SFP-MIB) ── + sfp_diag = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.4.2.1", { + "1": "id", "2": "connectorIdx", "3": "temperature", + "4": "supplyVoltage", "5": "laserBiasCurrent", + "6": "txPower_uW", "7": "rxPower_uW", + "8": "txPower_dBm", "9": "rxPower_dBm", + }) + if sfp_diag: + output["sfp_diagnostics"] = sfp_diag + + # ── 8. SFP Thresholds (ACD-SFP-MIB) ── + sfp_thresh = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.4.3.1", { + "1": "id", "2": "connectorIdx", + "3": "tempHighAlarm", "4": "tempLowAlarm", + "5": "tempHighWarn", "6": "tempLowWarn", + "7": "vccHighAlarm", "8": "vccLowAlarm", + "9": "vccHighWarn", "10": "vccLowWarn", + "11": "lbcHighAlarm", "12": "lbcLowAlarm", + "13": "lbcHighWarn", "14": "lbcLowWarn", + "15": "txPwrHighAlarm", "16": "txPwrLowAlarm", + "17": "txPwrHighWarn", "18": "txPwrLowWarn", + "19": "rxPwrHighAlarm", "20": "rxPwrLowAlarm", + "21": "rxPwrHighWarn", "22": "rxPwrLowWarn", + "23": "txPwrHighAlarm_dBm", "24": "txPwrLowAlarm_dBm", + "25": "txPwrHighWarn_dBm", "26": "txPwrLowWarn_dBm", + "27": "rxPwrHighAlarm_dBm", "28": "rxPwrLowAlarm_dBm", + "29": "rxPwrHighWarn_dBm", "30": "rxPwrLowWarn_dBm", + }) + if sfp_thresh: + output["sfp_thresholds"] = sfp_thresh + + # ── 9. Alarms Config (ACD-ALARM-MIB) ── + alarm_cfg = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.1.10.1", { + "1": "id", "2": "number", "3": "description", + "4": "enabled", "5": "severity", "6": "serviceAffecting", + "7": "extNumber", "8": "conditionType", "9": "amoType", + "10": "on", + }) + if alarm_cfg: + output["alarm_config"] = alarm_cfg + + # ── 10. Alarm Status (ACD-ALARM-MIB) ── + alarm_status = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.1.11.1", { + "1": "id", "2": "number", "3": "active", + "4": "lastChange", "5": "message", "6": "on", + }) + if alarm_status: + output["alarm_status"] = alarm_status + + # ── 11. Alarm General Config ── + alarm_gen = OrderedDict() + alarm_gen_oids = { + ".1.3.6.1.4.1.22420.2.1.1.0": "threshOnMs", + ".1.3.6.1.4.1.22420.2.1.2.0": "threshOffMs", + ".1.3.6.1.4.1.22420.2.1.3.0": "ledEnabled", + ".1.3.6.1.4.1.22420.2.1.4.0": "syslogEnabled", + ".1.3.6.1.4.1.22420.2.1.5.0": "snmpEnabled", + ".1.3.6.1.4.1.22420.2.1.6.0": "802_3ahEnabled", + } + for oid, label in alarm_gen_oids.items(): + if oid in walk_data: + alarm_gen[label] = walk_data[oid] + if alarm_gen: + output["alarm_general"] = alarm_gen + + # ── 12. Port Config (ACD-PORT-MIB) ── + port_cfg = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.9.1.1.1.1", { + "1": "index", "2": "name", "3": "alias", + "4": "macAddress", "5": "connectorId", "6": "state", + "7": "mtu", "8": "autoNego", "9": "speed", + "10": "duplex", "11": "mdi", "12": "pauseMode", + "13": "advertisement", "14": "forceTxOn", "15": "laserMode", + }) + if port_cfg: + output["port_config"] = port_cfg + + # ── 13. Port Status (ACD-PORT-MIB) ── + port_status = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.9.1.2.1.1", { + "1": "index", "2": "name", "3": "connectorIdx", + "4": "linkStatus", "5": "speed", "6": "duplex", + "7": "mdi", "8": "pauseMode", "9": "sfpIdx", + }) + if port_status: + output["port_status"] = port_status + + # ── 14. L2 Filters (ACD-FILTER-MIB) ── + l2_filters = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.2.1.1", { + "1": "id", "2": "name", + "3": "macDstEn", "4": "macDst", "5": "macDstMask", + "6": "macSrcEn", "7": "macSrc", "8": "macSrcMask", + "9": "etypeEn", "10": "etype", + "11": "vlan1IdEn", "12": "vlan1Id", + "13": "vlan1PriorEn", "14": "vlan1Prior", + "15": "vlan1CfiEn", "16": "vlan1Cfi", + "17": "vlan2IdEn", "18": "vlan2Id", + "19": "vlan2PriorEn", "20": "vlan2Prior", + "21": "vlan2CfiEn", "22": "vlan2Cfi", + "23": "rowStatus", + }) + if l2_filters: + output["l2_filters"] = l2_filters + + # ── 15. Policy Lists (ACD-POLICY-MIB) ── + policy_lists = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.3.5.1.1.1", { + "2": "name", "3": "nbrEntries", + }) + if policy_lists: + output["policy_lists"] = policy_lists + + # ── 16. Policy→Port Bindings (ACD-POLICY-MIB) ── + policy_ports = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.3.5.2.1.1", { + "2": "policyListId", + }) + if policy_ports: + output["policy_port_bindings"] = policy_ports + + # ── 17. Policy Entries (ACD-POLICY-MIB) — enabled rules only ── + policy_entries_raw = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.3.1.1", { + "2": "listId", "3": "entryId", "4": "enable", + "5": "filterType", "6": "filterIndex", + "8": "monitorEnable", "9": "monitorIndex", + "10": "regulatorEnable", "11": "regulatorIndex", + "13": "action", "14": "evcMappingEncaps", + "16": "evcMappingVlanId", + "30": "outgoingPort", + }) + # Keep only enabled entries to avoid 400-entry dump + policy_entries = OrderedDict() + if policy_entries_raw: + for idx, row in policy_entries_raw.items(): + if row.get("enable") == "1": + policy_entries[idx] = row + if policy_entries: + output["policy_entries"] = policy_entries + + # ── 18. Policy Traffic Stats (ACD-POLICY-MIB) ── + policy_stats = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.3.2.1", { + "2": "listId", "3": "entryId", + "4": "inPkts", "6": "inHCPkts", + "7": "inOctets", "9": "inHCOctets", + "10": "inPktsErr", "12": "inHCPktsErr", + }) + if policy_stats: + output["policy_stats"] = policy_stats + + # ── 19. Regulators (ACD-REGULATOR-MIB) ── + regulators = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.6.1.1", { + "2": "name", "3": "cirKbps", "4": "cbsKiB", + "5": "eirKbps", "6": "ebsKiB", + "7": "isBlind", "8": "isCouple", "9": "rowStatus", + "10": "workingRate", "11": "cirMaxKbps", "12": "eirMaxKbps", + }) + if regulators: + output["regulators"] = regulators + + # ── 20. Regulator Stats (ACD-REGULATOR-MIB) ── + reg_stats = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.6.2.1", { + "4": "acceptHCOctets", "7": "acceptHCPkts", "8": "acceptRateKbps", + "11": "dropHCOctets", "14": "dropHCPkts", "15": "dropRateKbps", + "16": "greenHCOctets", "17": "greenHCPkts", + "18": "yellowHCOctets", "19": "yellowHCPkts", + "20": "redHCOctets", "21": "redHCPkts", + "22": "greenRateKbps", "23": "yellowRateKbps", "24": "redRateKbps", + }) + if reg_stats: + output["regulator_stats"] = reg_stats + + # ── 21. CoS Profiles (ACD-SMAP-MIB) ── + cos_profiles = _extract_table(walk_data, ".1.3.6.1.4.1.22420.2.8.1.1.1.1", { + "2": "rowStatus", "3": "name", "4": "type", + "5": "decodeDropBit", "6": "encodeDropBit", + }) + if cos_profiles: + output["cos_profiles"] = cos_profiles + + # ── 22. IP Addresses (ipAddrTable + ipAddressTable) ── + ip_addresses = OrderedDict() + # ipAddrTable: .1.3.6.1.2.1.4.20.1 — columns: .1=addr, .2=ifIndex, .3=mask, .4=bcast + ip_addr_prefix = ".1.3.6.1.2.1.4.20.1." + ip_raw = {} # ip_string -> {field: value} + for oid, value in walk_data.items(): + if not oid.startswith(ip_addr_prefix): + continue + rest = oid[len(ip_addr_prefix):] + parts = rest.split(".", 1) + if len(parts) != 2: + continue + col, ip_key = parts[0], parts[1] + if ip_key not in ip_raw: + ip_raw[ip_key] = {} + col_names = {"1": "address", "2": "ifIndex", "3": "netmask", "4": "bcastAddr"} + if col in col_names: + ip_raw[ip_key][col_names[col]] = value + + # Also check ipAddressTable for origin/type: .1.3.6.1.2.1.4.34.1 + ip_extra_prefix = ".1.3.6.1.2.1.4.34.1." + for oid, value in walk_data.items(): + if not oid.startswith(ip_extra_prefix): + continue + rest = oid[len(ip_extra_prefix):] + # Format: col.addrType.addrLen.addr... — addrType 1=IPv4, 2=IPv6 + parts = rest.split(".", 2) + if len(parts) < 3: + continue + col, addr_type = parts[0], parts[1] + if addr_type != "1": # Skip IPv6 for now + continue + addr_rest = parts[2] + # For IPv4: next part is "4" (length), then IP octets + addr_parts = addr_rest.split(".", 1) + if len(addr_parts) < 2 or addr_parts[0] != "4": + continue + ip_key = addr_parts[1] + col_names = {"3": "ifIndex2", "4": "type", "6": "origin", "7": "status"} + if col in col_names and ip_key in ip_raw: + ip_raw[ip_key][col_names[col]] = value + + # Convert to indexed dict, skip loopback + idx = 1 + for ip_key, fields in ip_raw.items(): + addr = fields.get("address", ip_key) + if addr == "127.0.0.1": + continue + # Convert netmask to prefix length + mask = fields.get("netmask", "") + prefix_len = "" + if mask: + try: + bits = sum(bin(int(o)).count("1") for o in mask.split(".")) + prefix_len = str(bits) + except (ValueError, AttributeError): + pass + ip_addresses[str(idx)] = OrderedDict([ + ("address", addr), + ("prefixLength", prefix_len), + ("netmask", mask), + ("ifIndex", fields.get("ifIndex", "")), + ("origin", fields.get("origin", "")), + ("status", fields.get("status", "")), + ]) + idx += 1 + if ip_addresses: + output["ip_addresses"] = ip_addresses + + # ── 23. LLDP Neighbors (structured) ── + LLDP_PREFIX = ".1.3.111.2.802.1.1.13" + LLDP_REM_TABLE = LLDP_PREFIX + ".1.4.1.1." # lldpRemTable columns + LLDP_REM_MGMT = LLDP_PREFIX + ".1.4.2.1." # lldpRemManAddrTable + LLDP_STATS_TX = LLDP_PREFIX + ".1.2.6.1.3." # lldpStatsTxPortFramesTotal + LLDP_STATS_RX = LLDP_PREFIX + ".1.2.7.1.5." # lldpStatsRxPortFramesTotal + LLDP_STATS_NB = LLDP_PREFIX + ".1.2.7.1.8." # lldpStatsRxPortNeighbors + + # Column names for lldpRemTable + rem_columns = { + "5": "chassisIdSubtype", "6": "chassisId", + "7": "portIdSubtype", "8": "remPortId", + "9": "remPortDesc", "10": "remSysName", + "11": "remSysDesc", "14": "capsSupported", "15": "capsEnabled", + } + + # Parse lldpRemTable: OID = ...col.timeMark.localPort.remIdx.extra + rem_entries = {} # key = "localPort.remIdx" + for oid, value in walk_data.items(): + if not oid.startswith(LLDP_REM_TABLE): + continue + rest = oid[len(LLDP_REM_TABLE):] + parts = rest.split(".", 4) + if len(parts) < 4: + continue + col, time_mark, local_port, rem_idx = parts[0], parts[1], parts[2], parts[3] + if col not in rem_columns: + continue + key = f"{local_port}.{rem_idx}" + if key not in rem_entries: + rem_entries[key] = {"localPort": local_port, "remIndex": rem_idx} + field = rem_columns[col] + # Hex-decode chassis ID: "9C E1 76 13 80 D9" → "9C:E1:76:13:80:D9" + if field == "chassisId" and " " in value: + value = value.strip().replace(" ", ":") + rem_entries[key][field] = value.strip() + + # Parse management addresses from OID index encoding + # OID: ...3.timeMark.localPort.remIdx.extra.addrSubtype.addrLen.octets... + for oid, value in walk_data.items(): + if not oid.startswith(LLDP_REM_MGMT + "3."): + continue + rest = oid[len(LLDP_REM_MGMT + "3."):] + parts = rest.split(".") + if len(parts) < 6: + continue + time_mark, local_port, rem_idx, extra = parts[0], parts[1], parts[2], parts[3] + addr_subtype = parts[4] + addr_len = int(parts[5]) if parts[5].isdigit() else 0 + addr_octets = parts[6:6 + addr_len] + + key = f"{local_port}.{rem_idx}" + if key not in rem_entries: + continue + + if addr_subtype == "1" and addr_len == 4: + # IPv4 + rem_entries[key]["mgmtIPv4"] = ".".join(addr_octets) + elif addr_subtype == "2" and addr_len == 16: + # IPv6 — group octets into hex pairs and collapse + hex_groups = [] + for i in range(0, 16, 2): + high = int(addr_octets[i]) if i < len(addr_octets) else 0 + low = int(addr_octets[i + 1]) if i + 1 < len(addr_octets) else 0 + hex_groups.append(f"{high:02x}{low:02x}") + ipv6 = ":".join(hex_groups) + # Basic compression: collapse leading zeros per group + ipv6 = ":".join(g.lstrip("0") or "0" for g in ipv6.split(":")) + rem_entries[key]["mgmtIPv6"] = ipv6 + + # Cross-reference localPort with interfaces to get port name + interfaces_map = output.get("interfaces", {}) + for entry in rem_entries.values(): + lp = entry.get("localPort", "") + if lp in interfaces_map: + iface = interfaces_map[lp] + entry["localPortName"] = iface.get("ifName") or iface.get("ifDescr", "") + + # Build lldp_neighbors as indexed dict + lldp_structured = OrderedDict() + for idx, (key, entry) in enumerate(sorted(rem_entries.items()), 1): + lldp_structured[str(idx)] = entry + if lldp_structured: + output["lldp_neighbors"] = lldp_structured + + # Parse per-port LLDP statistics + lldp_stats = OrderedDict() + stat_prefixes = [ + (LLDP_STATS_TX, "txFrames"), + (LLDP_STATS_RX, "rxFrames"), + (LLDP_STATS_NB, "neighborsLearned"), + ] + for prefix, field_name in stat_prefixes: + for oid, value in walk_data.items(): + if not oid.startswith(prefix): + continue + rest = oid[len(prefix):] + # Format: portNum.extra + port_parts = rest.split(".", 1) + port_num = port_parts[0] + if port_num not in lldp_stats: + lldp_stats[port_num] = {} + lldp_stats[port_num][field_name] = value + if lldp_stats: + output["lldp_stats"] = lldp_stats + + # Keep raw LLDP dump for backward compatibility + lldp_raw = OrderedDict() + for oid, value in walk_data.items(): + if oid.startswith(LLDP_PREFIX): + suffix = oid[len(LLDP_PREFIX):] + lldp_raw[f"lldp{suffix}"] = value + if lldp_raw: + output["lldp_raw"] = lldp_raw + + # ── 24. Module OID counts (summary) ── + counts = defaultdict(int) + for oid in walk_data: + module = resolver.get_module(oid) + counts[module] += 1 + output["_module_oid_counts"] = dict(sorted(counts.items(), + key=lambda x: x[1], reverse=True)) + + return output + + +def _decode_hex_string(val: str) -> str: + """ + Decode SNMP hex-encoded strings like '53 46 50 2D 4C 58 2D 53 4D 00 00...' + to ASCII 'SFP-LX-SM'. Returns original string if not hex-encoded. + """ + val = val.strip() + if not val: + return val + # Check if it looks like space-separated hex bytes + parts = val.split() + if len(parts) < 2: + return val + try: + byte_vals = [int(p, 16) for p in parts] + # Filter to printable ASCII, strip nulls + decoded = ''.join(chr(b) if 32 <= b < 127 else '' for b in byte_vals) + return decoded.strip() if decoded.strip() else val + except (ValueError, IndexError): + return val + + +def _extract_table(walk_data: dict, entry_prefix: str, + columns: dict) -> dict: + """ + Extract a table from walk data given the entry OID prefix and + column number -> name mapping. + + entry_prefix: e.g., ".1.3.6.1.4.1.22420.2.4.1.1" + columns: {"1": "id", "2": "connectorIdx", ...} + + Returns: {index: {col_name: value, ...}} + """ + table = defaultdict(OrderedDict) + prefix = entry_prefix + "." + + for oid, value in walk_data.items(): + if not oid.startswith(prefix): + continue + remainder = oid[len(prefix):] + parts = remainder.split(".", 1) + if len(parts) == 2: + col_num, idx = parts + elif len(parts) == 1: + col_num = parts[0] + idx = "0" + else: + continue + + col_name = columns.get(col_num, f"col_{col_num}") + table[idx][col_name] = value + + return dict(table) if table else {} + + +def build_tables_csv(monitoring: dict, output_file: Path): + """Write reconstructed tables as a single CSV with table_name, index, column, value.""" + table_sections = [ + "interfaces", "connectors", "power_supplies", "temperature_sensors", + "sfp_info", "sfp_diagnostics", "sfp_thresholds", + "alarm_config", "alarm_status", "port_config", "port_status", + ] + + with output_file.open("w", newline="", encoding="utf-8") as f: + writer = csv.writer(f) + writer.writerow(["table", "index", "column", "value"]) + + for section in table_sections: + if section not in monitoring: + continue + for idx, row in monitoring[section].items(): + for col, val in row.items(): + writer.writerow([section, idx, col, val]) + + # Also write scalars + if "device" in monitoring: + for col, val in monitoring["device"].items(): + writer.writerow(["device", "0", col, val]) + + if "alarm_general" in monitoring: + for col, val in monitoring["alarm_general"].items(): + writer.writerow(["alarm_general", "0", col, val]) + + +# ──────────────────────────────────────────────────────────────────────── +# CONSOLE REPORT +# ──────────────────────────────────────────────────────────────────────── + +def print_report(monitoring: dict): + """Print a human-readable summary to the console.""" + dev = monitoring.get("device", {}) + + print("\n" + "=" * 70) + print(" ACCEDIAN GT NID — SNMP WALK ANALYSIS") + print("=" * 70) + + print(f"\n Model: {dev.get('commercialName', 'N/A')}") + print(f" Hostname: {dev.get('identifier', dev.get('sysName', 'N/A'))}") + print(f" Firmware: {dev.get('firmwareVersion', 'N/A')}") + print(f" Serial: {dev.get('serialNumber', 'N/A')}") + print(f" HW Version: {dev.get('hardwareVersion', 'N/A')}") + print(f" MAC Base: {dev.get('macBaseAddr', 'N/A')}") + print(f" Uptime: {dev.get('sysUpTime', 'N/A')}") + cpu = dev.get("cpuUsageCurrent") + if cpu: + print(f" CPU: {cpu}% (15s avg: {dev.get('cpuUsageAvg15s', '?')}%)") + + # Interfaces + ifaces = monitoring.get("interfaces", {}) + if ifaces: + print(f"\n INTERFACES ({len(ifaces)}):") + print(f" {'Idx':<6} {'Name':<22} {'Admin':<7} {'Oper':<7} {'Speed':<12} {'MAC'}") + print(f" {'---':<6} {'----':<22} {'-----':<7} {'----':<7} {'-----':<12} {'---'}") + for idx in sorted(ifaces.keys(), key=lambda x: int(x) if x.isdigit() else 9999): + row = ifaces[idx] + name = row.get("ifDescr", row.get("ifName", "?")) + admin = row.get("ifAdminStatus", "?") + oper = row.get("ifOperStatus", "?") + speed = row.get("ifHighSpeed", row.get("ifSpeed", "?")) + if speed and speed != "?" and speed != "0": + try: + s = int(speed) + speed = f"{s} Mbps" if s < 10000 else f"{s // 1000} Gbps" + except ValueError: + pass + mac = row.get("ifPhysAddress", "") + print(f" {idx:<6} {name:<22} {admin:<7} {oper:<7} {speed:<12} {mac}") + + # Connectors + conns = monitoring.get("connectors", {}) + if conns: + print(f"\n CONNECTORS ({len(conns)}):") + for idx in sorted(conns.keys(), key=lambda x: int(x) if x.isdigit() else 0): + c = conns[idx] + print(f" [{idx}] {c.get('name', '?')} — type={c.get('type', '?')}, PoE={c.get('poeSupport', '?')}") + + # Power Supplies + pwr = monitoring.get("power_supplies", {}) + if pwr: + print(f"\n POWER SUPPLIES ({len(pwr)}):") + for idx in sorted(pwr.keys(), key=lambda x: int(x) if x.isdigit() else 0): + p = pwr[idx] + ptype = {"1": "+5V DC", "2": "-48V DC"}.get(p.get("type", ""), p.get("type", "?")) + present = "YES" if p.get("present") in ("1", "true") else "NO" + print(f" [{idx}] {p.get('name', '?')} — {ptype}, present={present}") + + # Temperature Sensors + temps = monitoring.get("temperature_sensors", {}) + if temps: + print(f"\n TEMPERATURE SENSORS ({len(temps)}):") + for idx in sorted(temps.keys(), key=lambda x: int(x) if x.isdigit() else 0): + t = temps[idx] + label = t.get("label", f"Sensor {idx}") + curr = t.get("currentTemp", "?") + high = t.get("highThreshold", "?") + crit = t.get("criticalThreshold", "?") + print(f" [{idx}] {label}: {curr}°C (warn={high}°C, crit={crit}°C)") + + # SFP Info + Diagnostics + sfp_info = monitoring.get("sfp_info", {}) + sfp_diag = monitoring.get("sfp_diagnostics", {}) + if sfp_info: + print(f"\n SFP TRANSCEIVERS ({len(sfp_info)}):") + for idx in sorted(sfp_info.keys(), key=lambda x: int(x) if x.isdigit() else 0): + s = sfp_info[idx] + present = s.get("present", "?") + if present in ("2", "false"): + print(f" [SFP-{idx}] NOT PRESENT") + continue + vendor = _decode_hex_string(s.get("vendor", "?")).strip() + pn = _decode_hex_string(s.get("vendorPn", "?")).strip() + sn = s.get("serialNum", "?").strip() + wl = s.get("wavelength", "?") + wl_str = f"{wl}nm" if wl and wl != "0" and wl != "?" else "" + print(f" [SFP-{idx}] {vendor} {pn} {wl_str}") + print(f" S/N: {sn}") + + # Diagnostics + diag = sfp_diag.get(idx, {}) + if diag: + tx = diag.get("txPower_dBm", "?").strip().strip('"') + rx = diag.get("rxPower_dBm", "?").strip().strip('"') + temp = diag.get("temperature", "?") + vcc = diag.get("supplyVoltage", "?") + lbc = diag.get("laserBiasCurrent", "?") + # Format Vcc (raw value in 100uV units -> volts) + try: + vcc_v = int(vcc) / 10000.0 + vcc = f"{vcc_v:.2f}V" + except (ValueError, TypeError): + pass + print(f" TX: {tx} | RX: {rx}") + print(f" Temp: {temp}°C | Vcc: {vcc} | LBC: {lbc} uA") + + # Active Alarms Summary + alarm_status = monitoring.get("alarm_status", {}) + alarm_cfg = monitoring.get("alarm_config", {}) + if alarm_status: + active = [(idx, a) for idx, a in alarm_status.items() + if a.get("active") in ("1", "true")] + print(f"\n ALARMS: {len(active)} active / {len(alarm_status)} total") + if active: + for idx, a in active[:20]: + cfg = alarm_cfg.get(idx, {}) + desc = cfg.get("description", a.get("message", "?")) + sev_map = {"0": "INFO", "1": "MINOR", "2": "MAJOR", "3": "CRIT"} + sev = sev_map.get(cfg.get("severity", ""), "?") + print(f" [{sev:>5}] {desc}") + elif alarm_cfg: + print(f"\n ALARMS: {len(alarm_cfg)} configured (no active status data)") + + # Module OID counts + counts = monitoring.get("_module_oid_counts", {}) + if counts: + print(f"\n OID DISTRIBUTION BY MODULE:") + total = sum(counts.values()) + for module, count in counts.items(): + pct = count / total * 100 + bar = "#" * int(pct / 2) + print(f" {module:<28} {count:>6} ({pct:>5.1f}%) {bar}") + + print("\n" + "=" * 70) + + +# ──────────────────────────────────────────────────────────────────────── +# MAIN +# ──────────────────────────────────────────────────────────────────────── + +def main(): + walk_file = Path(sys.argv[1]).expanduser() if len(sys.argv) > 1 else DEFAULT_WALK + + if not walk_file.is_file(): + print(f"Error: Walk file not found: {walk_file}", file=sys.stderr) + sys.exit(1) + + base = walk_file.with_suffix("") + out_resolved = base.parent / (base.name + "_resolved.json") + out_monitoring = base.parent / (base.name + "_monitoring.json") + out_tables = base.parent / (base.name + "_tables.csv") + + print(f"Input: {walk_file}") + print(f"MIBs: {MIB_DIR}") + print(f"Output: {out_resolved}") + print(f" {out_monitoring}") + print(f" {out_tables}") + + # ── Load MIBs ── + print("\nParsing Accedian MIB files...") + accedian_map = parse_mib_files(MIB_DIR) + print(f" Resolved {len(accedian_map)} OID names from MIB files") + + # ── Build resolver ── + resolver = OIDResolver(accedian_map, STANDARD_OID_MAP) + + # ── Parse walk ── + print("\nParsing walk file...") + walk_data, skipped = parse_walk_file(walk_file) + print(f" Parsed {len(walk_data):,} OIDs (skipped {skipped:,} lines)") + + # ── Resolve and count ── + resolved_count = 0 + unresolved_count = 0 + for oid in walk_data: + name, idx, info = resolver.resolve(oid) + if name: + resolved_count += 1 + else: + unresolved_count += 1 + print(f" Resolved: {resolved_count:,} ({resolved_count/len(walk_data)*100:.1f}%)") + print(f" Unresolved: {unresolved_count:,} ({unresolved_count/len(walk_data)*100:.1f}%)") + + # ── Build outputs ── + print("\nBuilding structured outputs...") + + resolved = build_resolved_output(walk_data, resolver) + with out_resolved.open("w", encoding="utf-8") as f: + json.dump(resolved, f, indent=2, ensure_ascii=False) + print(f" -> {out_resolved.name} ({out_resolved.stat().st_size:,} bytes)") + + monitoring = build_monitoring_output(walk_data, resolver) + with out_monitoring.open("w", encoding="utf-8") as f: + json.dump(monitoring, f, indent=2, ensure_ascii=False) + print(f" -> {out_monitoring.name} ({out_monitoring.stat().st_size:,} bytes)") + + build_tables_csv(monitoring, out_tables) + print(f" -> {out_tables.name} ({out_tables.stat().st_size:,} bytes)") + + # ── Console report ── + print_report(monitoring) + + print(f"\nDone. Files saved to {walk_file.parent}/") + + +if __name__ == "__main__": + main() diff --git a/snmp-tojson.py b/snmp-tojson.py new file mode 100644 index 0000000..7a07dd4 --- /dev/null +++ b/snmp-tojson.py @@ -0,0 +1,130 @@ +#!/usr/bin/env python3 +""" +SNMP Walk Parser - Combined Nested JSON + Flat CSV + Basic Analysis + +Reads a snmpwalk output file (net-snmp style with -On -OQ format) +Creates: +- nested JSON tree +- flat CSV with oid + value columns +- shows basic statistics and example filters +""" + +import json +import re +import sys +from pathlib import Path +import pandas as pd + +# ──────────────────────────────────────────────── +# CONFIG - change these as needed +# ──────────────────────────────────────────────── + +INPUT_FILE = Path("~/snmp-walks/10-13-60-102_2026-02-27_11-23-07_walk.txt").expanduser() + +# Where to save results (same folder as input by default) +OUTPUT_JSON = INPUT_FILE.with_suffix('.tree.json') +OUTPUT_CSV = INPUT_FILE.with_suffix('.flat.csv') + +# ──────────────────────────────────────────────── +# Helper functions +# ──────────────────────────────────────────────── + +def parse_line(line: str) -> tuple[str, str] | None: + """Split oid and value, clean value quotes""" + line = line.strip() + if not line or 'No more variables left' in line: + return None + + # Matches: .1.3.6.1.... "value with \"escaped\" quotes" or .1.3.6.1.... 12345 + match = re.match(r'^(\.\d+(?:\.\d+)*)\s+(.*)$', line) + if not match: + return None + + oid, value = match.groups() + value = value.strip() + + # Remove surrounding quotes if present (simple case) + if value.startswith('"') and value.endswith('"'): + value = value[1:-1] + + # Optional: you could add more cleaning here (unescape \", etc.) + return oid, value + + +def build_nested_tree(flat_data: dict[str, str]) -> dict: + """Convert flat oid → value into nested dictionary""" + tree = {} + for oid, value in flat_data.items(): + parts = oid.lstrip('.').split('.') + current = tree + for part in parts[:-1]: + current = current.setdefault(part, {}) + current[parts[-1]] = value + return tree + + +def main(): + if not INPUT_FILE.is_file(): + print(f"File not found: {INPUT_FILE}", file=sys.stderr) + sys.exit(1) + + print(f"Reading: {INPUT_FILE}") + print(f"Output: {OUTPUT_JSON}") + print(f" {OUTPUT_CSV}\n") + + # ── Parse file ─────────────────────────────────────── + flat_data = {} # oid → value + skipped = 0 + + with INPUT_FILE.open(encoding='utf-8', errors='replace') as f: + for line in f: + result = parse_line(line) + if result: + oid, value = result + flat_data[oid] = value + else: + skipped += 1 + + print(f"Parsed {len(flat_data):,} OIDs (skipped {skipped:,} lines)\n") + + # ── 1. Nested JSON tree ────────────────────────────── + tree = build_nested_tree(flat_data) + + with OUTPUT_JSON.open('w', encoding='utf-8') as f: + json.dump(tree, f, indent=2, ensure_ascii=False) + + print(f"→ Nested tree saved: {OUTPUT_JSON}") + + # ── 2. Flat DataFrame + CSV ────────────────────────── + df = pd.DataFrame.from_dict(flat_data, orient='index', columns=['value']) + df.index.name = 'oid' + df = df.reset_index() + + df.to_csv(OUTPUT_CSV, index=False, encoding='utf-8') + print(f"→ Flat table saved: {OUTPUT_CSV}") + + # ── Quick console summary & examples ───────────────── + print("\nQuick summary:") + print(f"Total entries: {len(df):,}") + print(f"Unique OID prefixes (top 8):") + df['prefix'] = df['oid'].str.replace(r'\.\d+$', '', regex=True) + print(df['prefix'].value_counts().head(8)) + + print("\nExample: System group (.1.3.6.1.2.1.1)") + system = df[df['oid'].str.startswith('.1.3.6.1.2.1.1')] + if not system.empty: + print(system[['oid', 'value']].to_string(index=False)) + else: + print("→ No system group entries found") + + print("\nExample: Interface descriptions (.1.3.6.1.2.1.2.2.1.2)") + ifaces = df[df['oid'].str.contains(r'\.1\.3\.6\.1\.2\.1\.2\.2\.1\.2\b')] + if not ifaces.empty: + print(ifaces[['oid', 'value']].to_string(index=False)) + else: + print("→ No interface descriptions found") + + print("\nDone. Open the .json or .csv file in VS Code / Excel / pandas.") + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/walks/10-13-60-102_2026-02-27_11-19-10_errors.txt b/walks/10-13-60-102_2026-02-27_11-19-10_errors.txt new file mode 100644 index 0000000..8e4d3f8 --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-19-10_errors.txt @@ -0,0 +1 @@ +Unknown flag passed to -C: r diff --git a/walks/10-13-60-102_2026-02-27_11-19-10_walk.txt b/walks/10-13-60-102_2026-02-27_11-19-10_walk.txt new file mode 100644 index 0000000..e69de29 diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_errors.txt b/walks/10-13-60-102_2026-02-27_11-23-07_errors.txt new file mode 100644 index 0000000..e69de29 diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_walk.flat.csv b/walks/10-13-60-102_2026-02-27_11-23-07_walk.flat.csv new file mode 100644 index 0000000..bac0d31 --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-23-07_walk.flat.csv @@ -0,0 +1,33704 @@ +oid,value +.1.3.6.1.2.1.1.1.0,= AMN-1000-GT-S +.1.3.6.1.2.1.1.2.0,= .1.3.6.1.4.1.22420.1.1 +.1.3.6.1.2.1.1.3.0,= 0:0:41:41.00 +.1.3.6.1.2.1.1.4.0,= root +.1.3.6.1.2.1.1.5.0,= LABNID-NID12-DC-MTSO-Pri.alluvion.net +.1.3.6.1.2.1.1.6.0,= Unknown +.1.3.6.1.2.1.1.7.0,= 127 +.1.3.6.1.2.1.1.8.0,= 0:0:00:00.32 +.1.3.6.1.2.1.1.9.1.2.1,= .1.3.6.1.4.1.22420.2.1 +.1.3.6.1.2.1.1.9.1.2.2,= .1.3.6.1.4.1.22420.2.2 +.1.3.6.1.2.1.1.9.1.2.3,= .1.3.6.1.4.1.22420.2.3 +.1.3.6.1.2.1.1.9.1.2.4,= .1.3.6.1.4.1.22420.2.4 +.1.3.6.1.2.1.1.9.1.2.5,= .1.3.6.1.4.1.22420.2.5 +.1.3.6.1.2.1.1.9.1.2.6,= .1.3.6.1.4.1.22420.2.6 +.1.3.6.1.2.1.1.9.1.2.7,= .1.3.6.1.4.1.22420.2.7 +.1.3.6.1.2.1.1.9.1.2.8,= .1.3.6.1.4.1.22420.2.8 +.1.3.6.1.2.1.1.9.1.2.9,= .1.3.6.1.4.1.22420.2.9 +.1.3.6.1.2.1.1.9.1.2.10,= .1.3.6.1.4.1.22420.2.10 +.1.3.6.1.2.1.1.9.1.2.11,= .1.3.6.1.4.1.22420.2.11 +.1.3.6.1.2.1.1.9.1.2.12,= .1.3.6.1.4.1.22420.2.12 +.1.3.6.1.2.1.1.9.1.2.13,= .1.3.6.1.6.3.1 +.1.3.6.1.2.1.1.9.1.2.14,= .1.3.6.1.2.1.49 +.1.3.6.1.2.1.1.9.1.2.15,= .1.3.6.1.2.1.4 +.1.3.6.1.2.1.1.9.1.2.16,= .1.3.6.1.2.1.50 +.1.3.6.1.2.1.1.9.1.2.17,= .1.3.6.1.6.3.16.2.2.1 +.1.3.6.1.2.1.1.9.1.2.18,= .1.3.6.1.6.3.13.3.1.3 +.1.3.6.1.2.1.1.9.1.2.19,= .1.3.6.1.2.1.92 +.1.3.6.1.2.1.1.9.1.3.1,= The management information definitions for the ACD-ALARM-MIB. +.1.3.6.1.2.1.1.9.1.3.2,= The management information definitions for the ACD-FILTER-MIB. +.1.3.6.1.2.1.1.9.1.3.3,= The management information definitions for the ACD-POLICY-MIB. +.1.3.6.1.2.1.1.9.1.3.4,= The management information definitions for the ACD-SFP-MIB. +.1.3.6.1.2.1.1.9.1.3.5,= The management information definitions for the ACD-PAA-MIB. +.1.3.6.1.2.1.1.9.1.3.6,= The management information definitions for the ACD-REGULATOR-MIB. +.1.3.6.1.2.1.1.9.1.3.7,= The management information definitions for the ACD-CFM-MIB. +.1.3.6.1.2.1.1.9.1.3.8,= The management information definitions for the ACD-SMAP-MIB. +.1.3.6.1.2.1.1.9.1.3.9,= The management information definitions for the ACD-PORT-MIB. +.1.3.6.1.2.1.1.9.1.3.10,= The management information definitions for the ACD-SHAPER-MIB. +.1.3.6.1.2.1.1.9.1.3.11,= The management information definitions for the ACD-DISCOVER-MIB. +.1.3.6.1.2.1.1.9.1.3.12,= The management information definitions for the ACD-SA-MIB. +.1.3.6.1.2.1.1.9.1.3.13,= The MIB module for SNMPv2 entities +.1.3.6.1.2.1.1.9.1.3.14,= The MIB module for managing TCP implementations +.1.3.6.1.2.1.1.9.1.3.15,= The MIB module for managing IP and ICMP implementations +.1.3.6.1.2.1.1.9.1.3.16,= The MIB module for managing UDP implementations +.1.3.6.1.2.1.1.9.1.3.17,= View-based Access Control Model for SNMP. +.1.3.6.1.2.1.1.9.1.3.18,"= The MIB modules for managing SNMP Notification, plus filtering." +.1.3.6.1.2.1.1.9.1.3.19,= The MIB module for logging SNMP Notifications. +.1.3.6.1.2.1.1.9.1.4.1,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.2,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.3,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.4,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.5,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.6,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.7,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.8,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.9,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.10,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.11,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.12,= 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.13,= 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.14,= 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.15,= 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.16,= 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.17,= 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.18,= 0:0:00:00.15 +.1.3.6.1.2.1.1.9.1.4.19,= 0:0:00:00.32 +.1.3.6.1.2.1.2.1.0,= 8 +.1.3.6.1.2.1.2.2.1.1.1,= 1 +.1.3.6.1.2.1.2.2.1.1.2,= 2 +.1.3.6.1.2.1.2.2.1.1.3,= 3 +.1.3.6.1.2.1.2.2.1.1.4,= 4 +.1.3.6.1.2.1.2.2.1.1.5,= 5 +.1.3.6.1.2.1.2.2.1.1.6,= 6 +.1.3.6.1.2.1.2.2.1.1.7,= 7 +.1.3.6.1.2.1.2.2.1.1.1003,= 1003 +.1.3.6.1.2.1.2.2.1.2.1,= EVEN_VLAN_UPLINK +.1.3.6.1.2.1.2.2.1.2.2,= ODD_VLAN_UPLINK +.1.3.6.1.2.1.2.2.1.2.3,= EVEN_VLAN_DOWNLIN +.1.3.6.1.2.1.2.2.1.2.4,= ODD_VLAN_DOWNLINK +.1.3.6.1.2.1.2.2.1.2.5,= Management +.1.3.6.1.2.1.2.2.1.2.6,= LAG-1 +.1.3.6.1.2.1.2.2.1.2.7,= LAG-2 +.1.3.6.1.2.1.2.2.1.2.1003,= VLAN_MGMT +.1.3.6.1.2.1.2.2.1.3.1,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.2,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.3,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.4,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.5,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.6,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.7,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.1003,= ethernetCsmacd +.1.3.6.1.2.1.2.2.1.4.1,= 4096 +.1.3.6.1.2.1.2.2.1.4.2,= 4096 +.1.3.6.1.2.1.2.2.1.4.3,= 2000 +.1.3.6.1.2.1.2.2.1.4.4,= 4096 +.1.3.6.1.2.1.2.2.1.4.5,= 2000 +.1.3.6.1.2.1.2.2.1.4.6,= 10240 +.1.3.6.1.2.1.2.2.1.4.7,= 10240 +.1.3.6.1.2.1.2.2.1.4.1003,= 2000 +.1.3.6.1.2.1.2.2.1.5.1,= 1000000000 +.1.3.6.1.2.1.2.2.1.5.2,= 0 +.1.3.6.1.2.1.2.2.1.5.3,= 0 +.1.3.6.1.2.1.2.2.1.5.4,= 0 +.1.3.6.1.2.1.2.2.1.5.5,= 100000000 +.1.3.6.1.2.1.2.2.1.5.6,= 0 +.1.3.6.1.2.1.2.2.1.5.7,= 0 +.1.3.6.1.2.1.2.2.1.5.1003,= 0 +.1.3.6.1.2.1.2.2.1.6.1,= 0:15:ad:47:3e:61 +.1.3.6.1.2.1.2.2.1.6.2,= 0:15:ad:47:3e:62 +.1.3.6.1.2.1.2.2.1.6.3,= 0:15:ad:47:3e:63 +.1.3.6.1.2.1.2.2.1.6.4,= 0:15:ad:47:3e:64 +.1.3.6.1.2.1.2.2.1.6.5,= 0:15:ad:47:3e:65 +.1.3.6.1.2.1.2.2.1.6.6,= 0:15:ad:47:3e:61 +.1.3.6.1.2.1.2.2.1.6.7,= 0:15:ad:47:3e:63 +.1.3.6.1.2.1.2.2.1.6.1003,= 0:15:ad:47:3e:65 +.1.3.6.1.2.1.2.2.1.7.1,= up +.1.3.6.1.2.1.2.2.1.7.2,= up +.1.3.6.1.2.1.2.2.1.7.3,= up +.1.3.6.1.2.1.2.2.1.7.4,= up +.1.3.6.1.2.1.2.2.1.7.5,= up +.1.3.6.1.2.1.2.2.1.7.6,= up +.1.3.6.1.2.1.2.2.1.7.7,= up +.1.3.6.1.2.1.2.2.1.7.1003,= up +.1.3.6.1.2.1.2.2.1.8.1,= up +.1.3.6.1.2.1.2.2.1.8.2,= down +.1.3.6.1.2.1.2.2.1.8.3,= down +.1.3.6.1.2.1.2.2.1.8.4,= down +.1.3.6.1.2.1.2.2.1.8.5,= up +.1.3.6.1.2.1.2.2.1.8.6,= down +.1.3.6.1.2.1.2.2.1.8.7,= down +.1.3.6.1.2.1.2.2.1.8.1003,= up +.1.3.6.1.2.1.2.2.1.9.1,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.2,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.3,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.4,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.5,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.6,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.7,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.1003,= 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.10.1,= 4223389593 +.1.3.6.1.2.1.2.2.1.10.2,= 135053161 +.1.3.6.1.2.1.2.2.1.10.3,= 2194071425 +.1.3.6.1.2.1.2.2.1.10.4,= 314336220 +.1.3.6.1.2.1.2.2.1.10.5,= 3877078151 +.1.3.6.1.2.1.2.2.1.10.6,= 0 +.1.3.6.1.2.1.2.2.1.10.7,= 0 +.1.3.6.1.2.1.2.2.1.10.1003,= 0 +.1.3.6.1.2.1.2.2.1.11.1,= 12685439 +.1.3.6.1.2.1.2.2.1.11.2,= 0 +.1.3.6.1.2.1.2.2.1.11.3,= 13188103 +.1.3.6.1.2.1.2.2.1.11.4,= 0 +.1.3.6.1.2.1.2.2.1.11.5,= 6684985 +.1.3.6.1.2.1.2.2.1.11.6,= 0 +.1.3.6.1.2.1.2.2.1.11.7,= 0 +.1.3.6.1.2.1.2.2.1.11.1003,= 0 +.1.3.6.1.2.1.2.2.1.12.1,= 2119675 +.1.3.6.1.2.1.2.2.1.12.2,= 755129 +.1.3.6.1.2.1.2.2.1.12.3,= 1854554 +.1.3.6.1.2.1.2.2.1.12.4,= 2381335 +.1.3.6.1.2.1.2.2.1.12.5,= 1350437934 +.1.3.6.1.2.1.2.2.1.12.6,= 0 +.1.3.6.1.2.1.2.2.1.12.7,= 0 +.1.3.6.1.2.1.2.2.1.12.1003,= 0 +.1.3.6.1.2.1.2.2.1.13.1,= 0 +.1.3.6.1.2.1.2.2.1.13.2,= 0 +.1.3.6.1.2.1.2.2.1.13.3,= 0 +.1.3.6.1.2.1.2.2.1.13.4,= 0 +.1.3.6.1.2.1.2.2.1.13.5,= 0 +.1.3.6.1.2.1.2.2.1.13.6,= 0 +.1.3.6.1.2.1.2.2.1.13.7,= 0 +.1.3.6.1.2.1.2.2.1.13.1003,= 0 +.1.3.6.1.2.1.2.2.1.14.1,= 0 +.1.3.6.1.2.1.2.2.1.14.2,= 0 +.1.3.6.1.2.1.2.2.1.14.3,= 0 +.1.3.6.1.2.1.2.2.1.14.4,= 0 +.1.3.6.1.2.1.2.2.1.14.5,= 0 +.1.3.6.1.2.1.2.2.1.14.6,= 0 +.1.3.6.1.2.1.2.2.1.14.7,= 0 +.1.3.6.1.2.1.2.2.1.14.1003,= 0 +.1.3.6.1.2.1.2.2.1.15.1,= 0 +.1.3.6.1.2.1.2.2.1.15.2,= 0 +.1.3.6.1.2.1.2.2.1.15.3,= 0 +.1.3.6.1.2.1.2.2.1.15.4,= 0 +.1.3.6.1.2.1.2.2.1.15.5,= 0 +.1.3.6.1.2.1.2.2.1.15.6,= 0 +.1.3.6.1.2.1.2.2.1.15.7,= 0 +.1.3.6.1.2.1.2.2.1.15.1003,= 0 +.1.3.6.1.2.1.2.2.1.16.1,= 2365165170 +.1.3.6.1.2.1.2.2.1.16.2,= 110445216 +.1.3.6.1.2.1.2.2.1.16.3,= 3499102118 +.1.3.6.1.2.1.2.2.1.16.4,= 354824130 +.1.3.6.1.2.1.2.2.1.16.5,= 1386639353 +.1.3.6.1.2.1.2.2.1.16.6,= 0 +.1.3.6.1.2.1.2.2.1.16.7,= 0 +.1.3.6.1.2.1.2.2.1.16.1003,= 0 +.1.3.6.1.2.1.2.2.1.17.1,= 20489370 +.1.3.6.1.2.1.2.2.1.17.2,= 0 +.1.3.6.1.2.1.2.2.1.17.3,= 12156384 +.1.3.6.1.2.1.2.2.1.17.4,= 0 +.1.3.6.1.2.1.2.2.1.17.5,= 8706162 +.1.3.6.1.2.1.2.2.1.17.6,= 0 +.1.3.6.1.2.1.2.2.1.17.7,= 0 +.1.3.6.1.2.1.2.2.1.17.1003,= 0 +.1.3.6.1.2.1.2.2.1.18.1,= 1327175 +.1.3.6.1.2.1.2.2.1.18.2,= 751328 +.1.3.6.1.2.1.2.2.1.18.3,= 1854538 +.1.3.6.1.2.1.2.2.1.18.4,= 2381370 +.1.3.6.1.2.1.2.2.1.18.5,= 558852 +.1.3.6.1.2.1.2.2.1.18.6,= 0 +.1.3.6.1.2.1.2.2.1.18.7,= 0 +.1.3.6.1.2.1.2.2.1.18.1003,= 0 +.1.3.6.1.2.1.2.2.1.19.1,= 0 +.1.3.6.1.2.1.2.2.1.19.2,= 0 +.1.3.6.1.2.1.2.2.1.19.3,= 0 +.1.3.6.1.2.1.2.2.1.19.4,= 0 +.1.3.6.1.2.1.2.2.1.19.5,= 0 +.1.3.6.1.2.1.2.2.1.19.6,= 0 +.1.3.6.1.2.1.2.2.1.19.7,= 0 +.1.3.6.1.2.1.2.2.1.19.1003,= 0 +.1.3.6.1.2.1.2.2.1.20.1,= 0 +.1.3.6.1.2.1.2.2.1.20.2,= 0 +.1.3.6.1.2.1.2.2.1.20.3,= 0 +.1.3.6.1.2.1.2.2.1.20.4,= 0 +.1.3.6.1.2.1.2.2.1.20.5,= 0 +.1.3.6.1.2.1.2.2.1.20.6,= 0 +.1.3.6.1.2.1.2.2.1.20.7,= 0 +.1.3.6.1.2.1.2.2.1.20.1003,= 0 +.1.3.6.1.2.1.2.2.1.21.1,= 0 +.1.3.6.1.2.1.2.2.1.21.2,= 0 +.1.3.6.1.2.1.2.2.1.21.3,= 0 +.1.3.6.1.2.1.2.2.1.21.4,= 0 +.1.3.6.1.2.1.2.2.1.21.5,= 0 +.1.3.6.1.2.1.2.2.1.21.6,= 0 +.1.3.6.1.2.1.2.2.1.21.7,= 0 +.1.3.6.1.2.1.2.2.1.21.1003,= 0 +.1.3.6.1.2.1.2.2.1.22.1,= .0.0 +.1.3.6.1.2.1.2.2.1.22.2,= .0.0 +.1.3.6.1.2.1.2.2.1.22.3,= .0.0 +.1.3.6.1.2.1.2.2.1.22.4,= .0.0 +.1.3.6.1.2.1.2.2.1.22.5,= .0.0 +.1.3.6.1.2.1.2.2.1.22.6,= .0.0 +.1.3.6.1.2.1.2.2.1.22.7,= .0.0 +.1.3.6.1.2.1.2.2.1.22.1003,= .0.0 +.1.3.6.1.2.1.4.1.0,= notForwarding +.1.3.6.1.2.1.4.2.0,= 64 +.1.3.6.1.2.1.4.3.0,= 11758115 +.1.3.6.1.2.1.4.4.0,= 0 +.1.3.6.1.2.1.4.5.0,= 25342 +.1.3.6.1.2.1.4.6.0,= 0 +.1.3.6.1.2.1.4.7.0,= 1346100 +.1.3.6.1.2.1.4.8.0,= 0 +.1.3.6.1.2.1.4.9.0,= 10386667 +.1.3.6.1.2.1.4.10.0,= 24102802 +.1.3.6.1.2.1.4.11.0,= 0 +.1.3.6.1.2.1.4.12.0,= 0 +.1.3.6.1.2.1.4.13.0,= 30 seconds +.1.3.6.1.2.1.4.14.0,= 10 +.1.3.6.1.2.1.4.15.0,= 4 +.1.3.6.1.2.1.4.16.0,= 0 +.1.3.6.1.2.1.4.17.0,= 8526 +.1.3.6.1.2.1.4.18.0,= 0 +.1.3.6.1.2.1.4.19.0,= 17052 +.1.3.6.1.2.1.4.20.1.1.10.13.60.102,= 10.13.60.102 +.1.3.6.1.2.1.4.20.1.1.127.0.0.1,= 127.0.0.1 +.1.3.6.1.2.1.4.20.1.1.192.168.1.254,= 192.168.1.254 +.1.3.6.1.2.1.4.20.1.2.10.13.60.102,= 15 +.1.3.6.1.2.1.4.20.1.2.127.0.0.1,= 1 +.1.3.6.1.2.1.4.20.1.2.192.168.1.254,= 10 +.1.3.6.1.2.1.4.20.1.3.10.13.60.102,= 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.127.0.0.1,= 255.0.0.0 +.1.3.6.1.2.1.4.20.1.3.192.168.1.254,= 255.255.255.0 +.1.3.6.1.2.1.4.20.1.4.10.13.60.102,= 1 +.1.3.6.1.2.1.4.20.1.4.127.0.0.1,= 0 +.1.3.6.1.2.1.4.20.1.4.192.168.1.254,= 1 +.1.3.6.1.2.1.4.21.1.1.0.0.0.0,= 0.0.0.0 +.1.3.6.1.2.1.4.21.1.1.10.13.60.0,= 10.13.60.0 +.1.3.6.1.2.1.4.21.1.1.127.0.0.0,= 127.0.0.0 +.1.3.6.1.2.1.4.21.1.1.192.168.1.0,= 192.168.1.0 +.1.3.6.1.2.1.4.21.1.2.0.0.0.0,= 15 +.1.3.6.1.2.1.4.21.1.2.10.13.60.0,= 15 +.1.3.6.1.2.1.4.21.1.2.127.0.0.0,= 1 +.1.3.6.1.2.1.4.21.1.2.192.168.1.0,= 10 +.1.3.6.1.2.1.4.21.1.3.0.0.0.0,= 1 +.1.3.6.1.2.1.4.21.1.3.10.13.60.0,= 0 +.1.3.6.1.2.1.4.21.1.3.127.0.0.0,= 0 +.1.3.6.1.2.1.4.21.1.3.192.168.1.0,= 0 +.1.3.6.1.2.1.4.21.1.7.0.0.0.0,= 10.13.60.1 +.1.3.6.1.2.1.4.21.1.7.10.13.60.0,= 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.127.0.0.0,= 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.1.0,= 0.0.0.0 +.1.3.6.1.2.1.4.21.1.8.0.0.0.0,= 4 +.1.3.6.1.2.1.4.21.1.8.10.13.60.0,= 3 +.1.3.6.1.2.1.4.21.1.8.127.0.0.0,= 3 +.1.3.6.1.2.1.4.21.1.8.192.168.1.0,= 3 +.1.3.6.1.2.1.4.21.1.9.0.0.0.0,= 2 +.1.3.6.1.2.1.4.21.1.9.10.13.60.0,= 2 +.1.3.6.1.2.1.4.21.1.9.127.0.0.0,= 2 +.1.3.6.1.2.1.4.21.1.9.192.168.1.0,= 2 +.1.3.6.1.2.1.4.21.1.11.0.0.0.0,= 0.0.0.0 +.1.3.6.1.2.1.4.21.1.11.10.13.60.0,= 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.127.0.0.0,= 255.0.0.0 +.1.3.6.1.2.1.4.21.1.11.192.168.1.0,= 255.255.255.0 +.1.3.6.1.2.1.4.21.1.13.0.0.0.0,= .0.0 +.1.3.6.1.2.1.4.21.1.13.10.13.60.0,= .0.0 +.1.3.6.1.2.1.4.21.1.13.127.0.0.0,= .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.1.0,= .0.0 +.1.3.6.1.2.1.4.22.1.1.15.10.13.60.1,= 15 +.1.3.6.1.2.1.4.22.1.2.15.10.13.60.1,= b4:c:25:e0:40:6a +.1.3.6.1.2.1.4.22.1.3.15.10.13.60.1,= 10.13.60.1 +.1.3.6.1.2.1.4.22.1.4.15.10.13.60.1,= dynamic +.1.3.6.1.2.1.4.23.0,= 0 +.1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.13.60.1,= 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.10.13.60.0.255.255.255.0.0.0.0.0.0,= 10.13.60.0 +.1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.255.0.0.0.0.0.0.0.0,= 127.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.1.0.255.255.255.0.0.0.0.0.0,= 192.168.1.0 +.1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.13.60.1,= 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.10.13.60.0.255.255.255.0.0.0.0.0.0,= 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.255.0.0.0.0.0.0.0.0,= 255.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.1.0.255.255.255.0.0.0.0.0.0,= 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.13.60.1,= 0 +.1.3.6.1.2.1.4.24.4.1.3.10.13.60.0.255.255.255.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.255.0.0.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.1.0.255.255.255.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.13.60.1,= 10.13.60.1 +.1.3.6.1.2.1.4.24.4.1.4.10.13.60.0.255.255.255.0.0.0.0.0.0,= 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.255.0.0.0.0.0.0.0.0,= 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.1.0.255.255.255.0.0.0.0.0.0,= 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.13.60.1,= 15 +.1.3.6.1.2.1.4.24.4.1.5.10.13.60.0.255.255.255.0.0.0.0.0.0,= 15 +.1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.255.0.0.0.0.0.0.0.0,= 1 +.1.3.6.1.2.1.4.24.4.1.5.192.168.1.0.255.255.255.0.0.0.0.0.0,= 10 +.1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.13.60.1,= remote +.1.3.6.1.2.1.4.24.4.1.6.10.13.60.0.255.255.255.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.255.0.0.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.4.1.6.192.168.1.0.255.255.255.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.13.60.1,= local +.1.3.6.1.2.1.4.24.4.1.7.10.13.60.0.255.255.255.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.255.0.0.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.4.1.7.192.168.1.0.255.255.255.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.13.60.1,= .0.0 +.1.3.6.1.2.1.4.24.4.1.9.10.13.60.0.255.255.255.0.0.0.0.0.0,= .0.0 +.1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.255.0.0.0.0.0.0.0.0,= .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.1.0.255.255.255.0.0.0.0.0.0,= .0.0 +.1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.13.60.1,= 0 +.1.3.6.1.2.1.4.24.4.1.10.10.13.60.0.255.255.255.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.255.0.0.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.1.0.255.255.255.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.13.60.1,= 0 +.1.3.6.1.2.1.4.24.4.1.11.10.13.60.0.255.255.255.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.255.0.0.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.1.0.255.255.255.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.4.1.12.10.13.60.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.255.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.1.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.4.1.13.10.13.60.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.255.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.1.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.4.1.14.10.13.60.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.255.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.1.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.4.1.15.10.13.60.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.255.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.1.0.255.255.255.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.13.60.1,= active +.1.3.6.1.2.1.4.24.4.1.16.10.13.60.0.255.255.255.0.0.0.0.0.0,= active +.1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.255.0.0.0.0.0.0.0.0,= active +.1.3.6.1.2.1.4.24.4.1.16.192.168.1.0.255.255.255.0.0.0.0.0.0,= active +.1.3.6.1.2.1.4.24.6.0,= 5 +.1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= 15 +.1.3.6.1.2.1.4.24.7.1.7.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= 15 +.1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= 1 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= 10 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= 5 +.1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= remote +.1.3.6.1.2.1.4.24.7.1.8.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= local +.1.3.6.1.2.1.4.24.7.1.9.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= local +.1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= 256 +.1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= -1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1,= active +.1.3.6.1.2.1.4.24.7.1.17.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0,= active +.1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0,= active +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0,= active +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0,= active +.1.3.6.1.2.1.4.25.0,= notForwarding +.1.3.6.1.2.1.4.26.0,= 64 +.1.3.6.1.2.1.4.31.1.1.3.1,= 11757840 +.1.3.6.1.2.1.4.31.1.1.3.2,= 155258538 +.1.3.6.1.2.1.4.31.1.1.4.1,= 11757840 +.1.3.6.1.2.1.4.31.1.1.4.2,= 155258538 +.1.3.6.1.2.1.4.31.1.1.6.1,= 0 +.1.3.6.1.2.1.4.31.1.1.6.2,= 0 +.1.3.6.1.2.1.4.31.1.1.7.1,= 0 +.1.3.6.1.2.1.4.31.1.1.7.2,= 0 +.1.3.6.1.2.1.4.31.1.1.9.1,= 25342 +.1.3.6.1.2.1.4.31.1.1.9.2,= 0 +.1.3.6.1.2.1.4.31.1.1.10.1,= 1346100 +.1.3.6.1.2.1.4.31.1.1.10.2,= 0 +.1.3.6.1.2.1.4.31.1.1.12.1,= 0 +.1.3.6.1.2.1.4.31.1.1.12.2,= 0 +.1.3.6.1.2.1.4.31.1.1.13.1,= 0 +.1.3.6.1.2.1.4.31.1.1.13.2,= 0 +.1.3.6.1.2.1.4.31.1.1.14.1,= 10 +.1.3.6.1.2.1.4.31.1.1.14.2,= 0 +.1.3.6.1.2.1.4.31.1.1.15.1,= 4 +.1.3.6.1.2.1.4.31.1.1.15.2,= 0 +.1.3.6.1.2.1.4.31.1.1.16.1,= 0 +.1.3.6.1.2.1.4.31.1.1.16.2,= 0 +.1.3.6.1.2.1.4.31.1.1.17.1,= 0 +.1.3.6.1.2.1.4.31.1.1.17.2,= 5081439 +.1.3.6.1.2.1.4.31.1.1.18.1,= 10386392 +.1.3.6.1.2.1.4.31.1.1.18.2,= 44484 +.1.3.6.1.2.1.4.31.1.1.19.1,= 10386392 +.1.3.6.1.2.1.4.31.1.1.19.2,= 44484 +.1.3.6.1.2.1.4.31.1.1.20.1,= 24102520 +.1.3.6.1.2.1.4.31.1.1.20.2,= 6 +.1.3.6.1.2.1.4.31.1.1.21.1,= 24102520 +.1.3.6.1.2.1.4.31.1.1.21.2,= 6 +.1.3.6.1.2.1.4.31.1.1.22.1,= 0 +.1.3.6.1.2.1.4.31.1.1.22.2,= 0 +.1.3.6.1.2.1.4.31.1.1.24.1,= 0 +.1.3.6.1.2.1.4.31.1.1.24.2,= 0 +.1.3.6.1.2.1.4.31.1.1.25.1,= 0 +.1.3.6.1.2.1.4.31.1.1.25.2,= 0 +.1.3.6.1.2.1.4.31.1.1.28.1,= 0 +.1.3.6.1.2.1.4.31.1.1.28.2,= 0 +.1.3.6.1.2.1.4.31.1.1.29.1,= 17052 +.1.3.6.1.2.1.4.31.1.1.29.2,= 0 +.1.3.6.1.2.1.4.31.1.1.46.1,= 0:0:00:00.00 +.1.3.6.1.2.1.4.31.1.1.46.2,= 0:0:00:00.00 +.1.3.6.1.2.1.4.31.1.1.47.1,= 30000 milli-seconds +.1.3.6.1.2.1.4.31.1.1.47.2,= 30000 milli-seconds +.1.3.6.1.2.1.4.34.1.3.1.4.10.13.60.102,= 15 +.1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1,= 1 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.1.254,= 10 +.1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= 1 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= 10 +.1.3.6.1.2.1.4.34.1.4.1.4.10.13.60.102,= unicast +.1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1,= unicast +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.1.254,= unicast +.1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= unicast +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= unicast +.1.3.6.1.2.1.4.34.1.5.1.4.10.13.60.102,= .1.3.6.1.2.1.4.32.1.5.15.1.4.10.13.60.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1,= .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.1.254,= .1.3.6.1.2.1.4.32.1.5.10.1.4.192.168.1.0.24 +.1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= .1.3.6.1.2.1.4.32.1.5.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.6.1.4.10.13.60.102,= manual +.1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1,= manual +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.1.254,= manual +.1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= manual +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= linklayer +.1.3.6.1.2.1.4.34.1.7.1.4.10.13.60.102,= preferred +.1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1,= preferred +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.1.254,= preferred +.1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= preferred +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= preferred +.1.3.6.1.2.1.4.34.1.8.1.4.10.13.60.102,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.1.254,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.1.4.10.13.60.102,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.1.254,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.10.1.4.10.13.60.102,= active +.1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1,= active +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.1.254,= active +.1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= active +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= active +.1.3.6.1.2.1.4.34.1.11.1.4.10.13.60.102,= volatile +.1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1,= volatile +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.1.254,= volatile +.1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1,= volatile +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101,= volatile +.1.3.6.1.2.1.4.35.1.4.15.1.4.10.13.60.1,= b4:c:25:e0:40:6a +.1.3.6.1.2.1.4.35.1.6.15.1.4.10.13.60.1,= dynamic +.1.3.6.1.2.1.4.35.1.7.15.1.4.10.13.60.1,= reachable +.1.3.6.1.2.1.4.35.1.8.15.1.4.10.13.60.1,= active +.1.3.6.1.2.1.10.7.2.1.1.1,= 1 +.1.3.6.1.2.1.10.7.2.1.1.2,= 2 +.1.3.6.1.2.1.10.7.2.1.1.3,= 3 +.1.3.6.1.2.1.10.7.2.1.1.4,= 4 +.1.3.6.1.2.1.10.7.2.1.1.5,= 5 +.1.3.6.1.2.1.10.7.2.1.1.6,= 6 +.1.3.6.1.2.1.10.7.2.1.1.7,= 7 +.1.3.6.1.2.1.10.7.2.1.2.1,= 0 +.1.3.6.1.2.1.10.7.2.1.2.2,= 0 +.1.3.6.1.2.1.10.7.2.1.2.3,= 0 +.1.3.6.1.2.1.10.7.2.1.2.4,= 0 +.1.3.6.1.2.1.10.7.2.1.2.5,= 0 +.1.3.6.1.2.1.10.7.2.1.2.6,= 0 +.1.3.6.1.2.1.10.7.2.1.2.7,= 0 +.1.3.6.1.2.1.10.7.2.1.3.1,= 0 +.1.3.6.1.2.1.10.7.2.1.3.2,= 0 +.1.3.6.1.2.1.10.7.2.1.3.3,= 0 +.1.3.6.1.2.1.10.7.2.1.3.4,= 0 +.1.3.6.1.2.1.10.7.2.1.3.5,= 0 +.1.3.6.1.2.1.10.7.2.1.3.6,= 0 +.1.3.6.1.2.1.10.7.2.1.3.7,= 0 +.1.3.6.1.2.1.10.7.2.1.4.1,= 0 +.1.3.6.1.2.1.10.7.2.1.4.2,= 0 +.1.3.6.1.2.1.10.7.2.1.4.3,= 0 +.1.3.6.1.2.1.10.7.2.1.4.4,= 0 +.1.3.6.1.2.1.10.7.2.1.4.5,= 0 +.1.3.6.1.2.1.10.7.2.1.4.6,= 0 +.1.3.6.1.2.1.10.7.2.1.4.7,= 0 +.1.3.6.1.2.1.10.7.2.1.5.1,= 0 +.1.3.6.1.2.1.10.7.2.1.5.2,= 0 +.1.3.6.1.2.1.10.7.2.1.5.3,= 0 +.1.3.6.1.2.1.10.7.2.1.5.4,= 0 +.1.3.6.1.2.1.10.7.2.1.5.5,= 0 +.1.3.6.1.2.1.10.7.2.1.5.6,= 0 +.1.3.6.1.2.1.10.7.2.1.5.7,= 0 +.1.3.6.1.2.1.10.7.2.1.6.1,= 0 +.1.3.6.1.2.1.10.7.2.1.6.2,= 0 +.1.3.6.1.2.1.10.7.2.1.6.3,= 0 +.1.3.6.1.2.1.10.7.2.1.6.4,= 0 +.1.3.6.1.2.1.10.7.2.1.6.5,= 0 +.1.3.6.1.2.1.10.7.2.1.6.6,= 0 +.1.3.6.1.2.1.10.7.2.1.6.7,= 0 +.1.3.6.1.2.1.10.7.2.1.7.1,= 0 +.1.3.6.1.2.1.10.7.2.1.7.2,= 0 +.1.3.6.1.2.1.10.7.2.1.7.3,= 0 +.1.3.6.1.2.1.10.7.2.1.7.4,= 0 +.1.3.6.1.2.1.10.7.2.1.7.5,= 0 +.1.3.6.1.2.1.10.7.2.1.7.6,= 0 +.1.3.6.1.2.1.10.7.2.1.7.7,= 0 +.1.3.6.1.2.1.10.7.2.1.8.1,= 0 +.1.3.6.1.2.1.10.7.2.1.8.2,= 0 +.1.3.6.1.2.1.10.7.2.1.8.3,= 0 +.1.3.6.1.2.1.10.7.2.1.8.4,= 0 +.1.3.6.1.2.1.10.7.2.1.8.5,= 0 +.1.3.6.1.2.1.10.7.2.1.8.6,= 0 +.1.3.6.1.2.1.10.7.2.1.8.7,= 0 +.1.3.6.1.2.1.10.7.2.1.9.1,= 0 +.1.3.6.1.2.1.10.7.2.1.9.2,= 0 +.1.3.6.1.2.1.10.7.2.1.9.3,= 0 +.1.3.6.1.2.1.10.7.2.1.9.4,= 0 +.1.3.6.1.2.1.10.7.2.1.9.5,= 0 +.1.3.6.1.2.1.10.7.2.1.9.6,= 0 +.1.3.6.1.2.1.10.7.2.1.9.7,= 0 +.1.3.6.1.2.1.10.7.2.1.10.1,= 0 +.1.3.6.1.2.1.10.7.2.1.10.2,= 0 +.1.3.6.1.2.1.10.7.2.1.10.3,= 0 +.1.3.6.1.2.1.10.7.2.1.10.4,= 0 +.1.3.6.1.2.1.10.7.2.1.10.5,= 0 +.1.3.6.1.2.1.10.7.2.1.10.6,= 0 +.1.3.6.1.2.1.10.7.2.1.10.7,= 0 +.1.3.6.1.2.1.10.7.2.1.11.1,= 0 +.1.3.6.1.2.1.10.7.2.1.11.2,= 0 +.1.3.6.1.2.1.10.7.2.1.11.3,= 0 +.1.3.6.1.2.1.10.7.2.1.11.4,= 0 +.1.3.6.1.2.1.10.7.2.1.11.5,= 0 +.1.3.6.1.2.1.10.7.2.1.11.6,= 0 +.1.3.6.1.2.1.10.7.2.1.11.7,= 0 +.1.3.6.1.2.1.10.7.2.1.13.1,= 0 +.1.3.6.1.2.1.10.7.2.1.13.2,= 0 +.1.3.6.1.2.1.10.7.2.1.13.3,= 0 +.1.3.6.1.2.1.10.7.2.1.13.4,= 0 +.1.3.6.1.2.1.10.7.2.1.13.5,= 0 +.1.3.6.1.2.1.10.7.2.1.13.6,= 0 +.1.3.6.1.2.1.10.7.2.1.13.7,= 0 +.1.3.6.1.2.1.10.7.2.1.16.1,= 0 +.1.3.6.1.2.1.10.7.2.1.16.2,= 0 +.1.3.6.1.2.1.10.7.2.1.16.3,= 0 +.1.3.6.1.2.1.10.7.2.1.16.4,= 0 +.1.3.6.1.2.1.10.7.2.1.16.5,= 0 +.1.3.6.1.2.1.10.7.2.1.16.6,= 0 +.1.3.6.1.2.1.10.7.2.1.16.7,= 0 +.1.3.6.1.2.1.10.7.2.1.17.1,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.2,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.3,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.4,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.5,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.6,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.7,= .0.0.0 +.1.3.6.1.2.1.10.7.2.1.18.1,= 0 +.1.3.6.1.2.1.10.7.2.1.18.2,= 0 +.1.3.6.1.2.1.10.7.2.1.18.3,= 0 +.1.3.6.1.2.1.10.7.2.1.18.4,= 0 +.1.3.6.1.2.1.10.7.2.1.18.5,= 0 +.1.3.6.1.2.1.10.7.2.1.18.6,= 0 +.1.3.6.1.2.1.10.7.2.1.18.7,= 0 +.1.3.6.1.2.1.10.7.2.1.19.1,= 3 +.1.3.6.1.2.1.10.7.2.1.19.2,= 3 +.1.3.6.1.2.1.10.7.2.1.19.3,= 3 +.1.3.6.1.2.1.10.7.2.1.19.4,= 3 +.1.3.6.1.2.1.10.7.2.1.19.5,= 3 +.1.3.6.1.2.1.10.7.2.1.19.6,= 2 +.1.3.6.1.2.1.10.7.2.1.19.7,= 2 +.1.3.6.1.2.1.10.7.2.1.20.1,= 2 +.1.3.6.1.2.1.10.7.2.1.20.2,= 2 +.1.3.6.1.2.1.10.7.2.1.20.3,= 2 +.1.3.6.1.2.1.10.7.2.1.20.4,= 2 +.1.3.6.1.2.1.10.7.2.1.20.5,= 2 +.1.3.6.1.2.1.10.7.2.1.20.6,= 2 +.1.3.6.1.2.1.10.7.2.1.20.7,= 2 +.1.3.6.1.2.1.10.7.2.1.21.1,= 3 +.1.3.6.1.2.1.10.7.2.1.21.2,= 3 +.1.3.6.1.2.1.10.7.2.1.21.3,= 3 +.1.3.6.1.2.1.10.7.2.1.21.4,= 3 +.1.3.6.1.2.1.10.7.2.1.21.5,= 3 +.1.3.6.1.2.1.10.7.2.1.21.6,= 3 +.1.3.6.1.2.1.10.7.2.1.21.7,= 3 +.1.3.6.1.2.1.10.7.10.1.1.1,= 4 +.1.3.6.1.2.1.10.7.10.1.1.2,= 4 +.1.3.6.1.2.1.10.7.10.1.1.3,= 4 +.1.3.6.1.2.1.10.7.10.1.1.4,= 4 +.1.3.6.1.2.1.10.7.10.1.1.5,= 4 +.1.3.6.1.2.1.10.7.10.1.1.6,= 4 +.1.3.6.1.2.1.10.7.10.1.1.7,= 4 +.1.3.6.1.2.1.10.7.10.1.2.1,= 4 +.1.3.6.1.2.1.10.7.10.1.2.2,= 4 +.1.3.6.1.2.1.10.7.10.1.2.3,= 4 +.1.3.6.1.2.1.10.7.10.1.2.4,= 4 +.1.3.6.1.2.1.10.7.10.1.2.5,= 4 +.1.3.6.1.2.1.10.7.10.1.2.6,= 4 +.1.3.6.1.2.1.10.7.10.1.2.7,= 4 +.1.3.6.1.2.1.10.7.10.1.3.1,= 0 +.1.3.6.1.2.1.10.7.10.1.3.2,= 0 +.1.3.6.1.2.1.10.7.10.1.3.3,= 3292 +.1.3.6.1.2.1.10.7.10.1.3.4,= 0 +.1.3.6.1.2.1.10.7.10.1.3.5,= 0 +.1.3.6.1.2.1.10.7.10.1.3.6,= 0 +.1.3.6.1.2.1.10.7.10.1.3.7,= 0 +.1.3.6.1.2.1.10.7.10.1.4.1,= 0 +.1.3.6.1.2.1.10.7.10.1.4.2,= 0 +.1.3.6.1.2.1.10.7.10.1.4.3,= 0 +.1.3.6.1.2.1.10.7.10.1.4.4,= 0 +.1.3.6.1.2.1.10.7.10.1.4.5,= 0 +.1.3.6.1.2.1.10.7.10.1.4.6,= 0 +.1.3.6.1.2.1.10.7.10.1.4.7,= 0 +.1.3.6.1.2.1.10.7.10.1.5.1,= 0 +.1.3.6.1.2.1.10.7.10.1.5.2,= 0 +.1.3.6.1.2.1.10.7.10.1.5.3,= 3292 +.1.3.6.1.2.1.10.7.10.1.5.4,= 0 +.1.3.6.1.2.1.10.7.10.1.5.5,= 0 +.1.3.6.1.2.1.10.7.10.1.5.6,= 0 +.1.3.6.1.2.1.10.7.10.1.5.7,= 0 +.1.3.6.1.2.1.10.7.10.1.6.1,= 0 +.1.3.6.1.2.1.10.7.10.1.6.2,= 0 +.1.3.6.1.2.1.10.7.10.1.6.3,= 0 +.1.3.6.1.2.1.10.7.10.1.6.4,= 0 +.1.3.6.1.2.1.10.7.10.1.6.5,= 0 +.1.3.6.1.2.1.10.7.10.1.6.6,= 0 +.1.3.6.1.2.1.10.7.10.1.6.7,= 0 +.1.3.6.1.2.1.10.7.11.1.1.1,= 0 +.1.3.6.1.2.1.10.7.11.1.1.2,= 0 +.1.3.6.1.2.1.10.7.11.1.1.3,= 0 +.1.3.6.1.2.1.10.7.11.1.1.4,= 0 +.1.3.6.1.2.1.10.7.11.1.1.5,= 0 +.1.3.6.1.2.1.10.7.11.1.1.6,= 0 +.1.3.6.1.2.1.10.7.11.1.1.7,= 0 +.1.3.6.1.2.1.10.7.11.1.2.1,= 0 +.1.3.6.1.2.1.10.7.11.1.2.2,= 0 +.1.3.6.1.2.1.10.7.11.1.2.3,= 0 +.1.3.6.1.2.1.10.7.11.1.2.4,= 0 +.1.3.6.1.2.1.10.7.11.1.2.5,= 0 +.1.3.6.1.2.1.10.7.11.1.2.6,= 0 +.1.3.6.1.2.1.10.7.11.1.2.7,= 0 +.1.3.6.1.2.1.10.7.11.1.3.1,= 0 +.1.3.6.1.2.1.10.7.11.1.3.2,= 0 +.1.3.6.1.2.1.10.7.11.1.3.3,= 0 +.1.3.6.1.2.1.10.7.11.1.3.4,= 0 +.1.3.6.1.2.1.10.7.11.1.3.5,= 0 +.1.3.6.1.2.1.10.7.11.1.3.6,= 0 +.1.3.6.1.2.1.10.7.11.1.3.7,= 0 +.1.3.6.1.2.1.10.7.11.1.4.1,= 0 +.1.3.6.1.2.1.10.7.11.1.4.2,= 0 +.1.3.6.1.2.1.10.7.11.1.4.3,= 0 +.1.3.6.1.2.1.10.7.11.1.4.4,= 0 +.1.3.6.1.2.1.10.7.11.1.4.5,= 0 +.1.3.6.1.2.1.10.7.11.1.4.6,= 0 +.1.3.6.1.2.1.10.7.11.1.4.7,= 0 +.1.3.6.1.2.1.10.7.11.1.5.1,= 0 +.1.3.6.1.2.1.10.7.11.1.5.2,= 0 +.1.3.6.1.2.1.10.7.11.1.5.3,= 0 +.1.3.6.1.2.1.10.7.11.1.5.4,= 0 +.1.3.6.1.2.1.10.7.11.1.5.5,= 0 +.1.3.6.1.2.1.10.7.11.1.5.6,= 0 +.1.3.6.1.2.1.10.7.11.1.5.7,= 0 +.1.3.6.1.2.1.10.7.11.1.6.1,= 0 +.1.3.6.1.2.1.10.7.11.1.6.2,= 0 +.1.3.6.1.2.1.10.7.11.1.6.3,= 0 +.1.3.6.1.2.1.10.7.11.1.6.4,= 0 +.1.3.6.1.2.1.10.7.11.1.6.5,= 0 +.1.3.6.1.2.1.10.7.11.1.6.6,= 0 +.1.3.6.1.2.1.10.7.11.1.6.7,= 0 +.1.3.6.1.2.1.11.1.0,= 67874 +.1.3.6.1.2.1.11.2.0,= 67874 +.1.3.6.1.2.1.11.3.0,= 0 +.1.3.6.1.2.1.11.4.0,= 0 +.1.3.6.1.2.1.11.5.0,= 133 +.1.3.6.1.2.1.11.6.0,= 0 +.1.3.6.1.2.1.11.8.0,= 0 +.1.3.6.1.2.1.11.9.0,= 0 +.1.3.6.1.2.1.11.10.0,= 0 +.1.3.6.1.2.1.11.11.0,= 0 +.1.3.6.1.2.1.11.12.0,= 0 +.1.3.6.1.2.1.11.13.0,= 68062 +.1.3.6.1.2.1.11.14.0,= 0 +.1.3.6.1.2.1.11.15.0,= 11 +.1.3.6.1.2.1.11.16.0,= 67859 +.1.3.6.1.2.1.11.17.0,= 0 +.1.3.6.1.2.1.11.18.0,= 0 +.1.3.6.1.2.1.11.19.0,= 0 +.1.3.6.1.2.1.11.20.0,= 0 +.1.3.6.1.2.1.11.21.0,= 0 +.1.3.6.1.2.1.11.22.0,= 0 +.1.3.6.1.2.1.11.24.0,= 0 +.1.3.6.1.2.1.11.25.0,= 0 +.1.3.6.1.2.1.11.26.0,= 0 +.1.3.6.1.2.1.11.27.0,= 0 +.1.3.6.1.2.1.11.28.0,= 67898 +.1.3.6.1.2.1.11.29.0,= 0 +.1.3.6.1.2.1.11.30.0,= enabled +.1.3.6.1.2.1.11.31.0,= 0 +.1.3.6.1.2.1.11.32.0,= 0 +.1.3.6.1.2.1.16.1.1.1.1.1,= 1 +.1.3.6.1.2.1.16.1.1.1.1.2,= 2 +.1.3.6.1.2.1.16.1.1.1.1.3,= 3 +.1.3.6.1.2.1.16.1.1.1.1.4,= 4 +.1.3.6.1.2.1.16.1.1.1.2.1,= .1.3.6.1.2.1.2.2.1.1.1 +.1.3.6.1.2.1.16.1.1.1.2.2,= .1.3.6.1.2.1.2.2.1.1.2 +.1.3.6.1.2.1.16.1.1.1.2.3,= .1.3.6.1.2.1.2.2.1.1.3 +.1.3.6.1.2.1.16.1.1.1.2.4,= .1.3.6.1.2.1.2.2.1.1.4 +.1.3.6.1.2.1.16.1.1.1.3.1,= 0 +.1.3.6.1.2.1.16.1.1.1.3.2,= 0 +.1.3.6.1.2.1.16.1.1.1.3.3,= 0 +.1.3.6.1.2.1.16.1.1.1.3.4,= 0 +.1.3.6.1.2.1.16.1.1.1.4.1,= 4223389753 +.1.3.6.1.2.1.16.1.1.1.4.2,= 135053161 +.1.3.6.1.2.1.16.1.1.1.4.3,= 2194071425 +.1.3.6.1.2.1.16.1.1.1.4.4,= 314336220 +.1.3.6.1.2.1.16.1.1.1.5.1,= 14805115 +.1.3.6.1.2.1.16.1.1.1.5.2,= 755129 +.1.3.6.1.2.1.16.1.1.1.5.3,= 15045949 +.1.3.6.1.2.1.16.1.1.1.5.4,= 2381335 +.1.3.6.1.2.1.16.1.1.1.6.1,= 786060 +.1.3.6.1.2.1.16.1.1.1.6.2,= 35 +.1.3.6.1.2.1.16.1.1.1.6.3,= 64 +.1.3.6.1.2.1.16.1.1.1.6.4,= 0 +.1.3.6.1.2.1.16.1.1.1.7.1,= 1333616 +.1.3.6.1.2.1.16.1.1.1.7.2,= 755094 +.1.3.6.1.2.1.16.1.1.1.7.3,= 1854490 +.1.3.6.1.2.1.16.1.1.1.7.4,= 2381335 +.1.3.6.1.2.1.16.1.1.1.8.1,= 0 +.1.3.6.1.2.1.16.1.1.1.8.2,= 0 +.1.3.6.1.2.1.16.1.1.1.8.3,= 0 +.1.3.6.1.2.1.16.1.1.1.8.4,= 0 +.1.3.6.1.2.1.16.1.1.1.9.1,= 0 +.1.3.6.1.2.1.16.1.1.1.9.2,= 0 +.1.3.6.1.2.1.16.1.1.1.9.3,= 0 +.1.3.6.1.2.1.16.1.1.1.9.4,= 0 +.1.3.6.1.2.1.16.1.1.1.10.1,= 7196121 +.1.3.6.1.2.1.16.1.1.1.10.2,= 0 +.1.3.6.1.2.1.16.1.1.1.10.3,= 0 +.1.3.6.1.2.1.16.1.1.1.10.4,= 0 +.1.3.6.1.2.1.16.1.1.1.11.1,= 0 +.1.3.6.1.2.1.16.1.1.1.11.2,= 0 +.1.3.6.1.2.1.16.1.1.1.11.3,= 0 +.1.3.6.1.2.1.16.1.1.1.11.4,= 0 +.1.3.6.1.2.1.16.1.1.1.12.1,= 0 +.1.3.6.1.2.1.16.1.1.1.12.2,= 0 +.1.3.6.1.2.1.16.1.1.1.12.3,= 0 +.1.3.6.1.2.1.16.1.1.1.12.4,= 0 +.1.3.6.1.2.1.16.1.1.1.13.1,= 0 +.1.3.6.1.2.1.16.1.1.1.13.2,= 0 +.1.3.6.1.2.1.16.1.1.1.13.3,= 0 +.1.3.6.1.2.1.16.1.1.1.13.4,= 0 +.1.3.6.1.2.1.16.1.1.1.14.1,= 976276 +.1.3.6.1.2.1.16.1.1.1.14.2,= 42 +.1.3.6.1.2.1.16.1.1.1.14.3,= 2010989 +.1.3.6.1.2.1.16.1.1.1.14.4,= 0 +.1.3.6.1.2.1.16.1.1.1.15.1,= 4299190 +.1.3.6.1.2.1.16.1.1.1.15.2,= 23 +.1.3.6.1.2.1.16.1.1.1.15.3,= 524707 +.1.3.6.1.2.1.16.1.1.1.15.4,= 0 +.1.3.6.1.2.1.16.1.1.1.16.1,= 1491542 +.1.3.6.1.2.1.16.1.1.1.16.2,= 755029 +.1.3.6.1.2.1.16.1.1.1.16.3,= 2361587 +.1.3.6.1.2.1.16.1.1.1.16.4,= 2381335 +.1.3.6.1.2.1.16.1.1.1.17.1,= 3686 +.1.3.6.1.2.1.16.1.1.1.17.2,= 35 +.1.3.6.1.2.1.16.1.1.1.17.3,= 3003 +.1.3.6.1.2.1.16.1.1.1.17.4,= 0 +.1.3.6.1.2.1.16.1.1.1.18.1,= 2165 +.1.3.6.1.2.1.16.1.1.1.18.2,= 0 +.1.3.6.1.2.1.16.1.1.1.18.3,= 24786 +.1.3.6.1.2.1.16.1.1.1.18.4,= 0 +.1.3.6.1.2.1.16.1.1.1.19.1,= 836135 +.1.3.6.1.2.1.16.1.1.1.19.2,= 0 +.1.3.6.1.2.1.16.1.1.1.19.3,= 10120877 +.1.3.6.1.2.1.16.1.1.1.19.4,= 0 +.1.3.6.1.2.1.16.1.1.1.20.1,"= ""system""" +.1.3.6.1.2.1.16.1.1.1.20.2,"= ""system""" +.1.3.6.1.2.1.16.1.1.1.20.3,"= ""system""" +.1.3.6.1.2.1.16.1.1.1.20.4,"= ""system""" +.1.3.6.1.2.1.16.1.1.1.21.1,= 1 +.1.3.6.1.2.1.16.1.1.1.21.2,= 1 +.1.3.6.1.2.1.16.1.1.1.21.3,= 1 +.1.3.6.1.2.1.16.1.1.1.21.4,= 1 +.1.3.6.1.2.1.16.1.4.1.1.1,= 0 +.1.3.6.1.2.1.16.1.4.1.1.2,= 0 +.1.3.6.1.2.1.16.1.4.1.1.3,= 0 +.1.3.6.1.2.1.16.1.4.1.1.4,= 0 +.1.3.6.1.2.1.16.1.4.1.2.1,= 0:0:41:52.73 +.1.3.6.1.2.1.16.1.4.1.2.2,= 0:0:41:52.73 +.1.3.6.1.2.1.16.1.4.1.2.3,= 0:0:41:52.73 +.1.3.6.1.2.1.16.1.4.1.2.4,= 0:0:41:52.73 +.1.3.6.1.2.1.16.1.7.1.1.1,= 0 +.1.3.6.1.2.1.16.1.7.1.1.2,= 0 +.1.3.6.1.2.1.16.1.7.1.1.3,= 0 +.1.3.6.1.2.1.16.1.7.1.1.4,= 0 +.1.3.6.1.2.1.16.1.7.1.2.1,= 14805115 +.1.3.6.1.2.1.16.1.7.1.2.2,= 755129 +.1.3.6.1.2.1.16.1.7.1.2.3,= 15045949 +.1.3.6.1.2.1.16.1.7.1.2.4,= 2381335 +.1.3.6.1.2.1.16.1.7.1.3.1,= 2 +.1.3.6.1.2.1.16.1.7.1.3.2,= 0 +.1.3.6.1.2.1.16.1.7.1.3.3,= 3 +.1.3.6.1.2.1.16.1.7.1.3.4,= 0 +.1.3.6.1.2.1.16.1.7.1.4.1,= 12813324345 +.1.3.6.1.2.1.16.1.7.1.4.2,= 135053161 +.1.3.6.1.2.1.16.1.7.1.4.3,= 15078973313 +.1.3.6.1.2.1.16.1.7.1.4.4,= 314336220 +.1.3.6.1.2.1.16.1.7.1.5.1,= 0 +.1.3.6.1.2.1.16.1.7.1.5.2,= 0 +.1.3.6.1.2.1.16.1.7.1.5.3,= 0 +.1.3.6.1.2.1.16.1.7.1.5.4,= 0 +.1.3.6.1.2.1.16.1.7.1.6.1,= 976276 +.1.3.6.1.2.1.16.1.7.1.6.2,= 42 +.1.3.6.1.2.1.16.1.7.1.6.3,= 2010989 +.1.3.6.1.2.1.16.1.7.1.6.4,= 0 +.1.3.6.1.2.1.16.1.7.1.7.1,= 0 +.1.3.6.1.2.1.16.1.7.1.7.2,= 0 +.1.3.6.1.2.1.16.1.7.1.7.3,= 0 +.1.3.6.1.2.1.16.1.7.1.7.4,= 0 +.1.3.6.1.2.1.16.1.7.1.8.1,= 4299190 +.1.3.6.1.2.1.16.1.7.1.8.2,= 23 +.1.3.6.1.2.1.16.1.7.1.8.3,= 524707 +.1.3.6.1.2.1.16.1.7.1.8.4,= 0 +.1.3.6.1.2.1.16.1.7.1.9.1,= 0 +.1.3.6.1.2.1.16.1.7.1.9.2,= 0 +.1.3.6.1.2.1.16.1.7.1.9.3,= 0 +.1.3.6.1.2.1.16.1.7.1.9.4,= 0 +.1.3.6.1.2.1.16.1.7.1.10.1,= 1491542 +.1.3.6.1.2.1.16.1.7.1.10.2,= 755029 +.1.3.6.1.2.1.16.1.7.1.10.3,= 2361587 +.1.3.6.1.2.1.16.1.7.1.10.4,= 2381335 +.1.3.6.1.2.1.16.1.7.1.11.1,= 0 +.1.3.6.1.2.1.16.1.7.1.11.2,= 0 +.1.3.6.1.2.1.16.1.7.1.11.3,= 0 +.1.3.6.1.2.1.16.1.7.1.11.4,= 0 +.1.3.6.1.2.1.16.1.7.1.12.1,= 3686 +.1.3.6.1.2.1.16.1.7.1.12.2,= 35 +.1.3.6.1.2.1.16.1.7.1.12.3,= 3003 +.1.3.6.1.2.1.16.1.7.1.12.4,= 0 +.1.3.6.1.2.1.16.1.7.1.13.1,= 0 +.1.3.6.1.2.1.16.1.7.1.13.2,= 0 +.1.3.6.1.2.1.16.1.7.1.13.3,= 0 +.1.3.6.1.2.1.16.1.7.1.13.4,= 0 +.1.3.6.1.2.1.16.1.7.1.14.1,= 2165 +.1.3.6.1.2.1.16.1.7.1.14.2,= 0 +.1.3.6.1.2.1.16.1.7.1.14.3,= 24786 +.1.3.6.1.2.1.16.1.7.1.14.4,= 0 +.1.3.6.1.2.1.16.1.7.1.15.1,= 0 +.1.3.6.1.2.1.16.1.7.1.15.2,= 0 +.1.3.6.1.2.1.16.1.7.1.15.3,= 0 +.1.3.6.1.2.1.16.1.7.1.15.4,= 0 +.1.3.6.1.2.1.16.1.7.1.16.1,= 836135 +.1.3.6.1.2.1.16.1.7.1.16.2,= 0 +.1.3.6.1.2.1.16.1.7.1.16.3,= 10120877 +.1.3.6.1.2.1.16.1.7.1.16.4,= 0 +.1.3.6.1.2.1.16.2.1.1.1.1,= 1 +.1.3.6.1.2.1.16.2.1.1.1.2,= 2 +.1.3.6.1.2.1.16.2.1.1.1.3,= 3 +.1.3.6.1.2.1.16.2.1.1.1.4,= 4 +.1.3.6.1.2.1.16.2.1.1.1.5,= 5 +.1.3.6.1.2.1.16.2.1.1.1.6,= 6 +.1.3.6.1.2.1.16.2.1.1.1.7,= 7 +.1.3.6.1.2.1.16.2.1.1.1.8,= 8 +.1.3.6.1.2.1.16.2.1.1.2.1,= .1.3.6.1.2.1.2.2.1.1.1 +.1.3.6.1.2.1.16.2.1.1.2.2,= .1.3.6.1.2.1.2.2.1.1.1 +.1.3.6.1.2.1.16.2.1.1.2.3,= .1.3.6.1.2.1.2.2.1.1.2 +.1.3.6.1.2.1.16.2.1.1.2.4,= .1.3.6.1.2.1.2.2.1.1.2 +.1.3.6.1.2.1.16.2.1.1.2.5,= .1.3.6.1.2.1.2.2.1.1.3 +.1.3.6.1.2.1.16.2.1.1.2.6,= .1.3.6.1.2.1.2.2.1.1.3 +.1.3.6.1.2.1.16.2.1.1.2.7,= .1.3.6.1.2.1.2.2.1.1.4 +.1.3.6.1.2.1.16.2.1.1.2.8,= .1.3.6.1.2.1.2.2.1.1.4 +.1.3.6.1.2.1.16.2.1.1.3.1,= 60 +.1.3.6.1.2.1.16.2.1.1.3.2,= 48 +.1.3.6.1.2.1.16.2.1.1.3.3,= 60 +.1.3.6.1.2.1.16.2.1.1.3.4,= 48 +.1.3.6.1.2.1.16.2.1.1.3.5,= 60 +.1.3.6.1.2.1.16.2.1.1.3.6,= 48 +.1.3.6.1.2.1.16.2.1.1.3.7,= 60 +.1.3.6.1.2.1.16.2.1.1.3.8,= 48 +.1.3.6.1.2.1.16.2.1.1.4.1,= 60 +.1.3.6.1.2.1.16.2.1.1.4.2,= 48 +.1.3.6.1.2.1.16.2.1.1.4.3,= 60 +.1.3.6.1.2.1.16.2.1.1.4.4,= 48 +.1.3.6.1.2.1.16.2.1.1.4.5,= 60 +.1.3.6.1.2.1.16.2.1.1.4.6,= 48 +.1.3.6.1.2.1.16.2.1.1.4.7,= 60 +.1.3.6.1.2.1.16.2.1.1.4.8,= 48 +.1.3.6.1.2.1.16.2.1.1.5.1,= 30 +.1.3.6.1.2.1.16.2.1.1.5.2,= 1800 +.1.3.6.1.2.1.16.2.1.1.5.3,= 30 +.1.3.6.1.2.1.16.2.1.1.5.4,= 1800 +.1.3.6.1.2.1.16.2.1.1.5.5,= 30 +.1.3.6.1.2.1.16.2.1.1.5.6,= 1800 +.1.3.6.1.2.1.16.2.1.1.5.7,= 30 +.1.3.6.1.2.1.16.2.1.1.5.8,= 1800 +.1.3.6.1.2.1.16.2.1.1.6.1,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.2,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.3,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.4,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.5,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.6,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.7,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.6.8,"= ""system""" +.1.3.6.1.2.1.16.2.1.1.7.1,= 1 +.1.3.6.1.2.1.16.2.1.1.7.2,= 1 +.1.3.6.1.2.1.16.2.1.1.7.3,= 1 +.1.3.6.1.2.1.16.2.1.1.7.4,= 1 +.1.3.6.1.2.1.16.2.1.1.7.5,= 1 +.1.3.6.1.2.1.16.2.1.1.7.6,= 1 +.1.3.6.1.2.1.16.2.1.1.7.7,= 1 +.1.3.6.1.2.1.16.2.1.1.7.8,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.1,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.24,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.25,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.26,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.27,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.28,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.29,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.30,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.31,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.32,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.33,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.34,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.35,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.36,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.37,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.38,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.39,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.40,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.41,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.42,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.43,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.44,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.45,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.46,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.47,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.48,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.49,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.50,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.51,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.52,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.53,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.54,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.55,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.56,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.57,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.58,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.59,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.60,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.61,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.62,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.63,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.64,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.65,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.66,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.67,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.68,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.69,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.70,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.71,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.72,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.73,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.74,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.75,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.76,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.77,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.78,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.79,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.80,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.81,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.82,= 1 +.1.3.6.1.2.1.16.2.2.1.1.1.83,= 1 +.1.3.6.1.2.1.16.2.2.1.1.2.1,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.24,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.25,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.26,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.27,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.28,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.29,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.30,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.31,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.32,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.33,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.34,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.35,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.36,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.37,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.38,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.39,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.40,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.41,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.42,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.43,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.44,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.45,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.46,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.47,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.48,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.49,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.50,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.51,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.52,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.53,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.54,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.55,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.56,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.57,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.58,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.59,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.60,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.61,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.62,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.63,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.64,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.65,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.66,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.67,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.68,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.69,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.70,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.71,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.72,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.73,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.74,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.75,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.76,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.77,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.78,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.79,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.80,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.81,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.82,= 2 +.1.3.6.1.2.1.16.2.2.1.1.2.83,= 2 +.1.3.6.1.2.1.16.2.2.1.1.3.1,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.24,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.25,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.26,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.27,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.28,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.29,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.30,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.31,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.32,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.33,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.34,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.35,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.36,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.37,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.38,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.39,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.40,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.41,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.42,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.43,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.44,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.45,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.46,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.47,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.48,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.49,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.50,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.51,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.52,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.53,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.54,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.55,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.56,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.57,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.58,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.59,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.60,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.61,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.62,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.63,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.64,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.65,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.66,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.67,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.68,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.69,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.70,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.71,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.72,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.73,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.74,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.75,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.76,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.77,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.78,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.79,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.80,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.81,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.82,= 3 +.1.3.6.1.2.1.16.2.2.1.1.3.83,= 3 +.1.3.6.1.2.1.16.2.2.1.1.4.1,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.24,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.25,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.26,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.27,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.28,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.29,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.30,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.31,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.32,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.33,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.34,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.35,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.36,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.37,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.38,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.39,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.40,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.41,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.42,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.43,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.44,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.45,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.46,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.47,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.48,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.49,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.50,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.51,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.52,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.53,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.54,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.55,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.56,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.57,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.58,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.59,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.60,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.61,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.62,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.63,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.64,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.65,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.66,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.67,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.68,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.69,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.70,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.71,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.72,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.73,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.74,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.75,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.76,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.77,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.78,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.79,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.80,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.81,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.82,= 4 +.1.3.6.1.2.1.16.2.2.1.1.4.83,= 4 +.1.3.6.1.2.1.16.2.2.1.2.1.1,= 1 +.1.3.6.1.2.1.16.2.2.1.2.1.24,= 24 +.1.3.6.1.2.1.16.2.2.1.2.1.25,= 25 +.1.3.6.1.2.1.16.2.2.1.2.1.26,= 26 +.1.3.6.1.2.1.16.2.2.1.2.1.27,= 27 +.1.3.6.1.2.1.16.2.2.1.2.1.28,= 28 +.1.3.6.1.2.1.16.2.2.1.2.1.29,= 29 +.1.3.6.1.2.1.16.2.2.1.2.1.30,= 30 +.1.3.6.1.2.1.16.2.2.1.2.1.31,= 31 +.1.3.6.1.2.1.16.2.2.1.2.1.32,= 32 +.1.3.6.1.2.1.16.2.2.1.2.1.33,= 33 +.1.3.6.1.2.1.16.2.2.1.2.1.34,= 34 +.1.3.6.1.2.1.16.2.2.1.2.1.35,= 35 +.1.3.6.1.2.1.16.2.2.1.2.1.36,= 36 +.1.3.6.1.2.1.16.2.2.1.2.1.37,= 37 +.1.3.6.1.2.1.16.2.2.1.2.1.38,= 38 +.1.3.6.1.2.1.16.2.2.1.2.1.39,= 39 +.1.3.6.1.2.1.16.2.2.1.2.1.40,= 40 +.1.3.6.1.2.1.16.2.2.1.2.1.41,= 41 +.1.3.6.1.2.1.16.2.2.1.2.1.42,= 42 +.1.3.6.1.2.1.16.2.2.1.2.1.43,= 43 +.1.3.6.1.2.1.16.2.2.1.2.1.44,= 44 +.1.3.6.1.2.1.16.2.2.1.2.1.45,= 45 +.1.3.6.1.2.1.16.2.2.1.2.1.46,= 46 +.1.3.6.1.2.1.16.2.2.1.2.1.47,= 47 +.1.3.6.1.2.1.16.2.2.1.2.1.48,= 48 +.1.3.6.1.2.1.16.2.2.1.2.1.49,= 49 +.1.3.6.1.2.1.16.2.2.1.2.1.50,= 50 +.1.3.6.1.2.1.16.2.2.1.2.1.51,= 51 +.1.3.6.1.2.1.16.2.2.1.2.1.52,= 52 +.1.3.6.1.2.1.16.2.2.1.2.1.53,= 53 +.1.3.6.1.2.1.16.2.2.1.2.1.54,= 54 +.1.3.6.1.2.1.16.2.2.1.2.1.55,= 55 +.1.3.6.1.2.1.16.2.2.1.2.1.56,= 56 +.1.3.6.1.2.1.16.2.2.1.2.1.57,= 57 +.1.3.6.1.2.1.16.2.2.1.2.1.58,= 58 +.1.3.6.1.2.1.16.2.2.1.2.1.59,= 59 +.1.3.6.1.2.1.16.2.2.1.2.1.60,= 60 +.1.3.6.1.2.1.16.2.2.1.2.1.61,= 61 +.1.3.6.1.2.1.16.2.2.1.2.1.62,= 62 +.1.3.6.1.2.1.16.2.2.1.2.1.63,= 63 +.1.3.6.1.2.1.16.2.2.1.2.1.64,= 64 +.1.3.6.1.2.1.16.2.2.1.2.1.65,= 65 +.1.3.6.1.2.1.16.2.2.1.2.1.66,= 66 +.1.3.6.1.2.1.16.2.2.1.2.1.67,= 67 +.1.3.6.1.2.1.16.2.2.1.2.1.68,= 68 +.1.3.6.1.2.1.16.2.2.1.2.1.69,= 69 +.1.3.6.1.2.1.16.2.2.1.2.1.70,= 70 +.1.3.6.1.2.1.16.2.2.1.2.1.71,= 71 +.1.3.6.1.2.1.16.2.2.1.2.1.72,= 72 +.1.3.6.1.2.1.16.2.2.1.2.1.73,= 73 +.1.3.6.1.2.1.16.2.2.1.2.1.74,= 74 +.1.3.6.1.2.1.16.2.2.1.2.1.75,= 75 +.1.3.6.1.2.1.16.2.2.1.2.1.76,= 76 +.1.3.6.1.2.1.16.2.2.1.2.1.77,= 77 +.1.3.6.1.2.1.16.2.2.1.2.1.78,= 78 +.1.3.6.1.2.1.16.2.2.1.2.1.79,= 79 +.1.3.6.1.2.1.16.2.2.1.2.1.80,= 80 +.1.3.6.1.2.1.16.2.2.1.2.1.81,= 81 +.1.3.6.1.2.1.16.2.2.1.2.1.82,= 82 +.1.3.6.1.2.1.16.2.2.1.2.1.83,= 83 +.1.3.6.1.2.1.16.2.2.1.2.2.1,= 1 +.1.3.6.1.2.1.16.2.2.1.2.2.24,= 24 +.1.3.6.1.2.1.16.2.2.1.2.2.25,= 25 +.1.3.6.1.2.1.16.2.2.1.2.2.26,= 26 +.1.3.6.1.2.1.16.2.2.1.2.2.27,= 27 +.1.3.6.1.2.1.16.2.2.1.2.2.28,= 28 +.1.3.6.1.2.1.16.2.2.1.2.2.29,= 29 +.1.3.6.1.2.1.16.2.2.1.2.2.30,= 30 +.1.3.6.1.2.1.16.2.2.1.2.2.31,= 31 +.1.3.6.1.2.1.16.2.2.1.2.2.32,= 32 +.1.3.6.1.2.1.16.2.2.1.2.2.33,= 33 +.1.3.6.1.2.1.16.2.2.1.2.2.34,= 34 +.1.3.6.1.2.1.16.2.2.1.2.2.35,= 35 +.1.3.6.1.2.1.16.2.2.1.2.2.36,= 36 +.1.3.6.1.2.1.16.2.2.1.2.2.37,= 37 +.1.3.6.1.2.1.16.2.2.1.2.2.38,= 38 +.1.3.6.1.2.1.16.2.2.1.2.2.39,= 39 +.1.3.6.1.2.1.16.2.2.1.2.2.40,= 40 +.1.3.6.1.2.1.16.2.2.1.2.2.41,= 41 +.1.3.6.1.2.1.16.2.2.1.2.2.42,= 42 +.1.3.6.1.2.1.16.2.2.1.2.2.43,= 43 +.1.3.6.1.2.1.16.2.2.1.2.2.44,= 44 +.1.3.6.1.2.1.16.2.2.1.2.2.45,= 45 +.1.3.6.1.2.1.16.2.2.1.2.2.46,= 46 +.1.3.6.1.2.1.16.2.2.1.2.2.47,= 47 +.1.3.6.1.2.1.16.2.2.1.2.2.48,= 48 +.1.3.6.1.2.1.16.2.2.1.2.2.49,= 49 +.1.3.6.1.2.1.16.2.2.1.2.2.50,= 50 +.1.3.6.1.2.1.16.2.2.1.2.2.51,= 51 +.1.3.6.1.2.1.16.2.2.1.2.2.52,= 52 +.1.3.6.1.2.1.16.2.2.1.2.2.53,= 53 +.1.3.6.1.2.1.16.2.2.1.2.2.54,= 54 +.1.3.6.1.2.1.16.2.2.1.2.2.55,= 55 +.1.3.6.1.2.1.16.2.2.1.2.2.56,= 56 +.1.3.6.1.2.1.16.2.2.1.2.2.57,= 57 +.1.3.6.1.2.1.16.2.2.1.2.2.58,= 58 +.1.3.6.1.2.1.16.2.2.1.2.2.59,= 59 +.1.3.6.1.2.1.16.2.2.1.2.2.60,= 60 +.1.3.6.1.2.1.16.2.2.1.2.2.61,= 61 +.1.3.6.1.2.1.16.2.2.1.2.2.62,= 62 +.1.3.6.1.2.1.16.2.2.1.2.2.63,= 63 +.1.3.6.1.2.1.16.2.2.1.2.2.64,= 64 +.1.3.6.1.2.1.16.2.2.1.2.2.65,= 65 +.1.3.6.1.2.1.16.2.2.1.2.2.66,= 66 +.1.3.6.1.2.1.16.2.2.1.2.2.67,= 67 +.1.3.6.1.2.1.16.2.2.1.2.2.68,= 68 +.1.3.6.1.2.1.16.2.2.1.2.2.69,= 69 +.1.3.6.1.2.1.16.2.2.1.2.2.70,= 70 +.1.3.6.1.2.1.16.2.2.1.2.2.71,= 71 +.1.3.6.1.2.1.16.2.2.1.2.2.72,= 72 +.1.3.6.1.2.1.16.2.2.1.2.2.73,= 73 +.1.3.6.1.2.1.16.2.2.1.2.2.74,= 74 +.1.3.6.1.2.1.16.2.2.1.2.2.75,= 75 +.1.3.6.1.2.1.16.2.2.1.2.2.76,= 76 +.1.3.6.1.2.1.16.2.2.1.2.2.77,= 77 +.1.3.6.1.2.1.16.2.2.1.2.2.78,= 78 +.1.3.6.1.2.1.16.2.2.1.2.2.79,= 79 +.1.3.6.1.2.1.16.2.2.1.2.2.80,= 80 +.1.3.6.1.2.1.16.2.2.1.2.2.81,= 81 +.1.3.6.1.2.1.16.2.2.1.2.2.82,= 82 +.1.3.6.1.2.1.16.2.2.1.2.2.83,= 83 +.1.3.6.1.2.1.16.2.2.1.2.3.1,= 1 +.1.3.6.1.2.1.16.2.2.1.2.3.24,= 24 +.1.3.6.1.2.1.16.2.2.1.2.3.25,= 25 +.1.3.6.1.2.1.16.2.2.1.2.3.26,= 26 +.1.3.6.1.2.1.16.2.2.1.2.3.27,= 27 +.1.3.6.1.2.1.16.2.2.1.2.3.28,= 28 +.1.3.6.1.2.1.16.2.2.1.2.3.29,= 29 +.1.3.6.1.2.1.16.2.2.1.2.3.30,= 30 +.1.3.6.1.2.1.16.2.2.1.2.3.31,= 31 +.1.3.6.1.2.1.16.2.2.1.2.3.32,= 32 +.1.3.6.1.2.1.16.2.2.1.2.3.33,= 33 +.1.3.6.1.2.1.16.2.2.1.2.3.34,= 34 +.1.3.6.1.2.1.16.2.2.1.2.3.35,= 35 +.1.3.6.1.2.1.16.2.2.1.2.3.36,= 36 +.1.3.6.1.2.1.16.2.2.1.2.3.37,= 37 +.1.3.6.1.2.1.16.2.2.1.2.3.38,= 38 +.1.3.6.1.2.1.16.2.2.1.2.3.39,= 39 +.1.3.6.1.2.1.16.2.2.1.2.3.40,= 40 +.1.3.6.1.2.1.16.2.2.1.2.3.41,= 41 +.1.3.6.1.2.1.16.2.2.1.2.3.42,= 42 +.1.3.6.1.2.1.16.2.2.1.2.3.43,= 43 +.1.3.6.1.2.1.16.2.2.1.2.3.44,= 44 +.1.3.6.1.2.1.16.2.2.1.2.3.45,= 45 +.1.3.6.1.2.1.16.2.2.1.2.3.46,= 46 +.1.3.6.1.2.1.16.2.2.1.2.3.47,= 47 +.1.3.6.1.2.1.16.2.2.1.2.3.48,= 48 +.1.3.6.1.2.1.16.2.2.1.2.3.49,= 49 +.1.3.6.1.2.1.16.2.2.1.2.3.50,= 50 +.1.3.6.1.2.1.16.2.2.1.2.3.51,= 51 +.1.3.6.1.2.1.16.2.2.1.2.3.52,= 52 +.1.3.6.1.2.1.16.2.2.1.2.3.53,= 53 +.1.3.6.1.2.1.16.2.2.1.2.3.54,= 54 +.1.3.6.1.2.1.16.2.2.1.2.3.55,= 55 +.1.3.6.1.2.1.16.2.2.1.2.3.56,= 56 +.1.3.6.1.2.1.16.2.2.1.2.3.57,= 57 +.1.3.6.1.2.1.16.2.2.1.2.3.58,= 58 +.1.3.6.1.2.1.16.2.2.1.2.3.59,= 59 +.1.3.6.1.2.1.16.2.2.1.2.3.60,= 60 +.1.3.6.1.2.1.16.2.2.1.2.3.61,= 61 +.1.3.6.1.2.1.16.2.2.1.2.3.62,= 62 +.1.3.6.1.2.1.16.2.2.1.2.3.63,= 63 +.1.3.6.1.2.1.16.2.2.1.2.3.64,= 64 +.1.3.6.1.2.1.16.2.2.1.2.3.65,= 65 +.1.3.6.1.2.1.16.2.2.1.2.3.66,= 66 +.1.3.6.1.2.1.16.2.2.1.2.3.67,= 67 +.1.3.6.1.2.1.16.2.2.1.2.3.68,= 68 +.1.3.6.1.2.1.16.2.2.1.2.3.69,= 69 +.1.3.6.1.2.1.16.2.2.1.2.3.70,= 70 +.1.3.6.1.2.1.16.2.2.1.2.3.71,= 71 +.1.3.6.1.2.1.16.2.2.1.2.3.72,= 72 +.1.3.6.1.2.1.16.2.2.1.2.3.73,= 73 +.1.3.6.1.2.1.16.2.2.1.2.3.74,= 74 +.1.3.6.1.2.1.16.2.2.1.2.3.75,= 75 +.1.3.6.1.2.1.16.2.2.1.2.3.76,= 76 +.1.3.6.1.2.1.16.2.2.1.2.3.77,= 77 +.1.3.6.1.2.1.16.2.2.1.2.3.78,= 78 +.1.3.6.1.2.1.16.2.2.1.2.3.79,= 79 +.1.3.6.1.2.1.16.2.2.1.2.3.80,= 80 +.1.3.6.1.2.1.16.2.2.1.2.3.81,= 81 +.1.3.6.1.2.1.16.2.2.1.2.3.82,= 82 +.1.3.6.1.2.1.16.2.2.1.2.3.83,= 83 +.1.3.6.1.2.1.16.2.2.1.2.4.1,= 1 +.1.3.6.1.2.1.16.2.2.1.2.4.24,= 24 +.1.3.6.1.2.1.16.2.2.1.2.4.25,= 25 +.1.3.6.1.2.1.16.2.2.1.2.4.26,= 26 +.1.3.6.1.2.1.16.2.2.1.2.4.27,= 27 +.1.3.6.1.2.1.16.2.2.1.2.4.28,= 28 +.1.3.6.1.2.1.16.2.2.1.2.4.29,= 29 +.1.3.6.1.2.1.16.2.2.1.2.4.30,= 30 +.1.3.6.1.2.1.16.2.2.1.2.4.31,= 31 +.1.3.6.1.2.1.16.2.2.1.2.4.32,= 32 +.1.3.6.1.2.1.16.2.2.1.2.4.33,= 33 +.1.3.6.1.2.1.16.2.2.1.2.4.34,= 34 +.1.3.6.1.2.1.16.2.2.1.2.4.35,= 35 +.1.3.6.1.2.1.16.2.2.1.2.4.36,= 36 +.1.3.6.1.2.1.16.2.2.1.2.4.37,= 37 +.1.3.6.1.2.1.16.2.2.1.2.4.38,= 38 +.1.3.6.1.2.1.16.2.2.1.2.4.39,= 39 +.1.3.6.1.2.1.16.2.2.1.2.4.40,= 40 +.1.3.6.1.2.1.16.2.2.1.2.4.41,= 41 +.1.3.6.1.2.1.16.2.2.1.2.4.42,= 42 +.1.3.6.1.2.1.16.2.2.1.2.4.43,= 43 +.1.3.6.1.2.1.16.2.2.1.2.4.44,= 44 +.1.3.6.1.2.1.16.2.2.1.2.4.45,= 45 +.1.3.6.1.2.1.16.2.2.1.2.4.46,= 46 +.1.3.6.1.2.1.16.2.2.1.2.4.47,= 47 +.1.3.6.1.2.1.16.2.2.1.2.4.48,= 48 +.1.3.6.1.2.1.16.2.2.1.2.4.49,= 49 +.1.3.6.1.2.1.16.2.2.1.2.4.50,= 50 +.1.3.6.1.2.1.16.2.2.1.2.4.51,= 51 +.1.3.6.1.2.1.16.2.2.1.2.4.52,= 52 +.1.3.6.1.2.1.16.2.2.1.2.4.53,= 53 +.1.3.6.1.2.1.16.2.2.1.2.4.54,= 54 +.1.3.6.1.2.1.16.2.2.1.2.4.55,= 55 +.1.3.6.1.2.1.16.2.2.1.2.4.56,= 56 +.1.3.6.1.2.1.16.2.2.1.2.4.57,= 57 +.1.3.6.1.2.1.16.2.2.1.2.4.58,= 58 +.1.3.6.1.2.1.16.2.2.1.2.4.59,= 59 +.1.3.6.1.2.1.16.2.2.1.2.4.60,= 60 +.1.3.6.1.2.1.16.2.2.1.2.4.61,= 61 +.1.3.6.1.2.1.16.2.2.1.2.4.62,= 62 +.1.3.6.1.2.1.16.2.2.1.2.4.63,= 63 +.1.3.6.1.2.1.16.2.2.1.2.4.64,= 64 +.1.3.6.1.2.1.16.2.2.1.2.4.65,= 65 +.1.3.6.1.2.1.16.2.2.1.2.4.66,= 66 +.1.3.6.1.2.1.16.2.2.1.2.4.67,= 67 +.1.3.6.1.2.1.16.2.2.1.2.4.68,= 68 +.1.3.6.1.2.1.16.2.2.1.2.4.69,= 69 +.1.3.6.1.2.1.16.2.2.1.2.4.70,= 70 +.1.3.6.1.2.1.16.2.2.1.2.4.71,= 71 +.1.3.6.1.2.1.16.2.2.1.2.4.72,= 72 +.1.3.6.1.2.1.16.2.2.1.2.4.73,= 73 +.1.3.6.1.2.1.16.2.2.1.2.4.74,= 74 +.1.3.6.1.2.1.16.2.2.1.2.4.75,= 75 +.1.3.6.1.2.1.16.2.2.1.2.4.76,= 76 +.1.3.6.1.2.1.16.2.2.1.2.4.77,= 77 +.1.3.6.1.2.1.16.2.2.1.2.4.78,= 78 +.1.3.6.1.2.1.16.2.2.1.2.4.79,= 79 +.1.3.6.1.2.1.16.2.2.1.2.4.80,= 80 +.1.3.6.1.2.1.16.2.2.1.2.4.81,= 81 +.1.3.6.1.2.1.16.2.2.1.2.4.82,= 82 +.1.3.6.1.2.1.16.2.2.1.2.4.83,= 83 +.1.3.6.1.2.1.16.2.2.1.3.1.1,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.24,= 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.25,= 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.26,= 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.27,= 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.28,= 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.29,= 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.30,= 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.31,= 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.32,= 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.33,= 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.34,= 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.35,= 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.36,= 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.37,= 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.38,= 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.39,= 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.40,= 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.41,= 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.42,= 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.43,= 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.44,= 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.45,= 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.46,= 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.47,= 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.48,= 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.49,= 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.50,= 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.51,= 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.52,= 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.53,= 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.54,= 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.55,= 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.56,= 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.57,= 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.58,= 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.59,= 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.60,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.61,= 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.62,= 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.63,= 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.64,= 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.65,= 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.66,= 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.67,= 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.68,= 0:0:34:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.69,= 0:0:34:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.70,= 0:0:35:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.71,= 0:0:35:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.72,= 0:0:36:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.73,= 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.74,= 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.75,= 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.76,= 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.77,= 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.78,= 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.79,= 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.80,= 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.81,= 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.82,= 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.83,= 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.1,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.24,= 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.25,= 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.26,= 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.27,= 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.28,= 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.29,= 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.30,= 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.31,= 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.32,= 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.33,= 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.34,= 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.35,= 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.36,= 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.37,= 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.38,= 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.39,= 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.40,= 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.41,= 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.42,= 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.43,= 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.44,= 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.45,= 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.46,= 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.47,= 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.48,= 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.49,= 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.50,= 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.51,= 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.52,= 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.53,= 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.54,= 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.55,= 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.56,= 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.57,= 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.58,= 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.59,= 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.60,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.61,= 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.62,= 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.63,= 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.64,= 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.65,= 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.66,= 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.67,= 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.68,= 0:0:34:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.69,= 0:0:34:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.70,= 0:0:35:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.71,= 0:0:35:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.72,= 0:0:36:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.73,= 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.74,= 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.75,= 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.76,= 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.77,= 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.78,= 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.79,= 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.80,= 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.81,= 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.82,= 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.83,= 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.1,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.24,= 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.25,= 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.26,= 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.27,= 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.28,= 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.29,= 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.30,= 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.31,= 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.32,= 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.33,= 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.34,= 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.35,= 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.36,= 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.37,= 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.38,= 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.39,= 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.40,= 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.41,= 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.42,= 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.43,= 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.44,= 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.45,= 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.46,= 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.47,= 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.48,= 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.49,= 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.50,= 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.51,= 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.52,= 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.53,= 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.54,= 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.55,= 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.56,= 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.57,= 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.58,= 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.59,= 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.60,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.61,= 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.62,= 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.63,= 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.64,= 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.65,= 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.66,= 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.67,= 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.68,= 0:0:34:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.69,= 0:0:34:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.70,= 0:0:35:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.71,= 0:0:35:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.72,= 0:0:36:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.73,= 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.74,= 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.75,= 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.76,= 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.77,= 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.78,= 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.79,= 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.80,= 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.81,= 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.82,= 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.83,= 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.1,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.24,= 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.25,= 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.26,= 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.27,= 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.28,= 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.29,= 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.30,= 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.31,= 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.32,= 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.33,= 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.34,= 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.35,= 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.36,= 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.37,= 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.38,= 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.39,= 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.40,= 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.41,= 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.42,= 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.43,= 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.44,= 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.45,= 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.46,= 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.47,= 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.48,= 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.49,= 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.50,= 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.51,= 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.52,= 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.53,= 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.54,= 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.55,= 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.56,= 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.57,= 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.58,= 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.59,= 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.60,= 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.61,= 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.62,= 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.63,= 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.64,= 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.65,= 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.66,= 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.67,= 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.68,= 0:0:34:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.69,= 0:0:34:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.70,= 0:0:35:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.71,= 0:0:35:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.72,= 0:0:36:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.73,= 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.74,= 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.75,= 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.76,= 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.77,= 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.78,= 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.79,= 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.80,= 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.81,= 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.82,= 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.83,= 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.4.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.24,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.4.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.24,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.4.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.4.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.4.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.5.1.1,= 9600 +.1.3.6.1.2.1.16.2.2.1.5.1.25,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.26,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.27,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.28,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.29,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.30,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.31,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.32,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.33,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.34,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.35,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.36,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.37,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.38,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.39,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.40,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.41,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.42,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.43,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.44,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.45,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.46,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.47,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.48,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.49,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.50,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.51,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.52,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.53,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.54,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.55,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.56,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.57,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.58,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.59,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.60,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.61,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.62,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.63,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.64,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.65,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.66,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.67,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.68,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.69,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.70,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.71,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.72,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.73,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.74,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.75,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.76,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.77,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.78,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.79,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.80,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.81,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.82,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.83,= 160 +.1.3.6.1.2.1.16.2.2.1.5.1.84,= 160 +.1.3.6.1.2.1.16.2.2.1.5.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.5.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.5.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.5.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.6.1.1,= 60 +.1.3.6.1.2.1.16.2.2.1.6.1.25,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.26,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.27,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.28,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.29,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.30,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.31,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.32,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.33,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.34,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.35,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.36,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.37,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.38,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.39,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.40,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.41,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.42,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.43,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.44,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.45,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.46,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.47,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.48,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.49,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.50,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.51,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.52,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.53,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.54,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.55,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.56,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.57,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.58,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.59,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.60,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.61,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.62,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.63,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.64,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.65,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.66,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.67,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.68,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.69,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.70,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.71,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.72,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.73,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.74,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.75,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.76,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.77,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.78,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.79,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.80,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.81,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.82,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.83,= 1 +.1.3.6.1.2.1.16.2.2.1.6.1.84,= 1 +.1.3.6.1.2.1.16.2.2.1.6.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.6.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.6.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.6.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.7.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.7.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.7.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.7.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.8.1.1,= 60 +.1.3.6.1.2.1.16.2.2.1.8.1.25,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.26,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.27,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.28,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.29,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.30,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.31,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.32,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.33,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.34,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.35,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.36,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.37,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.38,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.39,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.40,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.41,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.42,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.43,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.44,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.45,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.46,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.47,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.48,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.49,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.50,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.51,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.52,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.53,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.54,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.55,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.56,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.57,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.58,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.59,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.60,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.61,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.62,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.63,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.64,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.65,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.66,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.67,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.68,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.69,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.70,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.71,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.72,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.73,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.74,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.75,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.76,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.77,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.78,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.79,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.80,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.81,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.82,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.83,= 1 +.1.3.6.1.2.1.16.2.2.1.8.1.84,= 1 +.1.3.6.1.2.1.16.2.2.1.8.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.8.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.8.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.8.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.9.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.9.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.9.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.9.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.10.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.10.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.10.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.10.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.11.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.11.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.11.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.11.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.12.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.12.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.12.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.12.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.13.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.13.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.13.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.25,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.13.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.25,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.14.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.25,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.14.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.25,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.14.3.85,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.14.4.85,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.1,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.26,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.27,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.28,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.29,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.30,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.31,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.32,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.33,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.34,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.35,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.36,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.37,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.38,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.39,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.40,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.41,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.42,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.43,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.44,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.45,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.46,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.47,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.48,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.49,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.50,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.51,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.52,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.53,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.54,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.55,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.56,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.57,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.58,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.59,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.60,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.61,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.62,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.63,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.64,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.65,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.66,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.67,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.68,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.69,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.70,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.71,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.72,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.73,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.74,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.75,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.76,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.77,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.78,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.79,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.80,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.81,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.82,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.83,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.84,= 0 +.1.3.6.1.2.1.16.2.2.1.15.1.85,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.1,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.26,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.27,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.28,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.29,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.30,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.31,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.32,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.33,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.34,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.35,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.36,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.37,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.38,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.39,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.40,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.41,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.42,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.43,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.44,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.45,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.46,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.47,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.48,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.49,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.50,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.51,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.52,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.53,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.54,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.55,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.56,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.57,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.58,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.59,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.60,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.61,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.62,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.63,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.64,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.65,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.66,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.67,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.68,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.69,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.70,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.71,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.72,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.73,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.74,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.75,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.76,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.77,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.78,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.79,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.80,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.81,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.82,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.83,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.84,= 0 +.1.3.6.1.2.1.16.2.2.1.15.2.85,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.1,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.26,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.27,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.28,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.29,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.30,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.31,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.32,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.33,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.34,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.35,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.36,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.37,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.38,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.39,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.40,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.41,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.42,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.43,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.44,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.45,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.46,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.47,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.48,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.49,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.50,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.51,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.52,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.53,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.54,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.55,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.56,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.57,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.58,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.59,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.60,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.61,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.62,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.63,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.64,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.65,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.66,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.67,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.68,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.69,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.70,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.71,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.72,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.73,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.74,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.75,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.76,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.77,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.78,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.79,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.80,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.81,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.82,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.83,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.84,= 0 +.1.3.6.1.2.1.16.2.2.1.15.3.85,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.1,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.26,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.27,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.28,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.29,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.30,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.31,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.32,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.33,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.34,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.35,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.36,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.37,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.38,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.39,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.40,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.41,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.42,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.43,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.44,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.45,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.46,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.47,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.48,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.49,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.50,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.51,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.52,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.53,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.54,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.55,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.56,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.57,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.58,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.59,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.60,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.61,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.62,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.63,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.64,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.65,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.66,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.67,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.68,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.69,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.70,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.71,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.72,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.73,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.74,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.75,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.76,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.77,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.78,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.79,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.80,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.81,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.82,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.83,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.84,= 0 +.1.3.6.1.2.1.16.2.2.1.15.4.85,= 0 +.1.3.6.1.2.1.16.2.6.1.1.1.61,= 0 +.1.3.6.1.2.1.16.2.6.1.1.2.62,= 0 +.1.3.6.1.2.1.16.2.6.1.1.3.63,= 0 +.1.3.6.1.2.1.16.2.6.1.1.4.64,= 0 +.1.3.6.1.2.1.16.2.6.1.1.5.65,= 0 +.1.3.6.1.2.1.16.2.6.1.1.6.66,= 0 +.1.3.6.1.2.1.16.2.6.1.1.7.67,= 0 +.1.3.6.1.2.1.16.2.6.1.1.8.68,= 0 +.1.3.6.1.2.1.16.2.6.1.1.9.69,= 0 +.1.3.6.1.2.1.16.2.6.1.1.10.70,= 0 +.1.3.6.1.2.1.16.2.6.1.1.11.71,= 0 +.1.3.6.1.2.1.16.2.6.1.1.12.72,= 0 +.1.3.6.1.2.1.16.2.6.1.1.13.73,= 0 +.1.3.6.1.2.1.16.2.6.1.1.14.74,= 0 +.1.3.6.1.2.1.16.2.6.1.1.15.75,= 0 +.1.3.6.1.2.1.16.2.6.1.1.16.76,= 0 +.1.3.6.1.2.1.16.2.6.1.1.17.77,= 0 +.1.3.6.1.2.1.16.2.6.1.1.18.78,= 0 +.1.3.6.1.2.1.16.2.6.1.1.19.79,= 0 +.1.3.6.1.2.1.16.2.6.1.1.20.80,= 0 +.1.3.6.1.2.1.16.2.6.1.1.21.81,= 0 +.1.3.6.1.2.1.16.2.6.1.1.22.82,= 0 +.1.3.6.1.2.1.16.2.6.1.1.23.83,= 0 +.1.3.6.1.2.1.16.2.6.1.1.24.84,= 0 +.1.3.6.1.2.1.16.2.6.1.1.25.85,= 0 +.1.3.6.1.2.1.16.2.6.1.1.26.26,= 0 +.1.3.6.1.2.1.16.2.6.1.1.27.27,= 0 +.1.3.6.1.2.1.16.2.6.1.1.28.28,= 0 +.1.3.6.1.2.1.16.2.6.1.1.29.29,= 0 +.1.3.6.1.2.1.16.2.6.1.1.30.30,= 0 +.1.3.6.1.2.1.16.2.6.1.1.31.31,= 0 +.1.3.6.1.2.1.16.2.6.1.1.32.32,= 0 +.1.3.6.1.2.1.16.2.6.1.1.33.33,= 0 +.1.3.6.1.2.1.16.2.6.1.1.34.34,= 0 +.1.3.6.1.2.1.16.2.6.1.1.35.35,= 0 +.1.3.6.1.2.1.16.2.6.1.1.36.36,= 0 +.1.3.6.1.2.1.16.2.6.1.1.37.37,= 0 +.1.3.6.1.2.1.16.2.6.1.1.38.38,= 0 +.1.3.6.1.2.1.16.2.6.1.1.39.39,= 0 +.1.3.6.1.2.1.16.2.6.1.1.40.40,= 0 +.1.3.6.1.2.1.16.2.6.1.1.41.41,= 0 +.1.3.6.1.2.1.16.2.6.1.1.42.42,= 0 +.1.3.6.1.2.1.16.2.6.1.1.43.43,= 0 +.1.3.6.1.2.1.16.2.6.1.1.44.44,= 0 +.1.3.6.1.2.1.16.2.6.1.1.45.45,= 0 +.1.3.6.1.2.1.16.2.6.1.1.46.46,= 0 +.1.3.6.1.2.1.16.2.6.1.1.47.47,= 0 +.1.3.6.1.2.1.16.2.6.1.1.48.48,= 0 +.1.3.6.1.2.1.16.2.6.1.1.49.49,= 0 +.1.3.6.1.2.1.16.2.6.1.1.50.50,= 0 +.1.3.6.1.2.1.16.2.6.1.1.51.51,= 0 +.1.3.6.1.2.1.16.2.6.1.1.52.52,= 0 +.1.3.6.1.2.1.16.2.6.1.1.53.53,= 0 +.1.3.6.1.2.1.16.2.6.1.1.54.54,= 0 +.1.3.6.1.2.1.16.2.6.1.1.55.55,= 0 +.1.3.6.1.2.1.16.2.6.1.1.56.56,= 0 +.1.3.6.1.2.1.16.2.6.1.1.57.57,= 0 +.1.3.6.1.2.1.16.2.6.1.1.58.58,= 0 +.1.3.6.1.2.1.16.2.6.1.1.59.59,= 0 +.1.3.6.1.2.1.16.2.6.1.1.60.60,= 0 +.1.3.6.1.2.1.16.2.6.1.1.61.1,= 0 +.1.3.6.1.2.1.16.2.6.1.1.62.61,= 0 +.1.3.6.1.2.1.16.2.6.1.1.63.62,= 0 +.1.3.6.1.2.1.16.2.6.1.1.64.63,= 0 +.1.3.6.1.2.1.16.2.6.1.1.65.64,= 0 +.1.3.6.1.2.1.16.2.6.1.1.66.65,= 0 +.1.3.6.1.2.1.16.2.6.1.1.67.66,= 0 +.1.3.6.1.2.1.16.2.6.1.1.68.67,= 0 +.1.3.6.1.2.1.16.2.6.1.1.69.68,= 0 +.1.3.6.1.2.1.16.2.6.1.1.70.69,= 0 +.1.3.6.1.2.1.16.2.6.1.1.71.70,= 0 +.1.3.6.1.2.1.16.2.6.1.1.72.71,= 0 +.1.3.6.1.2.1.16.2.6.1.1.73.72,= 0 +.1.3.6.1.2.1.16.2.6.1.1.74.73,= 0 +.1.3.6.1.2.1.16.2.6.1.1.75.74,= 0 +.1.3.6.1.2.1.16.2.6.1.1.76.75,= 0 +.1.3.6.1.2.1.16.2.6.1.1.77.76,= 0 +.1.3.6.1.2.1.16.2.6.1.1.78.77,= 0 +.1.3.6.1.2.1.16.2.6.1.1.79.78,= 0 +.1.3.6.1.2.1.16.2.6.1.1.80.79,= 0 +.1.3.6.1.2.1.16.2.6.1.1.81.80,= 0 +.1.3.6.1.2.1.16.2.6.1.1.82.81,= 0 +.1.3.6.1.2.1.16.2.6.1.1.83.82,= 0 +.1.3.6.1.2.1.16.2.6.1.1.84.83,= 0 +.1.3.6.1.2.1.16.2.6.1.1.85.84,= 0 +.1.3.6.1.2.1.16.2.6.1.1.86.85,= 0 +.1.3.6.1.2.1.16.2.6.1.1.87.26,= 0 +.1.3.6.1.2.1.16.2.6.1.1.88.27,= 0 +.1.3.6.1.2.1.16.2.6.1.1.89.28,= 0 +.1.3.6.1.2.1.16.2.6.1.1.90.29,= 0 +.1.3.6.1.2.1.16.2.6.1.1.91.30,= 0 +.1.3.6.1.2.1.16.2.6.1.1.92.31,= 0 +.1.3.6.1.2.1.16.2.6.1.1.93.32,= 0 +.1.3.6.1.2.1.16.2.6.1.1.94.33,= 0 +.1.3.6.1.2.1.16.2.6.1.1.95.34,= 0 +.1.3.6.1.2.1.16.2.6.1.1.96.35,= 0 +.1.3.6.1.2.1.16.2.6.1.1.97.36,= 0 +.1.3.6.1.2.1.16.2.6.1.1.98.37,= 0 +.1.3.6.1.2.1.16.2.6.1.1.99.38,= 0 +.1.3.6.1.2.1.16.2.6.1.1.100.39,= 0 +.1.3.6.1.2.1.16.2.6.1.1.101.40,= 0 +.1.3.6.1.2.1.16.2.6.1.1.102.41,= 0 +.1.3.6.1.2.1.16.2.6.1.1.103.42,= 0 +.1.3.6.1.2.1.16.2.6.1.1.104.43,= 0 +.1.3.6.1.2.1.16.2.6.1.1.105.44,= 0 +.1.3.6.1.2.1.16.2.6.1.1.106.45,= 0 +.1.3.6.1.2.1.16.2.6.1.1.107.46,= 0 +.1.3.6.1.2.1.16.2.6.1.1.108.47,= 0 +.1.3.6.1.2.1.16.2.6.1.1.109.48,= 0 +.1.3.6.1.2.1.16.2.6.1.1.110.49,= 0 +.1.3.6.1.2.1.16.2.6.1.1.111.50,= 0 +.1.3.6.1.2.1.16.2.6.1.1.112.51,= 0 +.1.3.6.1.2.1.16.2.6.1.1.113.52,= 0 +.1.3.6.1.2.1.16.2.6.1.1.114.53,= 0 +.1.3.6.1.2.1.16.2.6.1.1.115.54,= 0 +.1.3.6.1.2.1.16.2.6.1.1.116.55,= 0 +.1.3.6.1.2.1.16.2.6.1.1.117.56,= 0 +.1.3.6.1.2.1.16.2.6.1.1.118.57,= 0 +.1.3.6.1.2.1.16.2.6.1.1.119.58,= 0 +.1.3.6.1.2.1.16.2.6.1.1.120.59,= 0 +.1.3.6.1.2.1.16.2.6.1.1.121.60,= 0 +.1.3.6.1.2.1.16.2.6.1.1.122.1,= 0 +.1.3.6.1.2.1.16.2.6.1.1.123.61,= 0 +.1.3.6.1.2.1.16.2.6.1.1.124.62,= 0 +.1.3.6.1.2.1.16.2.6.1.1.125.63,= 0 +.1.3.6.1.2.1.16.2.6.1.1.126.64,= 0 +.1.3.6.1.2.1.16.2.6.1.1.127.65,= 0 +.1.3.6.1.2.1.16.2.6.1.1.128.66,= 0 +.1.3.6.1.2.1.16.2.6.1.1.129.67,= 0 +.1.3.6.1.2.1.16.2.6.1.1.130.68,= 0 +.1.3.6.1.2.1.16.2.6.1.1.131.69,= 0 +.1.3.6.1.2.1.16.2.6.1.1.132.70,= 0 +.1.3.6.1.2.1.16.2.6.1.1.133.71,= 0 +.1.3.6.1.2.1.16.2.6.1.1.134.72,= 0 +.1.3.6.1.2.1.16.2.6.1.1.135.73,= 0 +.1.3.6.1.2.1.16.2.6.1.1.136.74,= 0 +.1.3.6.1.2.1.16.2.6.1.1.137.75,= 0 +.1.3.6.1.2.1.16.2.6.1.1.138.76,= 0 +.1.3.6.1.2.1.16.2.6.1.1.139.77,= 0 +.1.3.6.1.2.1.16.2.6.1.1.140.78,= 0 +.1.3.6.1.2.1.16.2.6.1.1.141.79,= 0 +.1.3.6.1.2.1.16.2.6.1.1.142.80,= 0 +.1.3.6.1.2.1.16.2.6.1.1.143.81,= 0 +.1.3.6.1.2.1.16.2.6.1.1.144.82,= 0 +.1.3.6.1.2.1.16.2.6.1.1.145.83,= 0 +.1.3.6.1.2.1.16.2.6.1.1.146.84,= 0 +.1.3.6.1.2.1.16.2.6.1.1.147.85,= 0 +.1.3.6.1.2.1.16.2.6.1.1.148.26,= 0 +.1.3.6.1.2.1.16.2.6.1.1.149.27,= 0 +.1.3.6.1.2.1.16.2.6.1.1.150.28,= 0 +.1.3.6.1.2.1.16.2.6.1.1.151.29,= 0 +.1.3.6.1.2.1.16.2.6.1.1.152.30,= 0 +.1.3.6.1.2.1.16.2.6.1.1.153.31,= 0 +.1.3.6.1.2.1.16.2.6.1.1.154.32,= 0 +.1.3.6.1.2.1.16.2.6.1.1.155.33,= 0 +.1.3.6.1.2.1.16.2.6.1.1.156.34,= 0 +.1.3.6.1.2.1.16.2.6.1.1.157.35,= 0 +.1.3.6.1.2.1.16.2.6.1.1.158.36,= 0 +.1.3.6.1.2.1.16.2.6.1.1.159.37,= 0 +.1.3.6.1.2.1.16.2.6.1.1.160.38,= 0 +.1.3.6.1.2.1.16.2.6.1.1.161.39,= 0 +.1.3.6.1.2.1.16.2.6.1.1.162.40,= 0 +.1.3.6.1.2.1.16.2.6.1.1.163.41,= 0 +.1.3.6.1.2.1.16.2.6.1.1.164.42,= 0 +.1.3.6.1.2.1.16.2.6.1.1.165.43,= 0 +.1.3.6.1.2.1.16.2.6.1.1.166.44,= 0 +.1.3.6.1.2.1.16.2.6.1.1.167.45,= 0 +.1.3.6.1.2.1.16.2.6.1.1.168.46,= 0 +.1.3.6.1.2.1.16.2.6.1.1.169.47,= 0 +.1.3.6.1.2.1.16.2.6.1.1.170.48,= 0 +.1.3.6.1.2.1.16.2.6.1.1.171.49,= 0 +.1.3.6.1.2.1.16.2.6.1.1.172.50,= 0 +.1.3.6.1.2.1.16.2.6.1.1.173.51,= 0 +.1.3.6.1.2.1.16.2.6.1.1.174.52,= 0 +.1.3.6.1.2.1.16.2.6.1.1.175.53,= 0 +.1.3.6.1.2.1.16.2.6.1.1.176.54,= 0 +.1.3.6.1.2.1.16.2.6.1.1.177.55,= 0 +.1.3.6.1.2.1.16.2.6.1.1.178.56,= 0 +.1.3.6.1.2.1.16.2.6.1.1.179.57,= 0 +.1.3.6.1.2.1.16.2.6.1.1.180.58,= 0 +.1.3.6.1.2.1.16.2.6.1.1.181.59,= 0 +.1.3.6.1.2.1.16.2.6.1.1.182.60,= 0 +.1.3.6.1.2.1.16.2.6.1.1.183.1,= 0 +.1.3.6.1.2.1.16.2.6.1.1.184.61,= 0 +.1.3.6.1.2.1.16.2.6.1.1.185.62,= 0 +.1.3.6.1.2.1.16.2.6.1.1.186.63,= 0 +.1.3.6.1.2.1.16.2.6.1.1.187.64,= 0 +.1.3.6.1.2.1.16.2.6.1.1.188.65,= 0 +.1.3.6.1.2.1.16.2.6.1.1.189.66,= 0 +.1.3.6.1.2.1.16.2.6.1.1.190.67,= 0 +.1.3.6.1.2.1.16.2.6.1.1.191.68,= 0 +.1.3.6.1.2.1.16.2.6.1.1.192.69,= 0 +.1.3.6.1.2.1.16.2.6.1.1.193.70,= 0 +.1.3.6.1.2.1.16.2.6.1.1.194.71,= 0 +.1.3.6.1.2.1.16.2.6.1.1.195.72,= 0 +.1.3.6.1.2.1.16.2.6.1.1.196.73,= 0 +.1.3.6.1.2.1.16.2.6.1.1.197.74,= 0 +.1.3.6.1.2.1.16.2.6.1.1.198.75,= 0 +.1.3.6.1.2.1.16.2.6.1.1.199.76,= 0 +.1.3.6.1.2.1.16.2.6.1.1.200.77,= 0 +.1.3.6.1.2.1.16.2.6.1.1.201.78,= 0 +.1.3.6.1.2.1.16.2.6.1.1.202.79,= 0 +.1.3.6.1.2.1.16.2.6.1.1.203.80,= 0 +.1.3.6.1.2.1.16.2.6.1.1.204.81,= 0 +.1.3.6.1.2.1.16.2.6.1.1.205.82,= 0 +.1.3.6.1.2.1.16.2.6.1.1.206.83,= 0 +.1.3.6.1.2.1.16.2.6.1.1.207.84,= 0 +.1.3.6.1.2.1.16.2.6.1.1.208.85,= 0 +.1.3.6.1.2.1.16.2.6.1.1.209.26,= 0 +.1.3.6.1.2.1.16.2.6.1.1.210.27,= 0 +.1.3.6.1.2.1.16.2.6.1.1.211.28,= 0 +.1.3.6.1.2.1.16.2.6.1.1.212.29,= 0 +.1.3.6.1.2.1.16.2.6.1.1.213.30,= 0 +.1.3.6.1.2.1.16.2.6.1.1.214.31,= 0 +.1.3.6.1.2.1.16.2.6.1.1.215.32,= 0 +.1.3.6.1.2.1.16.2.6.1.1.216.33,= 0 +.1.3.6.1.2.1.16.2.6.1.1.217.34,= 0 +.1.3.6.1.2.1.16.2.6.1.1.218.35,= 0 +.1.3.6.1.2.1.16.2.6.1.1.219.36,= 0 +.1.3.6.1.2.1.16.2.6.1.1.220.37,= 0 +.1.3.6.1.2.1.16.2.6.1.1.221.38,= 0 +.1.3.6.1.2.1.16.2.6.1.1.222.39,= 0 +.1.3.6.1.2.1.16.2.6.1.1.223.40,= 0 +.1.3.6.1.2.1.16.2.6.1.1.224.41,= 0 +.1.3.6.1.2.1.16.2.6.1.1.225.42,= 0 +.1.3.6.1.2.1.16.2.6.1.1.226.43,= 0 +.1.3.6.1.2.1.16.2.6.1.1.227.44,= 0 +.1.3.6.1.2.1.16.2.6.1.1.228.45,= 0 +.1.3.6.1.2.1.16.2.6.1.1.229.46,= 0 +.1.3.6.1.2.1.16.2.6.1.1.230.47,= 0 +.1.3.6.1.2.1.16.2.6.1.1.231.48,= 0 +.1.3.6.1.2.1.16.2.6.1.1.232.49,= 0 +.1.3.6.1.2.1.16.2.6.1.1.233.50,= 0 +.1.3.6.1.2.1.16.2.6.1.1.234.51,= 0 +.1.3.6.1.2.1.16.2.6.1.1.235.52,= 0 +.1.3.6.1.2.1.16.2.6.1.1.236.53,= 0 +.1.3.6.1.2.1.16.2.6.1.1.237.54,= 0 +.1.3.6.1.2.1.16.2.6.1.1.238.55,= 0 +.1.3.6.1.2.1.16.2.6.1.1.239.56,= 0 +.1.3.6.1.2.1.16.2.6.1.1.240.57,= 0 +.1.3.6.1.2.1.16.2.6.1.1.241.58,= 0 +.1.3.6.1.2.1.16.2.6.1.1.242.59,= 0 +.1.3.6.1.2.1.16.2.6.1.1.243.60,= 0 +.1.3.6.1.2.1.16.2.6.1.1.244.1,= 0 +.1.3.6.1.2.1.16.2.6.1.2.1.61,= 1 +.1.3.6.1.2.1.16.2.6.1.2.2.62,= 1 +.1.3.6.1.2.1.16.2.6.1.2.3.63,= 1 +.1.3.6.1.2.1.16.2.6.1.2.4.64,= 1 +.1.3.6.1.2.1.16.2.6.1.2.5.65,= 1 +.1.3.6.1.2.1.16.2.6.1.2.6.66,= 1 +.1.3.6.1.2.1.16.2.6.1.2.7.67,= 1 +.1.3.6.1.2.1.16.2.6.1.2.8.68,= 1 +.1.3.6.1.2.1.16.2.6.1.2.9.69,= 1 +.1.3.6.1.2.1.16.2.6.1.2.10.70,= 1 +.1.3.6.1.2.1.16.2.6.1.2.11.71,= 1 +.1.3.6.1.2.1.16.2.6.1.2.12.72,= 1 +.1.3.6.1.2.1.16.2.6.1.2.13.73,= 1 +.1.3.6.1.2.1.16.2.6.1.2.14.74,= 1 +.1.3.6.1.2.1.16.2.6.1.2.15.75,= 1 +.1.3.6.1.2.1.16.2.6.1.2.16.76,= 1 +.1.3.6.1.2.1.16.2.6.1.2.17.77,= 1 +.1.3.6.1.2.1.16.2.6.1.2.18.78,= 1 +.1.3.6.1.2.1.16.2.6.1.2.19.79,= 1 +.1.3.6.1.2.1.16.2.6.1.2.20.80,= 1 +.1.3.6.1.2.1.16.2.6.1.2.21.81,= 1 +.1.3.6.1.2.1.16.2.6.1.2.22.82,= 1 +.1.3.6.1.2.1.16.2.6.1.2.23.83,= 1 +.1.3.6.1.2.1.16.2.6.1.2.24.84,= 1 +.1.3.6.1.2.1.16.2.6.1.2.25.85,= 1 +.1.3.6.1.2.1.16.2.6.1.2.26.26,= 1 +.1.3.6.1.2.1.16.2.6.1.2.27.27,= 1 +.1.3.6.1.2.1.16.2.6.1.2.28.28,= 1 +.1.3.6.1.2.1.16.2.6.1.2.29.29,= 1 +.1.3.6.1.2.1.16.2.6.1.2.30.30,= 1 +.1.3.6.1.2.1.16.2.6.1.2.31.31,= 1 +.1.3.6.1.2.1.16.2.6.1.2.32.32,= 1 +.1.3.6.1.2.1.16.2.6.1.2.33.33,= 1 +.1.3.6.1.2.1.16.2.6.1.2.34.34,= 1 +.1.3.6.1.2.1.16.2.6.1.2.35.35,= 1 +.1.3.6.1.2.1.16.2.6.1.2.36.36,= 1 +.1.3.6.1.2.1.16.2.6.1.2.37.37,= 1 +.1.3.6.1.2.1.16.2.6.1.2.38.38,= 1 +.1.3.6.1.2.1.16.2.6.1.2.39.39,= 1 +.1.3.6.1.2.1.16.2.6.1.2.40.40,= 1 +.1.3.6.1.2.1.16.2.6.1.2.41.41,= 1 +.1.3.6.1.2.1.16.2.6.1.2.42.42,= 1 +.1.3.6.1.2.1.16.2.6.1.2.43.43,= 1 +.1.3.6.1.2.1.16.2.6.1.2.44.44,= 1 +.1.3.6.1.2.1.16.2.6.1.2.45.45,= 1 +.1.3.6.1.2.1.16.2.6.1.2.46.46,= 1 +.1.3.6.1.2.1.16.2.6.1.2.47.47,= 1 +.1.3.6.1.2.1.16.2.6.1.2.48.48,= 1 +.1.3.6.1.2.1.16.2.6.1.2.49.49,= 1 +.1.3.6.1.2.1.16.2.6.1.2.50.50,= 1 +.1.3.6.1.2.1.16.2.6.1.2.51.51,= 1 +.1.3.6.1.2.1.16.2.6.1.2.52.52,= 1 +.1.3.6.1.2.1.16.2.6.1.2.53.53,= 1 +.1.3.6.1.2.1.16.2.6.1.2.54.54,= 1 +.1.3.6.1.2.1.16.2.6.1.2.55.55,= 1 +.1.3.6.1.2.1.16.2.6.1.2.56.56,= 1 +.1.3.6.1.2.1.16.2.6.1.2.57.57,= 1 +.1.3.6.1.2.1.16.2.6.1.2.58.58,= 1 +.1.3.6.1.2.1.16.2.6.1.2.59.59,= 1 +.1.3.6.1.2.1.16.2.6.1.2.60.60,= 1 +.1.3.6.1.2.1.16.2.6.1.2.61.1,= 60 +.1.3.6.1.2.1.16.2.6.1.2.62.61,= 0 +.1.3.6.1.2.1.16.2.6.1.2.63.62,= 0 +.1.3.6.1.2.1.16.2.6.1.2.64.63,= 0 +.1.3.6.1.2.1.16.2.6.1.2.65.64,= 0 +.1.3.6.1.2.1.16.2.6.1.2.66.65,= 0 +.1.3.6.1.2.1.16.2.6.1.2.67.66,= 0 +.1.3.6.1.2.1.16.2.6.1.2.68.67,= 0 +.1.3.6.1.2.1.16.2.6.1.2.69.68,= 0 +.1.3.6.1.2.1.16.2.6.1.2.70.69,= 0 +.1.3.6.1.2.1.16.2.6.1.2.71.70,= 0 +.1.3.6.1.2.1.16.2.6.1.2.72.71,= 0 +.1.3.6.1.2.1.16.2.6.1.2.73.72,= 0 +.1.3.6.1.2.1.16.2.6.1.2.74.73,= 0 +.1.3.6.1.2.1.16.2.6.1.2.75.74,= 0 +.1.3.6.1.2.1.16.2.6.1.2.76.75,= 0 +.1.3.6.1.2.1.16.2.6.1.2.77.76,= 0 +.1.3.6.1.2.1.16.2.6.1.2.78.77,= 0 +.1.3.6.1.2.1.16.2.6.1.2.79.78,= 0 +.1.3.6.1.2.1.16.2.6.1.2.80.79,= 0 +.1.3.6.1.2.1.16.2.6.1.2.81.80,= 0 +.1.3.6.1.2.1.16.2.6.1.2.82.81,= 0 +.1.3.6.1.2.1.16.2.6.1.2.83.82,= 0 +.1.3.6.1.2.1.16.2.6.1.2.84.83,= 0 +.1.3.6.1.2.1.16.2.6.1.2.85.84,= 0 +.1.3.6.1.2.1.16.2.6.1.2.86.85,= 0 +.1.3.6.1.2.1.16.2.6.1.2.87.26,= 0 +.1.3.6.1.2.1.16.2.6.1.2.88.27,= 0 +.1.3.6.1.2.1.16.2.6.1.2.89.28,= 0 +.1.3.6.1.2.1.16.2.6.1.2.90.29,= 0 +.1.3.6.1.2.1.16.2.6.1.2.91.30,= 0 +.1.3.6.1.2.1.16.2.6.1.2.92.31,= 0 +.1.3.6.1.2.1.16.2.6.1.2.93.32,= 0 +.1.3.6.1.2.1.16.2.6.1.2.94.33,= 0 +.1.3.6.1.2.1.16.2.6.1.2.95.34,= 0 +.1.3.6.1.2.1.16.2.6.1.2.96.35,= 0 +.1.3.6.1.2.1.16.2.6.1.2.97.36,= 0 +.1.3.6.1.2.1.16.2.6.1.2.98.37,= 0 +.1.3.6.1.2.1.16.2.6.1.2.99.38,= 0 +.1.3.6.1.2.1.16.2.6.1.2.100.39,= 0 +.1.3.6.1.2.1.16.2.6.1.2.101.40,= 0 +.1.3.6.1.2.1.16.2.6.1.2.102.41,= 0 +.1.3.6.1.2.1.16.2.6.1.2.103.42,= 0 +.1.3.6.1.2.1.16.2.6.1.2.104.43,= 0 +.1.3.6.1.2.1.16.2.6.1.2.105.44,= 0 +.1.3.6.1.2.1.16.2.6.1.2.106.45,= 0 +.1.3.6.1.2.1.16.2.6.1.2.107.46,= 0 +.1.3.6.1.2.1.16.2.6.1.2.108.47,= 0 +.1.3.6.1.2.1.16.2.6.1.2.109.48,= 0 +.1.3.6.1.2.1.16.2.6.1.2.110.49,= 0 +.1.3.6.1.2.1.16.2.6.1.2.111.50,= 0 +.1.3.6.1.2.1.16.2.6.1.2.112.51,= 0 +.1.3.6.1.2.1.16.2.6.1.2.113.52,= 0 +.1.3.6.1.2.1.16.2.6.1.2.114.53,= 0 +.1.3.6.1.2.1.16.2.6.1.2.115.54,= 0 +.1.3.6.1.2.1.16.2.6.1.2.116.55,= 0 +.1.3.6.1.2.1.16.2.6.1.2.117.56,= 0 +.1.3.6.1.2.1.16.2.6.1.2.118.57,= 0 +.1.3.6.1.2.1.16.2.6.1.2.119.58,= 0 +.1.3.6.1.2.1.16.2.6.1.2.120.59,= 0 +.1.3.6.1.2.1.16.2.6.1.2.121.60,= 0 +.1.3.6.1.2.1.16.2.6.1.2.122.1,= 0 +.1.3.6.1.2.1.16.2.6.1.2.123.61,= 0 +.1.3.6.1.2.1.16.2.6.1.2.124.62,= 0 +.1.3.6.1.2.1.16.2.6.1.2.125.63,= 0 +.1.3.6.1.2.1.16.2.6.1.2.126.64,= 0 +.1.3.6.1.2.1.16.2.6.1.2.127.65,= 0 +.1.3.6.1.2.1.16.2.6.1.2.128.66,= 0 +.1.3.6.1.2.1.16.2.6.1.2.129.67,= 0 +.1.3.6.1.2.1.16.2.6.1.2.130.68,= 0 +.1.3.6.1.2.1.16.2.6.1.2.131.69,= 0 +.1.3.6.1.2.1.16.2.6.1.2.132.70,= 0 +.1.3.6.1.2.1.16.2.6.1.2.133.71,= 0 +.1.3.6.1.2.1.16.2.6.1.2.134.72,= 0 +.1.3.6.1.2.1.16.2.6.1.2.135.73,= 0 +.1.3.6.1.2.1.16.2.6.1.2.136.74,= 0 +.1.3.6.1.2.1.16.2.6.1.2.137.75,= 0 +.1.3.6.1.2.1.16.2.6.1.2.138.76,= 0 +.1.3.6.1.2.1.16.2.6.1.2.139.77,= 0 +.1.3.6.1.2.1.16.2.6.1.2.140.78,= 0 +.1.3.6.1.2.1.16.2.6.1.2.141.79,= 0 +.1.3.6.1.2.1.16.2.6.1.2.142.80,= 0 +.1.3.6.1.2.1.16.2.6.1.2.143.81,= 0 +.1.3.6.1.2.1.16.2.6.1.2.144.82,= 0 +.1.3.6.1.2.1.16.2.6.1.2.145.83,= 0 +.1.3.6.1.2.1.16.2.6.1.2.146.84,= 0 +.1.3.6.1.2.1.16.2.6.1.2.147.85,= 0 +.1.3.6.1.2.1.16.2.6.1.2.148.26,= 0 +.1.3.6.1.2.1.16.2.6.1.2.149.27,= 0 +.1.3.6.1.2.1.16.2.6.1.2.150.28,= 0 +.1.3.6.1.2.1.16.2.6.1.2.151.29,= 0 +.1.3.6.1.2.1.16.2.6.1.2.152.30,= 0 +.1.3.6.1.2.1.16.2.6.1.2.153.31,= 0 +.1.3.6.1.2.1.16.2.6.1.2.154.32,= 0 +.1.3.6.1.2.1.16.2.6.1.2.155.33,= 0 +.1.3.6.1.2.1.16.2.6.1.2.156.34,= 0 +.1.3.6.1.2.1.16.2.6.1.2.157.35,= 0 +.1.3.6.1.2.1.16.2.6.1.2.158.36,= 0 +.1.3.6.1.2.1.16.2.6.1.2.159.37,= 0 +.1.3.6.1.2.1.16.2.6.1.2.160.38,= 0 +.1.3.6.1.2.1.16.2.6.1.2.161.39,= 0 +.1.3.6.1.2.1.16.2.6.1.2.162.40,= 0 +.1.3.6.1.2.1.16.2.6.1.2.163.41,= 0 +.1.3.6.1.2.1.16.2.6.1.2.164.42,= 0 +.1.3.6.1.2.1.16.2.6.1.2.165.43,= 0 +.1.3.6.1.2.1.16.2.6.1.2.166.44,= 0 +.1.3.6.1.2.1.16.2.6.1.2.167.45,= 0 +.1.3.6.1.2.1.16.2.6.1.2.168.46,= 0 +.1.3.6.1.2.1.16.2.6.1.2.169.47,= 0 +.1.3.6.1.2.1.16.2.6.1.2.170.48,= 0 +.1.3.6.1.2.1.16.2.6.1.2.171.49,= 0 +.1.3.6.1.2.1.16.2.6.1.2.172.50,= 0 +.1.3.6.1.2.1.16.2.6.1.2.173.51,= 0 +.1.3.6.1.2.1.16.2.6.1.2.174.52,= 0 +.1.3.6.1.2.1.16.2.6.1.2.175.53,= 0 +.1.3.6.1.2.1.16.2.6.1.2.176.54,= 0 +.1.3.6.1.2.1.16.2.6.1.2.177.55,= 0 +.1.3.6.1.2.1.16.2.6.1.2.178.56,= 0 +.1.3.6.1.2.1.16.2.6.1.2.179.57,= 0 +.1.3.6.1.2.1.16.2.6.1.2.180.58,= 0 +.1.3.6.1.2.1.16.2.6.1.2.181.59,= 0 +.1.3.6.1.2.1.16.2.6.1.2.182.60,= 0 +.1.3.6.1.2.1.16.2.6.1.2.183.1,= 0 +.1.3.6.1.2.1.16.2.6.1.2.184.61,= 0 +.1.3.6.1.2.1.16.2.6.1.2.185.62,= 0 +.1.3.6.1.2.1.16.2.6.1.2.186.63,= 0 +.1.3.6.1.2.1.16.2.6.1.2.187.64,= 0 +.1.3.6.1.2.1.16.2.6.1.2.188.65,= 0 +.1.3.6.1.2.1.16.2.6.1.2.189.66,= 0 +.1.3.6.1.2.1.16.2.6.1.2.190.67,= 0 +.1.3.6.1.2.1.16.2.6.1.2.191.68,= 0 +.1.3.6.1.2.1.16.2.6.1.2.192.69,= 0 +.1.3.6.1.2.1.16.2.6.1.2.193.70,= 0 +.1.3.6.1.2.1.16.2.6.1.2.194.71,= 0 +.1.3.6.1.2.1.16.2.6.1.2.195.72,= 0 +.1.3.6.1.2.1.16.2.6.1.2.196.73,= 0 +.1.3.6.1.2.1.16.2.6.1.2.197.74,= 0 +.1.3.6.1.2.1.16.2.6.1.2.198.75,= 0 +.1.3.6.1.2.1.16.2.6.1.2.199.76,= 0 +.1.3.6.1.2.1.16.2.6.1.2.200.77,= 0 +.1.3.6.1.2.1.16.2.6.1.2.201.78,= 0 +.1.3.6.1.2.1.16.2.6.1.2.202.79,= 0 +.1.3.6.1.2.1.16.2.6.1.2.203.80,= 0 +.1.3.6.1.2.1.16.2.6.1.2.204.81,= 0 +.1.3.6.1.2.1.16.2.6.1.2.205.82,= 0 +.1.3.6.1.2.1.16.2.6.1.2.206.83,= 0 +.1.3.6.1.2.1.16.2.6.1.2.207.84,= 0 +.1.3.6.1.2.1.16.2.6.1.2.208.85,= 0 +.1.3.6.1.2.1.16.2.6.1.2.209.26,= 0 +.1.3.6.1.2.1.16.2.6.1.2.210.27,= 0 +.1.3.6.1.2.1.16.2.6.1.2.211.28,= 0 +.1.3.6.1.2.1.16.2.6.1.2.212.29,= 0 +.1.3.6.1.2.1.16.2.6.1.2.213.30,= 0 +.1.3.6.1.2.1.16.2.6.1.2.214.31,= 0 +.1.3.6.1.2.1.16.2.6.1.2.215.32,= 0 +.1.3.6.1.2.1.16.2.6.1.2.216.33,= 0 +.1.3.6.1.2.1.16.2.6.1.2.217.34,= 0 +.1.3.6.1.2.1.16.2.6.1.2.218.35,= 0 +.1.3.6.1.2.1.16.2.6.1.2.219.36,= 0 +.1.3.6.1.2.1.16.2.6.1.2.220.37,= 0 +.1.3.6.1.2.1.16.2.6.1.2.221.38,= 0 +.1.3.6.1.2.1.16.2.6.1.2.222.39,= 0 +.1.3.6.1.2.1.16.2.6.1.2.223.40,= 0 +.1.3.6.1.2.1.16.2.6.1.2.224.41,= 0 +.1.3.6.1.2.1.16.2.6.1.2.225.42,= 0 +.1.3.6.1.2.1.16.2.6.1.2.226.43,= 0 +.1.3.6.1.2.1.16.2.6.1.2.227.44,= 0 +.1.3.6.1.2.1.16.2.6.1.2.228.45,= 0 +.1.3.6.1.2.1.16.2.6.1.2.229.46,= 0 +.1.3.6.1.2.1.16.2.6.1.2.230.47,= 0 +.1.3.6.1.2.1.16.2.6.1.2.231.48,= 0 +.1.3.6.1.2.1.16.2.6.1.2.232.49,= 0 +.1.3.6.1.2.1.16.2.6.1.2.233.50,= 0 +.1.3.6.1.2.1.16.2.6.1.2.234.51,= 0 +.1.3.6.1.2.1.16.2.6.1.2.235.52,= 0 +.1.3.6.1.2.1.16.2.6.1.2.236.53,= 0 +.1.3.6.1.2.1.16.2.6.1.2.237.54,= 0 +.1.3.6.1.2.1.16.2.6.1.2.238.55,= 0 +.1.3.6.1.2.1.16.2.6.1.2.239.56,= 0 +.1.3.6.1.2.1.16.2.6.1.2.240.57,= 0 +.1.3.6.1.2.1.16.2.6.1.2.241.58,= 0 +.1.3.6.1.2.1.16.2.6.1.2.242.59,= 0 +.1.3.6.1.2.1.16.2.6.1.2.243.60,= 0 +.1.3.6.1.2.1.16.2.6.1.2.244.1,= 0 +.1.3.6.1.2.1.16.2.6.1.3.1.61,= 0 +.1.3.6.1.2.1.16.2.6.1.3.2.62,= 0 +.1.3.6.1.2.1.16.2.6.1.3.3.63,= 0 +.1.3.6.1.2.1.16.2.6.1.3.4.64,= 0 +.1.3.6.1.2.1.16.2.6.1.3.5.65,= 0 +.1.3.6.1.2.1.16.2.6.1.3.6.66,= 0 +.1.3.6.1.2.1.16.2.6.1.3.7.67,= 0 +.1.3.6.1.2.1.16.2.6.1.3.8.68,= 0 +.1.3.6.1.2.1.16.2.6.1.3.9.69,= 0 +.1.3.6.1.2.1.16.2.6.1.3.10.70,= 0 +.1.3.6.1.2.1.16.2.6.1.3.11.71,= 0 +.1.3.6.1.2.1.16.2.6.1.3.12.72,= 0 +.1.3.6.1.2.1.16.2.6.1.3.13.73,= 0 +.1.3.6.1.2.1.16.2.6.1.3.14.74,= 0 +.1.3.6.1.2.1.16.2.6.1.3.15.75,= 0 +.1.3.6.1.2.1.16.2.6.1.3.16.76,= 0 +.1.3.6.1.2.1.16.2.6.1.3.17.77,= 0 +.1.3.6.1.2.1.16.2.6.1.3.18.78,= 0 +.1.3.6.1.2.1.16.2.6.1.3.19.79,= 0 +.1.3.6.1.2.1.16.2.6.1.3.20.80,= 0 +.1.3.6.1.2.1.16.2.6.1.3.21.81,= 0 +.1.3.6.1.2.1.16.2.6.1.3.22.82,= 0 +.1.3.6.1.2.1.16.2.6.1.3.23.83,= 0 +.1.3.6.1.2.1.16.2.6.1.3.24.84,= 0 +.1.3.6.1.2.1.16.2.6.1.3.25.85,= 0 +.1.3.6.1.2.1.16.2.6.1.3.26.26,= 0 +.1.3.6.1.2.1.16.2.6.1.3.27.27,= 0 +.1.3.6.1.2.1.16.2.6.1.3.28.28,= 0 +.1.3.6.1.2.1.16.2.6.1.3.29.29,= 0 +.1.3.6.1.2.1.16.2.6.1.3.30.30,= 0 +.1.3.6.1.2.1.16.2.6.1.3.31.31,= 0 +.1.3.6.1.2.1.16.2.6.1.3.32.32,= 0 +.1.3.6.1.2.1.16.2.6.1.3.33.33,= 0 +.1.3.6.1.2.1.16.2.6.1.3.34.34,= 0 +.1.3.6.1.2.1.16.2.6.1.3.35.35,= 0 +.1.3.6.1.2.1.16.2.6.1.3.36.36,= 0 +.1.3.6.1.2.1.16.2.6.1.3.37.37,= 0 +.1.3.6.1.2.1.16.2.6.1.3.38.38,= 0 +.1.3.6.1.2.1.16.2.6.1.3.39.39,= 0 +.1.3.6.1.2.1.16.2.6.1.3.40.40,= 0 +.1.3.6.1.2.1.16.2.6.1.3.41.41,= 0 +.1.3.6.1.2.1.16.2.6.1.3.42.42,= 0 +.1.3.6.1.2.1.16.2.6.1.3.43.43,= 0 +.1.3.6.1.2.1.16.2.6.1.3.44.44,= 0 +.1.3.6.1.2.1.16.2.6.1.3.45.45,= 0 +.1.3.6.1.2.1.16.2.6.1.3.46.46,= 0 +.1.3.6.1.2.1.16.2.6.1.3.47.47,= 0 +.1.3.6.1.2.1.16.2.6.1.3.48.48,= 0 +.1.3.6.1.2.1.16.2.6.1.3.49.49,= 0 +.1.3.6.1.2.1.16.2.6.1.3.50.50,= 0 +.1.3.6.1.2.1.16.2.6.1.3.51.51,= 0 +.1.3.6.1.2.1.16.2.6.1.3.52.52,= 0 +.1.3.6.1.2.1.16.2.6.1.3.53.53,= 0 +.1.3.6.1.2.1.16.2.6.1.3.54.54,= 0 +.1.3.6.1.2.1.16.2.6.1.3.55.55,= 0 +.1.3.6.1.2.1.16.2.6.1.3.56.56,= 0 +.1.3.6.1.2.1.16.2.6.1.3.57.57,= 0 +.1.3.6.1.2.1.16.2.6.1.3.58.58,= 0 +.1.3.6.1.2.1.16.2.6.1.3.59.59,= 0 +.1.3.6.1.2.1.16.2.6.1.3.60.60,= 0 +.1.3.6.1.2.1.16.2.6.1.3.61.1,= 0 +.1.3.6.1.2.1.16.2.6.1.3.62.61,= 0 +.1.3.6.1.2.1.16.2.6.1.3.63.62,= 0 +.1.3.6.1.2.1.16.2.6.1.3.64.63,= 0 +.1.3.6.1.2.1.16.2.6.1.3.65.64,= 0 +.1.3.6.1.2.1.16.2.6.1.3.66.65,= 0 +.1.3.6.1.2.1.16.2.6.1.3.67.66,= 0 +.1.3.6.1.2.1.16.2.6.1.3.68.67,= 0 +.1.3.6.1.2.1.16.2.6.1.3.69.68,= 0 +.1.3.6.1.2.1.16.2.6.1.3.70.69,= 0 +.1.3.6.1.2.1.16.2.6.1.3.71.70,= 0 +.1.3.6.1.2.1.16.2.6.1.3.72.71,= 0 +.1.3.6.1.2.1.16.2.6.1.3.73.72,= 0 +.1.3.6.1.2.1.16.2.6.1.3.74.73,= 0 +.1.3.6.1.2.1.16.2.6.1.3.75.74,= 0 +.1.3.6.1.2.1.16.2.6.1.3.76.75,= 0 +.1.3.6.1.2.1.16.2.6.1.3.77.76,= 0 +.1.3.6.1.2.1.16.2.6.1.3.78.77,= 0 +.1.3.6.1.2.1.16.2.6.1.3.79.78,= 0 +.1.3.6.1.2.1.16.2.6.1.3.80.79,= 0 +.1.3.6.1.2.1.16.2.6.1.3.81.80,= 0 +.1.3.6.1.2.1.16.2.6.1.3.82.81,= 0 +.1.3.6.1.2.1.16.2.6.1.3.83.82,= 0 +.1.3.6.1.2.1.16.2.6.1.3.84.83,= 0 +.1.3.6.1.2.1.16.2.6.1.3.85.84,= 0 +.1.3.6.1.2.1.16.2.6.1.3.86.85,= 0 +.1.3.6.1.2.1.16.2.6.1.3.87.26,= 0 +.1.3.6.1.2.1.16.2.6.1.3.88.27,= 0 +.1.3.6.1.2.1.16.2.6.1.3.89.28,= 0 +.1.3.6.1.2.1.16.2.6.1.3.90.29,= 0 +.1.3.6.1.2.1.16.2.6.1.3.91.30,= 0 +.1.3.6.1.2.1.16.2.6.1.3.92.31,= 0 +.1.3.6.1.2.1.16.2.6.1.3.93.32,= 0 +.1.3.6.1.2.1.16.2.6.1.3.94.33,= 0 +.1.3.6.1.2.1.16.2.6.1.3.95.34,= 0 +.1.3.6.1.2.1.16.2.6.1.3.96.35,= 0 +.1.3.6.1.2.1.16.2.6.1.3.97.36,= 0 +.1.3.6.1.2.1.16.2.6.1.3.98.37,= 0 +.1.3.6.1.2.1.16.2.6.1.3.99.38,= 0 +.1.3.6.1.2.1.16.2.6.1.3.100.39,= 0 +.1.3.6.1.2.1.16.2.6.1.3.101.40,= 0 +.1.3.6.1.2.1.16.2.6.1.3.102.41,= 0 +.1.3.6.1.2.1.16.2.6.1.3.103.42,= 0 +.1.3.6.1.2.1.16.2.6.1.3.104.43,= 0 +.1.3.6.1.2.1.16.2.6.1.3.105.44,= 0 +.1.3.6.1.2.1.16.2.6.1.3.106.45,= 0 +.1.3.6.1.2.1.16.2.6.1.3.107.46,= 0 +.1.3.6.1.2.1.16.2.6.1.3.108.47,= 0 +.1.3.6.1.2.1.16.2.6.1.3.109.48,= 0 +.1.3.6.1.2.1.16.2.6.1.3.110.49,= 0 +.1.3.6.1.2.1.16.2.6.1.3.111.50,= 0 +.1.3.6.1.2.1.16.2.6.1.3.112.51,= 0 +.1.3.6.1.2.1.16.2.6.1.3.113.52,= 0 +.1.3.6.1.2.1.16.2.6.1.3.114.53,= 0 +.1.3.6.1.2.1.16.2.6.1.3.115.54,= 0 +.1.3.6.1.2.1.16.2.6.1.3.116.55,= 0 +.1.3.6.1.2.1.16.2.6.1.3.117.56,= 0 +.1.3.6.1.2.1.16.2.6.1.3.118.57,= 0 +.1.3.6.1.2.1.16.2.6.1.3.119.58,= 0 +.1.3.6.1.2.1.16.2.6.1.3.120.59,= 0 +.1.3.6.1.2.1.16.2.6.1.3.121.60,= 0 +.1.3.6.1.2.1.16.2.6.1.3.122.1,= 0 +.1.3.6.1.2.1.16.2.6.1.3.123.61,= 0 +.1.3.6.1.2.1.16.2.6.1.3.124.62,= 0 +.1.3.6.1.2.1.16.2.6.1.3.125.63,= 0 +.1.3.6.1.2.1.16.2.6.1.3.126.64,= 0 +.1.3.6.1.2.1.16.2.6.1.3.127.65,= 0 +.1.3.6.1.2.1.16.2.6.1.3.128.66,= 0 +.1.3.6.1.2.1.16.2.6.1.3.129.67,= 0 +.1.3.6.1.2.1.16.2.6.1.3.130.68,= 0 +.1.3.6.1.2.1.16.2.6.1.3.131.69,= 0 +.1.3.6.1.2.1.16.2.6.1.3.132.70,= 0 +.1.3.6.1.2.1.16.2.6.1.3.133.71,= 0 +.1.3.6.1.2.1.16.2.6.1.3.134.72,= 0 +.1.3.6.1.2.1.16.2.6.1.3.135.73,= 0 +.1.3.6.1.2.1.16.2.6.1.3.136.74,= 0 +.1.3.6.1.2.1.16.2.6.1.3.137.75,= 0 +.1.3.6.1.2.1.16.2.6.1.3.138.76,= 0 +.1.3.6.1.2.1.16.2.6.1.3.139.77,= 0 +.1.3.6.1.2.1.16.2.6.1.3.140.78,= 0 +.1.3.6.1.2.1.16.2.6.1.3.141.79,= 0 +.1.3.6.1.2.1.16.2.6.1.3.142.80,= 0 +.1.3.6.1.2.1.16.2.6.1.3.143.81,= 0 +.1.3.6.1.2.1.16.2.6.1.3.144.82,= 0 +.1.3.6.1.2.1.16.2.6.1.3.145.83,= 0 +.1.3.6.1.2.1.16.2.6.1.3.146.84,= 0 +.1.3.6.1.2.1.16.2.6.1.3.147.85,= 0 +.1.3.6.1.2.1.16.2.6.1.3.148.26,= 0 +.1.3.6.1.2.1.16.2.6.1.3.149.27,= 0 +.1.3.6.1.2.1.16.2.6.1.3.150.28,= 0 +.1.3.6.1.2.1.16.2.6.1.3.151.29,= 0 +.1.3.6.1.2.1.16.2.6.1.3.152.30,= 0 +.1.3.6.1.2.1.16.2.6.1.3.153.31,= 0 +.1.3.6.1.2.1.16.2.6.1.3.154.32,= 0 +.1.3.6.1.2.1.16.2.6.1.3.155.33,= 0 +.1.3.6.1.2.1.16.2.6.1.3.156.34,= 0 +.1.3.6.1.2.1.16.2.6.1.3.157.35,= 0 +.1.3.6.1.2.1.16.2.6.1.3.158.36,= 0 +.1.3.6.1.2.1.16.2.6.1.3.159.37,= 0 +.1.3.6.1.2.1.16.2.6.1.3.160.38,= 0 +.1.3.6.1.2.1.16.2.6.1.3.161.39,= 0 +.1.3.6.1.2.1.16.2.6.1.3.162.40,= 0 +.1.3.6.1.2.1.16.2.6.1.3.163.41,= 0 +.1.3.6.1.2.1.16.2.6.1.3.164.42,= 0 +.1.3.6.1.2.1.16.2.6.1.3.165.43,= 0 +.1.3.6.1.2.1.16.2.6.1.3.166.44,= 0 +.1.3.6.1.2.1.16.2.6.1.3.167.45,= 0 +.1.3.6.1.2.1.16.2.6.1.3.168.46,= 0 +.1.3.6.1.2.1.16.2.6.1.3.169.47,= 0 +.1.3.6.1.2.1.16.2.6.1.3.170.48,= 0 +.1.3.6.1.2.1.16.2.6.1.3.171.49,= 0 +.1.3.6.1.2.1.16.2.6.1.3.172.50,= 0 +.1.3.6.1.2.1.16.2.6.1.3.173.51,= 0 +.1.3.6.1.2.1.16.2.6.1.3.174.52,= 0 +.1.3.6.1.2.1.16.2.6.1.3.175.53,= 0 +.1.3.6.1.2.1.16.2.6.1.3.176.54,= 0 +.1.3.6.1.2.1.16.2.6.1.3.177.55,= 0 +.1.3.6.1.2.1.16.2.6.1.3.178.56,= 0 +.1.3.6.1.2.1.16.2.6.1.3.179.57,= 0 +.1.3.6.1.2.1.16.2.6.1.3.180.58,= 0 +.1.3.6.1.2.1.16.2.6.1.3.181.59,= 0 +.1.3.6.1.2.1.16.2.6.1.3.182.60,= 0 +.1.3.6.1.2.1.16.2.6.1.3.183.1,= 0 +.1.3.6.1.2.1.16.2.6.1.3.184.61,= 0 +.1.3.6.1.2.1.16.2.6.1.3.185.62,= 0 +.1.3.6.1.2.1.16.2.6.1.3.186.63,= 0 +.1.3.6.1.2.1.16.2.6.1.3.187.64,= 0 +.1.3.6.1.2.1.16.2.6.1.3.188.65,= 0 +.1.3.6.1.2.1.16.2.6.1.3.189.66,= 0 +.1.3.6.1.2.1.16.2.6.1.3.190.67,= 0 +.1.3.6.1.2.1.16.2.6.1.3.191.68,= 0 +.1.3.6.1.2.1.16.2.6.1.3.192.69,= 0 +.1.3.6.1.2.1.16.2.6.1.3.193.70,= 0 +.1.3.6.1.2.1.16.2.6.1.3.194.71,= 0 +.1.3.6.1.2.1.16.2.6.1.3.195.72,= 0 +.1.3.6.1.2.1.16.2.6.1.3.196.73,= 0 +.1.3.6.1.2.1.16.2.6.1.3.197.74,= 0 +.1.3.6.1.2.1.16.2.6.1.3.198.75,= 0 +.1.3.6.1.2.1.16.2.6.1.3.199.76,= 0 +.1.3.6.1.2.1.16.2.6.1.3.200.77,= 0 +.1.3.6.1.2.1.16.2.6.1.3.201.78,= 0 +.1.3.6.1.2.1.16.2.6.1.3.202.79,= 0 +.1.3.6.1.2.1.16.2.6.1.3.203.80,= 0 +.1.3.6.1.2.1.16.2.6.1.3.204.81,= 0 +.1.3.6.1.2.1.16.2.6.1.3.205.82,= 0 +.1.3.6.1.2.1.16.2.6.1.3.206.83,= 0 +.1.3.6.1.2.1.16.2.6.1.3.207.84,= 0 +.1.3.6.1.2.1.16.2.6.1.3.208.85,= 0 +.1.3.6.1.2.1.16.2.6.1.3.209.26,= 0 +.1.3.6.1.2.1.16.2.6.1.3.210.27,= 0 +.1.3.6.1.2.1.16.2.6.1.3.211.28,= 0 +.1.3.6.1.2.1.16.2.6.1.3.212.29,= 0 +.1.3.6.1.2.1.16.2.6.1.3.213.30,= 0 +.1.3.6.1.2.1.16.2.6.1.3.214.31,= 0 +.1.3.6.1.2.1.16.2.6.1.3.215.32,= 0 +.1.3.6.1.2.1.16.2.6.1.3.216.33,= 0 +.1.3.6.1.2.1.16.2.6.1.3.217.34,= 0 +.1.3.6.1.2.1.16.2.6.1.3.218.35,= 0 +.1.3.6.1.2.1.16.2.6.1.3.219.36,= 0 +.1.3.6.1.2.1.16.2.6.1.3.220.37,= 0 +.1.3.6.1.2.1.16.2.6.1.3.221.38,= 0 +.1.3.6.1.2.1.16.2.6.1.3.222.39,= 0 +.1.3.6.1.2.1.16.2.6.1.3.223.40,= 0 +.1.3.6.1.2.1.16.2.6.1.3.224.41,= 0 +.1.3.6.1.2.1.16.2.6.1.3.225.42,= 0 +.1.3.6.1.2.1.16.2.6.1.3.226.43,= 0 +.1.3.6.1.2.1.16.2.6.1.3.227.44,= 0 +.1.3.6.1.2.1.16.2.6.1.3.228.45,= 0 +.1.3.6.1.2.1.16.2.6.1.3.229.46,= 0 +.1.3.6.1.2.1.16.2.6.1.3.230.47,= 0 +.1.3.6.1.2.1.16.2.6.1.3.231.48,= 0 +.1.3.6.1.2.1.16.2.6.1.3.232.49,= 0 +.1.3.6.1.2.1.16.2.6.1.3.233.50,= 0 +.1.3.6.1.2.1.16.2.6.1.3.234.51,= 0 +.1.3.6.1.2.1.16.2.6.1.3.235.52,= 0 +.1.3.6.1.2.1.16.2.6.1.3.236.53,= 0 +.1.3.6.1.2.1.16.2.6.1.3.237.54,= 0 +.1.3.6.1.2.1.16.2.6.1.3.238.55,= 0 +.1.3.6.1.2.1.16.2.6.1.3.239.56,= 0 +.1.3.6.1.2.1.16.2.6.1.3.240.57,= 0 +.1.3.6.1.2.1.16.2.6.1.3.241.58,= 0 +.1.3.6.1.2.1.16.2.6.1.3.242.59,= 0 +.1.3.6.1.2.1.16.2.6.1.3.243.60,= 0 +.1.3.6.1.2.1.16.2.6.1.3.244.1,= 0 +.1.3.6.1.2.1.16.2.6.1.4.1.61,= 160 +.1.3.6.1.2.1.16.2.6.1.4.2.62,= 160 +.1.3.6.1.2.1.16.2.6.1.4.3.63,= 160 +.1.3.6.1.2.1.16.2.6.1.4.4.64,= 160 +.1.3.6.1.2.1.16.2.6.1.4.5.65,= 160 +.1.3.6.1.2.1.16.2.6.1.4.6.66,= 160 +.1.3.6.1.2.1.16.2.6.1.4.7.67,= 160 +.1.3.6.1.2.1.16.2.6.1.4.8.68,= 160 +.1.3.6.1.2.1.16.2.6.1.4.9.69,= 160 +.1.3.6.1.2.1.16.2.6.1.4.10.70,= 160 +.1.3.6.1.2.1.16.2.6.1.4.11.71,= 160 +.1.3.6.1.2.1.16.2.6.1.4.12.72,= 160 +.1.3.6.1.2.1.16.2.6.1.4.13.73,= 160 +.1.3.6.1.2.1.16.2.6.1.4.14.74,= 160 +.1.3.6.1.2.1.16.2.6.1.4.15.75,= 160 +.1.3.6.1.2.1.16.2.6.1.4.16.76,= 160 +.1.3.6.1.2.1.16.2.6.1.4.17.77,= 160 +.1.3.6.1.2.1.16.2.6.1.4.18.78,= 160 +.1.3.6.1.2.1.16.2.6.1.4.19.79,= 160 +.1.3.6.1.2.1.16.2.6.1.4.20.80,= 160 +.1.3.6.1.2.1.16.2.6.1.4.21.81,= 160 +.1.3.6.1.2.1.16.2.6.1.4.22.82,= 160 +.1.3.6.1.2.1.16.2.6.1.4.23.83,= 160 +.1.3.6.1.2.1.16.2.6.1.4.24.84,= 160 +.1.3.6.1.2.1.16.2.6.1.4.25.85,= 160 +.1.3.6.1.2.1.16.2.6.1.4.26.26,= 160 +.1.3.6.1.2.1.16.2.6.1.4.27.27,= 160 +.1.3.6.1.2.1.16.2.6.1.4.28.28,= 160 +.1.3.6.1.2.1.16.2.6.1.4.29.29,= 160 +.1.3.6.1.2.1.16.2.6.1.4.30.30,= 160 +.1.3.6.1.2.1.16.2.6.1.4.31.31,= 160 +.1.3.6.1.2.1.16.2.6.1.4.32.32,= 160 +.1.3.6.1.2.1.16.2.6.1.4.33.33,= 160 +.1.3.6.1.2.1.16.2.6.1.4.34.34,= 160 +.1.3.6.1.2.1.16.2.6.1.4.35.35,= 160 +.1.3.6.1.2.1.16.2.6.1.4.36.36,= 160 +.1.3.6.1.2.1.16.2.6.1.4.37.37,= 160 +.1.3.6.1.2.1.16.2.6.1.4.38.38,= 160 +.1.3.6.1.2.1.16.2.6.1.4.39.39,= 160 +.1.3.6.1.2.1.16.2.6.1.4.40.40,= 160 +.1.3.6.1.2.1.16.2.6.1.4.41.41,= 160 +.1.3.6.1.2.1.16.2.6.1.4.42.42,= 160 +.1.3.6.1.2.1.16.2.6.1.4.43.43,= 160 +.1.3.6.1.2.1.16.2.6.1.4.44.44,= 160 +.1.3.6.1.2.1.16.2.6.1.4.45.45,= 160 +.1.3.6.1.2.1.16.2.6.1.4.46.46,= 160 +.1.3.6.1.2.1.16.2.6.1.4.47.47,= 160 +.1.3.6.1.2.1.16.2.6.1.4.48.48,= 160 +.1.3.6.1.2.1.16.2.6.1.4.49.49,= 160 +.1.3.6.1.2.1.16.2.6.1.4.50.50,= 160 +.1.3.6.1.2.1.16.2.6.1.4.51.51,= 160 +.1.3.6.1.2.1.16.2.6.1.4.52.52,= 160 +.1.3.6.1.2.1.16.2.6.1.4.53.53,= 160 +.1.3.6.1.2.1.16.2.6.1.4.54.54,= 160 +.1.3.6.1.2.1.16.2.6.1.4.55.55,= 160 +.1.3.6.1.2.1.16.2.6.1.4.56.56,= 160 +.1.3.6.1.2.1.16.2.6.1.4.57.57,= 160 +.1.3.6.1.2.1.16.2.6.1.4.58.58,= 160 +.1.3.6.1.2.1.16.2.6.1.4.59.59,= 160 +.1.3.6.1.2.1.16.2.6.1.4.60.60,= 160 +.1.3.6.1.2.1.16.2.6.1.4.61.1,= 9600 +.1.3.6.1.2.1.16.2.6.1.4.62.61,= 0 +.1.3.6.1.2.1.16.2.6.1.4.63.62,= 0 +.1.3.6.1.2.1.16.2.6.1.4.64.63,= 0 +.1.3.6.1.2.1.16.2.6.1.4.65.64,= 0 +.1.3.6.1.2.1.16.2.6.1.4.66.65,= 0 +.1.3.6.1.2.1.16.2.6.1.4.67.66,= 0 +.1.3.6.1.2.1.16.2.6.1.4.68.67,= 0 +.1.3.6.1.2.1.16.2.6.1.4.69.68,= 0 +.1.3.6.1.2.1.16.2.6.1.4.70.69,= 0 +.1.3.6.1.2.1.16.2.6.1.4.71.70,= 0 +.1.3.6.1.2.1.16.2.6.1.4.72.71,= 0 +.1.3.6.1.2.1.16.2.6.1.4.73.72,= 0 +.1.3.6.1.2.1.16.2.6.1.4.74.73,= 0 +.1.3.6.1.2.1.16.2.6.1.4.75.74,= 0 +.1.3.6.1.2.1.16.2.6.1.4.76.75,= 0 +.1.3.6.1.2.1.16.2.6.1.4.77.76,= 0 +.1.3.6.1.2.1.16.2.6.1.4.78.77,= 0 +.1.3.6.1.2.1.16.2.6.1.4.79.78,= 0 +.1.3.6.1.2.1.16.2.6.1.4.80.79,= 0 +.1.3.6.1.2.1.16.2.6.1.4.81.80,= 0 +.1.3.6.1.2.1.16.2.6.1.4.82.81,= 0 +.1.3.6.1.2.1.16.2.6.1.4.83.82,= 0 +.1.3.6.1.2.1.16.2.6.1.4.84.83,= 0 +.1.3.6.1.2.1.16.2.6.1.4.85.84,= 0 +.1.3.6.1.2.1.16.2.6.1.4.86.85,= 0 +.1.3.6.1.2.1.16.2.6.1.4.87.26,= 0 +.1.3.6.1.2.1.16.2.6.1.4.88.27,= 0 +.1.3.6.1.2.1.16.2.6.1.4.89.28,= 0 +.1.3.6.1.2.1.16.2.6.1.4.90.29,= 0 +.1.3.6.1.2.1.16.2.6.1.4.91.30,= 0 +.1.3.6.1.2.1.16.2.6.1.4.92.31,= 0 +.1.3.6.1.2.1.16.2.6.1.4.93.32,= 0 +.1.3.6.1.2.1.16.2.6.1.4.94.33,= 0 +.1.3.6.1.2.1.16.2.6.1.4.95.34,= 0 +.1.3.6.1.2.1.16.2.6.1.4.96.35,= 0 +.1.3.6.1.2.1.16.2.6.1.4.97.36,= 0 +.1.3.6.1.2.1.16.2.6.1.4.98.37,= 0 +.1.3.6.1.2.1.16.2.6.1.4.99.38,= 0 +.1.3.6.1.2.1.16.2.6.1.4.100.39,= 0 +.1.3.6.1.2.1.16.2.6.1.4.101.40,= 0 +.1.3.6.1.2.1.16.2.6.1.4.102.41,= 0 +.1.3.6.1.2.1.16.2.6.1.4.103.42,= 0 +.1.3.6.1.2.1.16.2.6.1.4.104.43,= 0 +.1.3.6.1.2.1.16.2.6.1.4.105.44,= 0 +.1.3.6.1.2.1.16.2.6.1.4.106.45,= 0 +.1.3.6.1.2.1.16.2.6.1.4.107.46,= 0 +.1.3.6.1.2.1.16.2.6.1.4.108.47,= 0 +.1.3.6.1.2.1.16.2.6.1.4.109.48,= 0 +.1.3.6.1.2.1.16.2.6.1.4.110.49,= 0 +.1.3.6.1.2.1.16.2.6.1.4.111.50,= 0 +.1.3.6.1.2.1.16.2.6.1.4.112.51,= 0 +.1.3.6.1.2.1.16.2.6.1.4.113.52,= 0 +.1.3.6.1.2.1.16.2.6.1.4.114.53,= 0 +.1.3.6.1.2.1.16.2.6.1.4.115.54,= 0 +.1.3.6.1.2.1.16.2.6.1.4.116.55,= 0 +.1.3.6.1.2.1.16.2.6.1.4.117.56,= 0 +.1.3.6.1.2.1.16.2.6.1.4.118.57,= 0 +.1.3.6.1.2.1.16.2.6.1.4.119.58,= 0 +.1.3.6.1.2.1.16.2.6.1.4.120.59,= 0 +.1.3.6.1.2.1.16.2.6.1.4.121.60,= 0 +.1.3.6.1.2.1.16.2.6.1.4.122.1,= 0 +.1.3.6.1.2.1.16.2.6.1.4.123.61,= 0 +.1.3.6.1.2.1.16.2.6.1.4.124.62,= 0 +.1.3.6.1.2.1.16.2.6.1.4.125.63,= 0 +.1.3.6.1.2.1.16.2.6.1.4.126.64,= 0 +.1.3.6.1.2.1.16.2.6.1.4.127.65,= 0 +.1.3.6.1.2.1.16.2.6.1.4.128.66,= 0 +.1.3.6.1.2.1.16.2.6.1.4.129.67,= 0 +.1.3.6.1.2.1.16.2.6.1.4.130.68,= 0 +.1.3.6.1.2.1.16.2.6.1.4.131.69,= 0 +.1.3.6.1.2.1.16.2.6.1.4.132.70,= 0 +.1.3.6.1.2.1.16.2.6.1.4.133.71,= 0 +.1.3.6.1.2.1.16.2.6.1.4.134.72,= 0 +.1.3.6.1.2.1.16.2.6.1.4.135.73,= 0 +.1.3.6.1.2.1.16.2.6.1.4.136.74,= 0 +.1.3.6.1.2.1.16.2.6.1.4.137.75,= 0 +.1.3.6.1.2.1.16.2.6.1.4.138.76,= 0 +.1.3.6.1.2.1.16.2.6.1.4.139.77,= 0 +.1.3.6.1.2.1.16.2.6.1.4.140.78,= 0 +.1.3.6.1.2.1.16.2.6.1.4.141.79,= 0 +.1.3.6.1.2.1.16.2.6.1.4.142.80,= 0 +.1.3.6.1.2.1.16.2.6.1.4.143.81,= 0 +.1.3.6.1.2.1.16.2.6.1.4.144.82,= 0 +.1.3.6.1.2.1.16.2.6.1.4.145.83,= 0 +.1.3.6.1.2.1.16.2.6.1.4.146.84,= 0 +.1.3.6.1.2.1.16.2.6.1.4.147.85,= 0 +.1.3.6.1.2.1.16.2.6.1.4.148.26,= 0 +.1.3.6.1.2.1.16.2.6.1.4.149.27,= 0 +.1.3.6.1.2.1.16.2.6.1.4.150.28,= 0 +.1.3.6.1.2.1.16.2.6.1.4.151.29,= 0 +.1.3.6.1.2.1.16.2.6.1.4.152.30,= 0 +.1.3.6.1.2.1.16.2.6.1.4.153.31,= 0 +.1.3.6.1.2.1.16.2.6.1.4.154.32,= 0 +.1.3.6.1.2.1.16.2.6.1.4.155.33,= 0 +.1.3.6.1.2.1.16.2.6.1.4.156.34,= 0 +.1.3.6.1.2.1.16.2.6.1.4.157.35,= 0 +.1.3.6.1.2.1.16.2.6.1.4.158.36,= 0 +.1.3.6.1.2.1.16.2.6.1.4.159.37,= 0 +.1.3.6.1.2.1.16.2.6.1.4.160.38,= 0 +.1.3.6.1.2.1.16.2.6.1.4.161.39,= 0 +.1.3.6.1.2.1.16.2.6.1.4.162.40,= 0 +.1.3.6.1.2.1.16.2.6.1.4.163.41,= 0 +.1.3.6.1.2.1.16.2.6.1.4.164.42,= 0 +.1.3.6.1.2.1.16.2.6.1.4.165.43,= 0 +.1.3.6.1.2.1.16.2.6.1.4.166.44,= 0 +.1.3.6.1.2.1.16.2.6.1.4.167.45,= 0 +.1.3.6.1.2.1.16.2.6.1.4.168.46,= 0 +.1.3.6.1.2.1.16.2.6.1.4.169.47,= 0 +.1.3.6.1.2.1.16.2.6.1.4.170.48,= 0 +.1.3.6.1.2.1.16.2.6.1.4.171.49,= 0 +.1.3.6.1.2.1.16.2.6.1.4.172.50,= 0 +.1.3.6.1.2.1.16.2.6.1.4.173.51,= 0 +.1.3.6.1.2.1.16.2.6.1.4.174.52,= 0 +.1.3.6.1.2.1.16.2.6.1.4.175.53,= 0 +.1.3.6.1.2.1.16.2.6.1.4.176.54,= 0 +.1.3.6.1.2.1.16.2.6.1.4.177.55,= 0 +.1.3.6.1.2.1.16.2.6.1.4.178.56,= 0 +.1.3.6.1.2.1.16.2.6.1.4.179.57,= 0 +.1.3.6.1.2.1.16.2.6.1.4.180.58,= 0 +.1.3.6.1.2.1.16.2.6.1.4.181.59,= 0 +.1.3.6.1.2.1.16.2.6.1.4.182.60,= 0 +.1.3.6.1.2.1.16.2.6.1.4.183.1,= 0 +.1.3.6.1.2.1.16.2.6.1.4.184.61,= 0 +.1.3.6.1.2.1.16.2.6.1.4.185.62,= 0 +.1.3.6.1.2.1.16.2.6.1.4.186.63,= 0 +.1.3.6.1.2.1.16.2.6.1.4.187.64,= 0 +.1.3.6.1.2.1.16.2.6.1.4.188.65,= 0 +.1.3.6.1.2.1.16.2.6.1.4.189.66,= 0 +.1.3.6.1.2.1.16.2.6.1.4.190.67,= 0 +.1.3.6.1.2.1.16.2.6.1.4.191.68,= 0 +.1.3.6.1.2.1.16.2.6.1.4.192.69,= 0 +.1.3.6.1.2.1.16.2.6.1.4.193.70,= 0 +.1.3.6.1.2.1.16.2.6.1.4.194.71,= 0 +.1.3.6.1.2.1.16.2.6.1.4.195.72,= 0 +.1.3.6.1.2.1.16.2.6.1.4.196.73,= 0 +.1.3.6.1.2.1.16.2.6.1.4.197.74,= 0 +.1.3.6.1.2.1.16.2.6.1.4.198.75,= 0 +.1.3.6.1.2.1.16.2.6.1.4.199.76,= 0 +.1.3.6.1.2.1.16.2.6.1.4.200.77,= 0 +.1.3.6.1.2.1.16.2.6.1.4.201.78,= 0 +.1.3.6.1.2.1.16.2.6.1.4.202.79,= 0 +.1.3.6.1.2.1.16.2.6.1.4.203.80,= 0 +.1.3.6.1.2.1.16.2.6.1.4.204.81,= 0 +.1.3.6.1.2.1.16.2.6.1.4.205.82,= 0 +.1.3.6.1.2.1.16.2.6.1.4.206.83,= 0 +.1.3.6.1.2.1.16.2.6.1.4.207.84,= 0 +.1.3.6.1.2.1.16.2.6.1.4.208.85,= 0 +.1.3.6.1.2.1.16.2.6.1.4.209.26,= 0 +.1.3.6.1.2.1.16.2.6.1.4.210.27,= 0 +.1.3.6.1.2.1.16.2.6.1.4.211.28,= 0 +.1.3.6.1.2.1.16.2.6.1.4.212.29,= 0 +.1.3.6.1.2.1.16.2.6.1.4.213.30,= 0 +.1.3.6.1.2.1.16.2.6.1.4.214.31,= 0 +.1.3.6.1.2.1.16.2.6.1.4.215.32,= 0 +.1.3.6.1.2.1.16.2.6.1.4.216.33,= 0 +.1.3.6.1.2.1.16.2.6.1.4.217.34,= 0 +.1.3.6.1.2.1.16.2.6.1.4.218.35,= 0 +.1.3.6.1.2.1.16.2.6.1.4.219.36,= 0 +.1.3.6.1.2.1.16.2.6.1.4.220.37,= 0 +.1.3.6.1.2.1.16.2.6.1.4.221.38,= 0 +.1.3.6.1.2.1.16.2.6.1.4.222.39,= 0 +.1.3.6.1.2.1.16.2.6.1.4.223.40,= 0 +.1.3.6.1.2.1.16.2.6.1.4.224.41,= 0 +.1.3.6.1.2.1.16.2.6.1.4.225.42,= 0 +.1.3.6.1.2.1.16.2.6.1.4.226.43,= 0 +.1.3.6.1.2.1.16.2.6.1.4.227.44,= 0 +.1.3.6.1.2.1.16.2.6.1.4.228.45,= 0 +.1.3.6.1.2.1.16.2.6.1.4.229.46,= 0 +.1.3.6.1.2.1.16.2.6.1.4.230.47,= 0 +.1.3.6.1.2.1.16.2.6.1.4.231.48,= 0 +.1.3.6.1.2.1.16.2.6.1.4.232.49,= 0 +.1.3.6.1.2.1.16.2.6.1.4.233.50,= 0 +.1.3.6.1.2.1.16.2.6.1.4.234.51,= 0 +.1.3.6.1.2.1.16.2.6.1.4.235.52,= 0 +.1.3.6.1.2.1.16.2.6.1.4.236.53,= 0 +.1.3.6.1.2.1.16.2.6.1.4.237.54,= 0 +.1.3.6.1.2.1.16.2.6.1.4.238.55,= 0 +.1.3.6.1.2.1.16.2.6.1.4.239.56,= 0 +.1.3.6.1.2.1.16.2.6.1.4.240.57,= 0 +.1.3.6.1.2.1.16.2.6.1.4.241.58,= 0 +.1.3.6.1.2.1.16.2.6.1.4.242.59,= 0 +.1.3.6.1.2.1.16.2.6.1.4.243.60,= 0 +.1.3.6.1.2.1.16.2.6.1.4.244.1,= 0 +.1.3.6.1.2.1.26.2.2.1.2.1.1.1,= 14 +.1.3.6.1.2.1.26.2.2.1.2.2.1.1,= 14 +.1.3.6.1.2.1.26.2.2.1.2.3.1.1,= 14 +.1.3.6.1.2.1.26.2.2.1.2.4.1.1,= 14 +.1.3.6.1.2.1.26.2.2.1.2.5.1.1,= 2 +.1.3.6.1.2.1.26.2.2.1.2.6.1.1,= 2 +.1.3.6.1.2.1.26.2.2.1.2.7.1.1,= 2 +.1.3.6.1.2.1.26.5.1.1.1.1.1,= 1 +.1.3.6.1.2.1.26.5.1.1.1.2.1,= 1 +.1.3.6.1.2.1.26.5.1.1.1.3.1,= 1 +.1.3.6.1.2.1.26.5.1.1.1.4.1,= 1 +.1.3.6.1.2.1.26.5.1.1.1.5.1,= 1 +.1.3.6.1.2.1.26.5.1.1.1.6.1,= 2 +.1.3.6.1.2.1.26.5.1.1.1.7.1,= 2 +.1.3.6.1.2.1.26.5.1.1.2.1.1,= 2 +.1.3.6.1.2.1.26.5.1.1.2.2.1,= 2 +.1.3.6.1.2.1.26.5.1.1.2.3.1,= 2 +.1.3.6.1.2.1.26.5.1.1.2.4.1,= 2 +.1.3.6.1.2.1.26.5.1.1.2.5.1,= 1 +.1.3.6.1.2.1.26.5.1.1.2.6.1,= 2 +.1.3.6.1.2.1.26.5.1.1.2.7.1,= 2 +.1.3.6.1.2.1.26.5.1.1.4.1.1,= 2 +.1.3.6.1.2.1.26.5.1.1.4.2.1,= 2 +.1.3.6.1.2.1.26.5.1.1.4.3.1,= 2 +.1.3.6.1.2.1.26.5.1.1.4.4.1,= 2 +.1.3.6.1.2.1.26.5.1.1.4.5.1,= 3 +.1.3.6.1.2.1.26.5.1.1.4.6.1,= 2 +.1.3.6.1.2.1.26.5.1.1.4.7.1,= 2 +.1.3.6.1.2.1.26.5.1.1.5.1.1,= 0 +.1.3.6.1.2.1.26.5.1.1.5.2.1,= 0 +.1.3.6.1.2.1.26.5.1.1.5.3.1,= 0 +.1.3.6.1.2.1.26.5.1.1.5.4.1,= 0 +.1.3.6.1.2.1.26.5.1.1.5.5.1,= 0 +.1.3.6.1.2.1.26.5.1.1.5.6.1,= 0 +.1.3.6.1.2.1.26.5.1.1.5.7.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.1.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.2.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.3.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.4.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.5.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.6.1,= 0 +.1.3.6.1.2.1.26.5.1.1.6.7.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.1.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.2.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.3.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.4.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.5.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.6.1,= 0 +.1.3.6.1.2.1.26.5.1.1.7.7.1,= 0 +.1.3.6.1.2.1.26.5.1.1.8.1.1,= 2 +.1.3.6.1.2.1.26.5.1.1.8.2.1,= 2 +.1.3.6.1.2.1.26.5.1.1.8.3.1,= 2 +.1.3.6.1.2.1.26.5.1.1.8.4.1,= 2 +.1.3.6.1.2.1.26.5.1.1.8.5.1,= 2 +.1.3.6.1.2.1.26.5.1.1.8.6.1,= 2 +.1.3.6.1.2.1.26.5.1.1.8.7.1,= 2 +.1.3.6.1.2.1.26.5.1.1.9.1.1,"= ""00 C2 """ +.1.3.6.1.2.1.26.5.1.1.9.2.1,"= ""24 C2 """ +.1.3.6.1.2.1.26.5.1.1.9.3.1,"= ""24 C2 """ +.1.3.6.1.2.1.26.5.1.1.9.4.1,"= ""00 C2 """ +.1.3.6.1.2.1.26.5.1.1.9.5.1,"= ""24 C0 """ +.1.3.6.1.2.1.26.5.1.1.9.6.1,"= ""00 C2 """ +.1.3.6.1.2.1.26.5.1.1.9.7.1,"= ""00 C2 """ +.1.3.6.1.2.1.26.5.1.1.10.1.1,"= ""00 C1 """ +.1.3.6.1.2.1.26.5.1.1.10.2.1,"= ""24 C1 """ +.1.3.6.1.2.1.26.5.1.1.10.3.1,"= ""24 C1 """ +.1.3.6.1.2.1.26.5.1.1.10.4.1,"= ""00 C1 """ +.1.3.6.1.2.1.26.5.1.1.10.5.1,"= ""24 C0 """ +.1.3.6.1.2.1.26.5.1.1.10.6.1,"= ""00 C1 """ +.1.3.6.1.2.1.26.5.1.1.10.7.1,"= ""00 C1 """ +.1.3.6.1.2.1.26.5.1.1.11.1.1,"= """"" +.1.3.6.1.2.1.26.5.1.1.11.2.1,"= """"" +.1.3.6.1.2.1.26.5.1.1.11.3.1,"= """"" +.1.3.6.1.2.1.26.5.1.1.11.4.1,"= ""00 C1 """ +.1.3.6.1.2.1.26.5.1.1.11.5.1,"= ""6C C0 """ +.1.3.6.1.2.1.26.5.1.1.11.6.1,"= """"" +.1.3.6.1.2.1.26.5.1.1.11.7.1,"= """"" +.1.3.6.1.2.1.26.5.1.1.12.1.1,= 1 +.1.3.6.1.2.1.26.5.1.1.12.2.1,= 1 +.1.3.6.1.2.1.26.5.1.1.12.3.1,= 1 +.1.3.6.1.2.1.26.5.1.1.12.4.1,= 1 +.1.3.6.1.2.1.26.5.1.1.12.5.1,= 1 +.1.3.6.1.2.1.26.5.1.1.12.6.1,= 1 +.1.3.6.1.2.1.26.5.1.1.12.7.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.1.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.2.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.3.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.4.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.5.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.6.1,= 1 +.1.3.6.1.2.1.26.5.1.1.13.7.1,= 1 +.1.3.6.1.2.1.31.1.1.1.1.1,= EVEN_VLAN_UPLINK +.1.3.6.1.2.1.31.1.1.1.1.2,= ODD_VLAN_UPLINK +.1.3.6.1.2.1.31.1.1.1.1.3,= EVEN_VLAN_DOWNLIN +.1.3.6.1.2.1.31.1.1.1.1.4,= ODD_VLAN_DOWNLINK +.1.3.6.1.2.1.31.1.1.1.1.5,= Management +.1.3.6.1.2.1.31.1.1.1.1.6,= LAG-1 +.1.3.6.1.2.1.31.1.1.1.1.7,= LAG-2 +.1.3.6.1.2.1.31.1.1.1.1.1003,= VLAN_MGMT +.1.3.6.1.2.1.31.1.1.1.2.1,= 1333618 +.1.3.6.1.2.1.31.1.1.1.2.2,= 755094 +.1.3.6.1.2.1.31.1.1.1.2.3,= 1854490 +.1.3.6.1.2.1.31.1.1.1.2.4,= 2381335 +.1.3.6.1.2.1.31.1.1.1.2.5,= 1059008058 +.1.3.6.1.2.1.31.1.1.1.2.6,= 0 +.1.3.6.1.2.1.31.1.1.1.2.7,= 0 +.1.3.6.1.2.1.31.1.1.1.2.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.3.1,= 786060 +.1.3.6.1.2.1.31.1.1.1.3.2,= 35 +.1.3.6.1.2.1.31.1.1.1.3.3,= 64 +.1.3.6.1.2.1.31.1.1.1.3.4,= 0 +.1.3.6.1.2.1.31.1.1.1.3.5,= 291433787 +.1.3.6.1.2.1.31.1.1.1.3.6,= 0 +.1.3.6.1.2.1.31.1.1.1.3.7,= 0 +.1.3.6.1.2.1.31.1.1.1.3.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.4.1,= 1327114 +.1.3.6.1.2.1.31.1.1.1.4.2,= 751328 +.1.3.6.1.2.1.31.1.1.1.4.3,= 1854514 +.1.3.6.1.2.1.31.1.1.1.4.4,= 2381370 +.1.3.6.1.2.1.31.1.1.1.4.5,= 6 +.1.3.6.1.2.1.31.1.1.1.4.6,= 0 +.1.3.6.1.2.1.31.1.1.1.4.7,= 0 +.1.3.6.1.2.1.31.1.1.1.4.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.5.1,= 64 +.1.3.6.1.2.1.31.1.1.1.5.2,= 0 +.1.3.6.1.2.1.31.1.1.1.5.3,= 24 +.1.3.6.1.2.1.31.1.1.1.5.4,= 0 +.1.3.6.1.2.1.31.1.1.1.5.5,= 558851 +.1.3.6.1.2.1.31.1.1.1.5.6,= 0 +.1.3.6.1.2.1.31.1.1.1.5.7,= 0 +.1.3.6.1.2.1.31.1.1.1.5.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.6.1,= 12813324665 +.1.3.6.1.2.1.31.1.1.1.6.2,= 135053161 +.1.3.6.1.2.1.31.1.1.1.6.3,= 15078973313 +.1.3.6.1.2.1.31.1.1.1.6.4,= 314336220 +.1.3.6.1.2.1.31.1.1.1.6.5,= 132727052162 +.1.3.6.1.2.1.31.1.1.1.6.6,= 0 +.1.3.6.1.2.1.31.1.1.1.6.7,= 0 +.1.3.6.1.2.1.31.1.1.1.6.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.7.1,= 12685439 +.1.3.6.1.2.1.31.1.1.1.7.2,= 0 +.1.3.6.1.2.1.31.1.1.1.7.3,= 13188103 +.1.3.6.1.2.1.31.1.1.1.7.4,= 0 +.1.3.6.1.2.1.31.1.1.1.7.5,= 6690176 +.1.3.6.1.2.1.31.1.1.1.7.6,= 0 +.1.3.6.1.2.1.31.1.1.1.7.7,= 0 +.1.3.6.1.2.1.31.1.1.1.7.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.8.1,= 1333618 +.1.3.6.1.2.1.31.1.1.1.8.2,= 755094 +.1.3.6.1.2.1.31.1.1.1.8.3,= 1854490 +.1.3.6.1.2.1.31.1.1.1.8.4,= 2381335 +.1.3.6.1.2.1.31.1.1.1.8.5,= 1059008058 +.1.3.6.1.2.1.31.1.1.1.8.6,= 0 +.1.3.6.1.2.1.31.1.1.1.8.7,= 0 +.1.3.6.1.2.1.31.1.1.1.8.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.9.1,= 786060 +.1.3.6.1.2.1.31.1.1.1.9.2,= 35 +.1.3.6.1.2.1.31.1.1.1.9.3,= 64 +.1.3.6.1.2.1.31.1.1.1.9.4,= 0 +.1.3.6.1.2.1.31.1.1.1.9.5,= 291433787 +.1.3.6.1.2.1.31.1.1.1.9.6,= 0 +.1.3.6.1.2.1.31.1.1.1.9.7,= 0 +.1.3.6.1.2.1.31.1.1.1.9.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.10.1,= 15250068986 +.1.3.6.1.2.1.31.1.1.1.10.2,= 110445216 +.1.3.6.1.2.1.31.1.1.1.10.3,= 12089036710 +.1.3.6.1.2.1.31.1.1.1.10.4,= 354824130 +.1.3.6.1.2.1.31.1.1.1.10.5,= 1387157336 +.1.3.6.1.2.1.31.1.1.1.10.6,= 0 +.1.3.6.1.2.1.31.1.1.1.10.7,= 0 +.1.3.6.1.2.1.31.1.1.1.10.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.11.1,= 20489384 +.1.3.6.1.2.1.31.1.1.1.11.2,= 0 +.1.3.6.1.2.1.31.1.1.1.11.3,= 12156384 +.1.3.6.1.2.1.31.1.1.1.11.4,= 0 +.1.3.6.1.2.1.31.1.1.1.11.5,= 8711365 +.1.3.6.1.2.1.31.1.1.1.11.6,= 0 +.1.3.6.1.2.1.31.1.1.1.11.7,= 0 +.1.3.6.1.2.1.31.1.1.1.11.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.12.1,= 1327114 +.1.3.6.1.2.1.31.1.1.1.12.2,= 751328 +.1.3.6.1.2.1.31.1.1.1.12.3,= 1854514 +.1.3.6.1.2.1.31.1.1.1.12.4,= 2381370 +.1.3.6.1.2.1.31.1.1.1.12.5,= 6 +.1.3.6.1.2.1.31.1.1.1.12.6,= 0 +.1.3.6.1.2.1.31.1.1.1.12.7,= 0 +.1.3.6.1.2.1.31.1.1.1.12.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.13.1,= 64 +.1.3.6.1.2.1.31.1.1.1.13.2,= 0 +.1.3.6.1.2.1.31.1.1.1.13.3,= 24 +.1.3.6.1.2.1.31.1.1.1.13.4,= 0 +.1.3.6.1.2.1.31.1.1.1.13.5,= 558851 +.1.3.6.1.2.1.31.1.1.1.13.6,= 0 +.1.3.6.1.2.1.31.1.1.1.13.7,= 0 +.1.3.6.1.2.1.31.1.1.1.13.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.15.1,= 1000 +.1.3.6.1.2.1.31.1.1.1.15.2,= 0 +.1.3.6.1.2.1.31.1.1.1.15.3,= 0 +.1.3.6.1.2.1.31.1.1.1.15.4,= 0 +.1.3.6.1.2.1.31.1.1.1.15.5,= 100 +.1.3.6.1.2.1.31.1.1.1.15.6,= 0 +.1.3.6.1.2.1.31.1.1.1.15.7,= 0 +.1.3.6.1.2.1.31.1.1.1.15.1003,= 0 +.1.3.6.1.2.1.31.1.1.1.16.1,= false +.1.3.6.1.2.1.31.1.1.1.16.2,= false +.1.3.6.1.2.1.31.1.1.1.16.3,= false +.1.3.6.1.2.1.31.1.1.1.16.4,= false +.1.3.6.1.2.1.31.1.1.1.16.5,= false +.1.3.6.1.2.1.31.1.1.1.16.6,= false +.1.3.6.1.2.1.31.1.1.1.16.7,= false +.1.3.6.1.2.1.31.1.1.1.16.1003,= false +.1.3.6.1.2.1.31.1.1.1.17.1,= true +.1.3.6.1.2.1.31.1.1.1.17.2,= true +.1.3.6.1.2.1.31.1.1.1.17.3,= true +.1.3.6.1.2.1.31.1.1.1.17.4,= true +.1.3.6.1.2.1.31.1.1.1.17.5,= true +.1.3.6.1.2.1.31.1.1.1.17.6,= true +.1.3.6.1.2.1.31.1.1.1.17.7,= true +.1.3.6.1.2.1.31.1.1.1.17.1003,= true +.1.3.6.1.2.1.31.1.1.1.18.1,= +.1.3.6.1.2.1.31.1.1.1.18.2,= +.1.3.6.1.2.1.31.1.1.1.18.3,= +.1.3.6.1.2.1.31.1.1.1.18.4,= +.1.3.6.1.2.1.31.1.1.1.18.5,= +.1.3.6.1.2.1.31.1.1.1.18.6,= +.1.3.6.1.2.1.31.1.1.1.18.7,= +.1.3.6.1.2.1.31.1.1.1.18.1003,= +.1.3.6.1.2.1.31.1.1.1.19.1,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.2,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.3,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.4,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.6,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.7,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1003,= 0:0:00:00.00 +.1.3.6.1.2.1.31.1.5.0,= 0:0:00:00.00 +.1.3.6.1.2.1.55.1.1.0,= notForwarding +.1.3.6.1.2.1.55.1.2.0,= 64 +.1.3.6.1.2.1.55.1.3.0,= 2 +.1.3.6.1.2.1.55.1.5.1.2.1,= lo +.1.3.6.1.2.1.55.1.5.1.2.10,= eth5 +.1.3.6.1.2.1.55.1.5.1.3.1,= .0.0 +.1.3.6.1.2.1.55.1.5.1.3.10,= .0.0 +.1.3.6.1.2.1.55.1.5.1.4.1,= 16436 octets +.1.3.6.1.2.1.55.1.5.1.4.10,= 1500 octets +.1.3.6.1.2.1.55.1.5.1.8.1,= +.1.3.6.1.2.1.55.1.5.1.8.10,= 0:15:ad:47:3e:65 +.1.3.6.1.2.1.55.1.5.1.9.1,= up +.1.3.6.1.2.1.55.1.5.1.9.10,= up +.1.3.6.1.2.1.55.1.5.1.10.1,= up +.1.3.6.1.2.1.55.1.5.1.10.10,= up +.1.3.6.1.4.1.22420.1.1.1.0,"= ""AMN-1000-GT-S""" +.1.3.6.1.4.1.22420.1.1.2.0,"= ""00:15:AD:47:3E:60""" +.1.3.6.1.4.1.22420.1.1.3.0,"= ""NID12-DC-MTSO-Pri""" +.1.3.6.1.4.1.22420.1.1.4.0,"= ""AMT_7.9.1_23673""" +.1.3.6.1.4.1.22420.1.1.5.0,"= ""619-2179:20:23:14""" +.1.3.6.1.4.1.22420.1.1.6.0,"= ""G419-2495""" +.1.3.6.1.4.1.22420.1.1.7.0,"= ""Dry-contact Input""" +.1.3.6.1.4.1.22420.1.1.10.1.1.1,= 1 +.1.3.6.1.4.1.22420.1.1.10.1.1.2,= 2 +.1.3.6.1.4.1.22420.1.1.10.1.1.3,= 3 +.1.3.6.1.4.1.22420.1.1.10.1.1.4,= 4 +.1.3.6.1.4.1.22420.1.1.10.1.1.5,= 5 +.1.3.6.1.4.1.22420.1.1.10.1.2.1,"= ""SFP-1""" +.1.3.6.1.4.1.22420.1.1.10.1.2.2,"= ""SFP-2""" +.1.3.6.1.4.1.22420.1.1.10.1.2.3,"= ""SFP-3""" +.1.3.6.1.4.1.22420.1.1.10.1.2.4,"= ""SFP-4""" +.1.3.6.1.4.1.22420.1.1.10.1.2.5,"= ""Management""" +.1.3.6.1.4.1.22420.1.1.10.1.3.1,= 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.2,= 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.3,= 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.4,= 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.5,= 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.1,= 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.2,= 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.3,= 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.4,= 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.5,= 2 +.1.3.6.1.4.1.22420.1.1.11.1.1.2,= 2 +.1.3.6.1.4.1.22420.1.1.11.1.1.3,= 3 +.1.3.6.1.4.1.22420.1.1.11.1.2.2,"= ""Feed A""" +.1.3.6.1.4.1.22420.1.1.11.1.2.3,"= ""Feed B""" +.1.3.6.1.4.1.22420.1.1.11.1.3.2,= 2 +.1.3.6.1.4.1.22420.1.1.11.1.3.3,= 2 +.1.3.6.1.4.1.22420.1.1.11.1.4.2,= 1 +.1.3.6.1.4.1.22420.1.1.11.1.4.3,= 2 +.1.3.6.1.4.1.22420.1.1.12.1.2.1,= 44 +.1.3.6.1.4.1.22420.1.1.12.1.2.2,= 34 +.1.3.6.1.4.1.22420.1.1.12.1.3.1,= 85 +.1.3.6.1.4.1.22420.1.1.12.1.3.2,= 85 +.1.3.6.1.4.1.22420.1.1.12.1.4.1,= 2 +.1.3.6.1.4.1.22420.1.1.12.1.4.2,= 2 +.1.3.6.1.4.1.22420.1.1.12.1.5.1,= 90 +.1.3.6.1.4.1.22420.1.1.12.1.5.2,= 90 +.1.3.6.1.4.1.22420.1.1.12.1.6.1,= 2 +.1.3.6.1.4.1.22420.1.1.12.1.6.2,= 2 +.1.3.6.1.4.1.22420.1.1.12.1.7.1,"= ""Sensor 1""" +.1.3.6.1.4.1.22420.1.1.12.1.7.2,"= ""Sensor 2""" +.1.3.6.1.4.1.22420.1.1.20.0,= 12 +.1.3.6.1.4.1.22420.1.1.21.0,= 14 +.1.3.6.1.4.1.22420.1.1.22.0,= 15 +.1.3.6.1.4.1.22420.1.1.23.0,= 15 +.1.3.6.1.4.1.22420.1.1.24.0,= 5 +.1.3.6.1.4.1.22420.1.1.25.0,= 90350370 +.1.3.6.1.4.1.22420.2.1.1.0,= 2500 +.1.3.6.1.4.1.22420.2.1.2.0,= 10000 +.1.3.6.1.4.1.22420.2.1.3.0,= 1 +.1.3.6.1.4.1.22420.2.1.4.0,= 1 +.1.3.6.1.4.1.22420.2.1.5.0,= 1 +.1.3.6.1.4.1.22420.2.1.6.0,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.1.1,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.1.2,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.1.3,= 3 +.1.3.6.1.4.1.22420.2.1.10.1.1.4,= 4 +.1.3.6.1.4.1.22420.2.1.10.1.1.5,= 5 +.1.3.6.1.4.1.22420.2.1.10.1.1.6,= 6 +.1.3.6.1.4.1.22420.2.1.10.1.1.7,= 7 +.1.3.6.1.4.1.22420.2.1.10.1.1.8,= 8 +.1.3.6.1.4.1.22420.2.1.10.1.1.9,= 9 +.1.3.6.1.4.1.22420.2.1.10.1.1.10,= 10 +.1.3.6.1.4.1.22420.2.1.10.1.1.11,= 11 +.1.3.6.1.4.1.22420.2.1.10.1.1.12,= 12 +.1.3.6.1.4.1.22420.2.1.10.1.1.13,= 13 +.1.3.6.1.4.1.22420.2.1.10.1.1.14,= 14 +.1.3.6.1.4.1.22420.2.1.10.1.1.15,= 15 +.1.3.6.1.4.1.22420.2.1.10.1.1.16,= 16 +.1.3.6.1.4.1.22420.2.1.10.1.1.17,= 17 +.1.3.6.1.4.1.22420.2.1.10.1.1.18,= 18 +.1.3.6.1.4.1.22420.2.1.10.1.1.19,= 19 +.1.3.6.1.4.1.22420.2.1.10.1.1.20,= 20 +.1.3.6.1.4.1.22420.2.1.10.1.1.21,= 21 +.1.3.6.1.4.1.22420.2.1.10.1.1.22,= 22 +.1.3.6.1.4.1.22420.2.1.10.1.1.23,= 23 +.1.3.6.1.4.1.22420.2.1.10.1.1.24,= 24 +.1.3.6.1.4.1.22420.2.1.10.1.1.25,= 25 +.1.3.6.1.4.1.22420.2.1.10.1.1.26,= 26 +.1.3.6.1.4.1.22420.2.1.10.1.1.27,= 27 +.1.3.6.1.4.1.22420.2.1.10.1.1.28,= 28 +.1.3.6.1.4.1.22420.2.1.10.1.1.29,= 29 +.1.3.6.1.4.1.22420.2.1.10.1.1.30,= 30 +.1.3.6.1.4.1.22420.2.1.10.1.1.31,= 31 +.1.3.6.1.4.1.22420.2.1.10.1.1.32,= 32 +.1.3.6.1.4.1.22420.2.1.10.1.1.33,= 33 +.1.3.6.1.4.1.22420.2.1.10.1.1.34,= 34 +.1.3.6.1.4.1.22420.2.1.10.1.1.35,= 35 +.1.3.6.1.4.1.22420.2.1.10.1.1.36,= 36 +.1.3.6.1.4.1.22420.2.1.10.1.1.37,= 37 +.1.3.6.1.4.1.22420.2.1.10.1.1.38,= 38 +.1.3.6.1.4.1.22420.2.1.10.1.1.39,= 39 +.1.3.6.1.4.1.22420.2.1.10.1.1.40,= 40 +.1.3.6.1.4.1.22420.2.1.10.1.1.41,= 41 +.1.3.6.1.4.1.22420.2.1.10.1.1.42,= 42 +.1.3.6.1.4.1.22420.2.1.10.1.1.43,= 43 +.1.3.6.1.4.1.22420.2.1.10.1.1.44,= 44 +.1.3.6.1.4.1.22420.2.1.10.1.1.45,= 45 +.1.3.6.1.4.1.22420.2.1.10.1.1.46,= 46 +.1.3.6.1.4.1.22420.2.1.10.1.1.47,= 47 +.1.3.6.1.4.1.22420.2.1.10.1.1.48,= 48 +.1.3.6.1.4.1.22420.2.1.10.1.1.49,= 49 +.1.3.6.1.4.1.22420.2.1.10.1.1.50,= 50 +.1.3.6.1.4.1.22420.2.1.10.1.1.51,= 51 +.1.3.6.1.4.1.22420.2.1.10.1.1.52,= 52 +.1.3.6.1.4.1.22420.2.1.10.1.1.53,= 53 +.1.3.6.1.4.1.22420.2.1.10.1.1.54,= 54 +.1.3.6.1.4.1.22420.2.1.10.1.1.55,= 55 +.1.3.6.1.4.1.22420.2.1.10.1.1.56,= 56 +.1.3.6.1.4.1.22420.2.1.10.1.1.57,= 57 +.1.3.6.1.4.1.22420.2.1.10.1.1.58,= 58 +.1.3.6.1.4.1.22420.2.1.10.1.1.59,= 59 +.1.3.6.1.4.1.22420.2.1.10.1.1.60,= 60 +.1.3.6.1.4.1.22420.2.1.10.1.1.61,= 61 +.1.3.6.1.4.1.22420.2.1.10.1.1.62,= 62 +.1.3.6.1.4.1.22420.2.1.10.1.1.63,= 63 +.1.3.6.1.4.1.22420.2.1.10.1.1.64,= 64 +.1.3.6.1.4.1.22420.2.1.10.1.1.65,= 65 +.1.3.6.1.4.1.22420.2.1.10.1.1.66,= 66 +.1.3.6.1.4.1.22420.2.1.10.1.1.67,= 67 +.1.3.6.1.4.1.22420.2.1.10.1.1.68,= 68 +.1.3.6.1.4.1.22420.2.1.10.1.1.69,= 69 +.1.3.6.1.4.1.22420.2.1.10.1.1.70,= 70 +.1.3.6.1.4.1.22420.2.1.10.1.1.71,= 71 +.1.3.6.1.4.1.22420.2.1.10.1.1.72,= 72 +.1.3.6.1.4.1.22420.2.1.10.1.1.73,= 73 +.1.3.6.1.4.1.22420.2.1.10.1.1.74,= 74 +.1.3.6.1.4.1.22420.2.1.10.1.1.75,= 75 +.1.3.6.1.4.1.22420.2.1.10.1.1.76,= 76 +.1.3.6.1.4.1.22420.2.1.10.1.1.77,= 77 +.1.3.6.1.4.1.22420.2.1.10.1.1.78,= 78 +.1.3.6.1.4.1.22420.2.1.10.1.1.79,= 79 +.1.3.6.1.4.1.22420.2.1.10.1.1.80,= 80 +.1.3.6.1.4.1.22420.2.1.10.1.1.81,= 81 +.1.3.6.1.4.1.22420.2.1.10.1.1.82,= 82 +.1.3.6.1.4.1.22420.2.1.10.1.1.83,= 83 +.1.3.6.1.4.1.22420.2.1.10.1.1.84,= 84 +.1.3.6.1.4.1.22420.2.1.10.1.1.85,= 85 +.1.3.6.1.4.1.22420.2.1.10.1.1.86,= 86 +.1.3.6.1.4.1.22420.2.1.10.1.1.87,= 87 +.1.3.6.1.4.1.22420.2.1.10.1.1.88,= 88 +.1.3.6.1.4.1.22420.2.1.10.1.1.89,= 89 +.1.3.6.1.4.1.22420.2.1.10.1.1.90,= 90 +.1.3.6.1.4.1.22420.2.1.10.1.1.91,= 91 +.1.3.6.1.4.1.22420.2.1.10.1.1.92,= 92 +.1.3.6.1.4.1.22420.2.1.10.1.1.93,= 93 +.1.3.6.1.4.1.22420.2.1.10.1.1.94,= 94 +.1.3.6.1.4.1.22420.2.1.10.1.1.95,= 95 +.1.3.6.1.4.1.22420.2.1.10.1.1.96,= 96 +.1.3.6.1.4.1.22420.2.1.10.1.1.97,= 97 +.1.3.6.1.4.1.22420.2.1.10.1.1.98,= 98 +.1.3.6.1.4.1.22420.2.1.10.1.1.99,= 99 +.1.3.6.1.4.1.22420.2.1.10.1.1.100,= 100 +.1.3.6.1.4.1.22420.2.1.10.1.1.101,= 101 +.1.3.6.1.4.1.22420.2.1.10.1.1.102,= 102 +.1.3.6.1.4.1.22420.2.1.10.1.1.103,= 103 +.1.3.6.1.4.1.22420.2.1.10.1.1.104,= 104 +.1.3.6.1.4.1.22420.2.1.10.1.1.105,= 105 +.1.3.6.1.4.1.22420.2.1.10.1.1.106,= 106 +.1.3.6.1.4.1.22420.2.1.10.1.1.107,= 107 +.1.3.6.1.4.1.22420.2.1.10.1.1.108,= 108 +.1.3.6.1.4.1.22420.2.1.10.1.1.109,= 109 +.1.3.6.1.4.1.22420.2.1.10.1.1.110,= 110 +.1.3.6.1.4.1.22420.2.1.10.1.1.111,= 111 +.1.3.6.1.4.1.22420.2.1.10.1.1.112,= 112 +.1.3.6.1.4.1.22420.2.1.10.1.1.113,= 113 +.1.3.6.1.4.1.22420.2.1.10.1.1.114,= 114 +.1.3.6.1.4.1.22420.2.1.10.1.1.115,= 115 +.1.3.6.1.4.1.22420.2.1.10.1.1.116,= 116 +.1.3.6.1.4.1.22420.2.1.10.1.1.117,= 117 +.1.3.6.1.4.1.22420.2.1.10.1.1.118,= 118 +.1.3.6.1.4.1.22420.2.1.10.1.1.119,= 119 +.1.3.6.1.4.1.22420.2.1.10.1.1.120,= 120 +.1.3.6.1.4.1.22420.2.1.10.1.1.121,= 121 +.1.3.6.1.4.1.22420.2.1.10.1.1.122,= 122 +.1.3.6.1.4.1.22420.2.1.10.1.1.123,= 123 +.1.3.6.1.4.1.22420.2.1.10.1.1.124,= 124 +.1.3.6.1.4.1.22420.2.1.10.1.1.125,= 125 +.1.3.6.1.4.1.22420.2.1.10.1.1.126,= 126 +.1.3.6.1.4.1.22420.2.1.10.1.1.127,= 127 +.1.3.6.1.4.1.22420.2.1.10.1.1.128,= 128 +.1.3.6.1.4.1.22420.2.1.10.1.1.129,= 129 +.1.3.6.1.4.1.22420.2.1.10.1.1.130,= 130 +.1.3.6.1.4.1.22420.2.1.10.1.1.131,= 131 +.1.3.6.1.4.1.22420.2.1.10.1.1.132,= 132 +.1.3.6.1.4.1.22420.2.1.10.1.1.133,= 133 +.1.3.6.1.4.1.22420.2.1.10.1.1.134,= 134 +.1.3.6.1.4.1.22420.2.1.10.1.1.135,= 135 +.1.3.6.1.4.1.22420.2.1.10.1.1.136,= 136 +.1.3.6.1.4.1.22420.2.1.10.1.1.137,= 137 +.1.3.6.1.4.1.22420.2.1.10.1.1.138,= 138 +.1.3.6.1.4.1.22420.2.1.10.1.1.139,= 139 +.1.3.6.1.4.1.22420.2.1.10.1.1.140,= 140 +.1.3.6.1.4.1.22420.2.1.10.1.1.141,= 141 +.1.3.6.1.4.1.22420.2.1.10.1.1.142,= 142 +.1.3.6.1.4.1.22420.2.1.10.1.1.143,= 143 +.1.3.6.1.4.1.22420.2.1.10.1.1.144,= 144 +.1.3.6.1.4.1.22420.2.1.10.1.1.145,= 145 +.1.3.6.1.4.1.22420.2.1.10.1.1.146,= 146 +.1.3.6.1.4.1.22420.2.1.10.1.1.147,= 147 +.1.3.6.1.4.1.22420.2.1.10.1.1.148,= 148 +.1.3.6.1.4.1.22420.2.1.10.1.1.149,= 149 +.1.3.6.1.4.1.22420.2.1.10.1.1.150,= 150 +.1.3.6.1.4.1.22420.2.1.10.1.1.151,= 151 +.1.3.6.1.4.1.22420.2.1.10.1.1.152,= 152 +.1.3.6.1.4.1.22420.2.1.10.1.1.153,= 153 +.1.3.6.1.4.1.22420.2.1.10.1.1.154,= 154 +.1.3.6.1.4.1.22420.2.1.10.1.1.155,= 155 +.1.3.6.1.4.1.22420.2.1.10.1.1.156,= 156 +.1.3.6.1.4.1.22420.2.1.10.1.1.157,= 157 +.1.3.6.1.4.1.22420.2.1.10.1.1.158,= 158 +.1.3.6.1.4.1.22420.2.1.10.1.1.159,= 159 +.1.3.6.1.4.1.22420.2.1.10.1.1.160,= 160 +.1.3.6.1.4.1.22420.2.1.10.1.1.161,= 161 +.1.3.6.1.4.1.22420.2.1.10.1.1.162,= 162 +.1.3.6.1.4.1.22420.2.1.10.1.1.163,= 163 +.1.3.6.1.4.1.22420.2.1.10.1.1.164,= 164 +.1.3.6.1.4.1.22420.2.1.10.1.1.165,= 165 +.1.3.6.1.4.1.22420.2.1.10.1.1.166,= 166 +.1.3.6.1.4.1.22420.2.1.10.1.1.167,= 167 +.1.3.6.1.4.1.22420.2.1.10.1.1.168,= 168 +.1.3.6.1.4.1.22420.2.1.10.1.1.169,= 169 +.1.3.6.1.4.1.22420.2.1.10.1.1.170,= 170 +.1.3.6.1.4.1.22420.2.1.10.1.1.171,= 171 +.1.3.6.1.4.1.22420.2.1.10.1.1.172,= 172 +.1.3.6.1.4.1.22420.2.1.10.1.1.173,= 173 +.1.3.6.1.4.1.22420.2.1.10.1.1.174,= 174 +.1.3.6.1.4.1.22420.2.1.10.1.1.175,= 175 +.1.3.6.1.4.1.22420.2.1.10.1.1.176,= 176 +.1.3.6.1.4.1.22420.2.1.10.1.1.177,= 177 +.1.3.6.1.4.1.22420.2.1.10.1.1.178,= 178 +.1.3.6.1.4.1.22420.2.1.10.1.1.179,= 179 +.1.3.6.1.4.1.22420.2.1.10.1.1.180,= 180 +.1.3.6.1.4.1.22420.2.1.10.1.1.181,= 181 +.1.3.6.1.4.1.22420.2.1.10.1.1.182,= 182 +.1.3.6.1.4.1.22420.2.1.10.1.1.183,= 183 +.1.3.6.1.4.1.22420.2.1.10.1.1.184,= 184 +.1.3.6.1.4.1.22420.2.1.10.1.1.185,= 185 +.1.3.6.1.4.1.22420.2.1.10.1.1.186,= 186 +.1.3.6.1.4.1.22420.2.1.10.1.1.187,= 187 +.1.3.6.1.4.1.22420.2.1.10.1.1.188,= 188 +.1.3.6.1.4.1.22420.2.1.10.1.1.189,= 189 +.1.3.6.1.4.1.22420.2.1.10.1.1.190,= 190 +.1.3.6.1.4.1.22420.2.1.10.1.1.191,= 191 +.1.3.6.1.4.1.22420.2.1.10.1.1.192,= 192 +.1.3.6.1.4.1.22420.2.1.10.1.1.193,= 193 +.1.3.6.1.4.1.22420.2.1.10.1.1.194,= 194 +.1.3.6.1.4.1.22420.2.1.10.1.1.195,= 195 +.1.3.6.1.4.1.22420.2.1.10.1.1.196,= 196 +.1.3.6.1.4.1.22420.2.1.10.1.1.197,= 197 +.1.3.6.1.4.1.22420.2.1.10.1.1.198,= 198 +.1.3.6.1.4.1.22420.2.1.10.1.1.199,= 199 +.1.3.6.1.4.1.22420.2.1.10.1.1.200,= 200 +.1.3.6.1.4.1.22420.2.1.10.1.1.201,= 201 +.1.3.6.1.4.1.22420.2.1.10.1.1.202,= 202 +.1.3.6.1.4.1.22420.2.1.10.1.1.203,= 203 +.1.3.6.1.4.1.22420.2.1.10.1.1.204,= 204 +.1.3.6.1.4.1.22420.2.1.10.1.1.205,= 205 +.1.3.6.1.4.1.22420.2.1.10.1.1.206,= 206 +.1.3.6.1.4.1.22420.2.1.10.1.1.207,= 207 +.1.3.6.1.4.1.22420.2.1.10.1.1.208,= 208 +.1.3.6.1.4.1.22420.2.1.10.1.1.209,= 209 +.1.3.6.1.4.1.22420.2.1.10.1.1.210,= 210 +.1.3.6.1.4.1.22420.2.1.10.1.1.211,= 211 +.1.3.6.1.4.1.22420.2.1.10.1.1.212,= 212 +.1.3.6.1.4.1.22420.2.1.10.1.1.213,= 213 +.1.3.6.1.4.1.22420.2.1.10.1.1.214,= 214 +.1.3.6.1.4.1.22420.2.1.10.1.1.215,= 215 +.1.3.6.1.4.1.22420.2.1.10.1.1.216,= 216 +.1.3.6.1.4.1.22420.2.1.10.1.1.217,= 217 +.1.3.6.1.4.1.22420.2.1.10.1.1.218,= 218 +.1.3.6.1.4.1.22420.2.1.10.1.2.1,= 8000001 +.1.3.6.1.4.1.22420.2.1.10.1.2.2,= 8000002 +.1.3.6.1.4.1.22420.2.1.10.1.2.3,= 8000004 +.1.3.6.1.4.1.22420.2.1.10.1.2.4,= 8000005 +.1.3.6.1.4.1.22420.2.1.10.1.2.5,= 8000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.6,= 8000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.7,= 8000040 +.1.3.6.1.4.1.22420.2.1.10.1.2.8,= 8000041 +.1.3.6.1.4.1.22420.2.1.10.1.2.9,= 8000140 +.1.3.6.1.4.1.22420.2.1.10.1.2.10,= 8000141 +.1.3.6.1.4.1.22420.2.1.10.1.2.11,= 2000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.12,= 2000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.13,= 2000103 +.1.3.6.1.4.1.22420.2.1.10.1.2.14,= 2000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.15,= 2000105 +.1.3.6.1.4.1.22420.2.1.10.1.2.16,= 2000106 +.1.3.6.1.4.1.22420.2.1.10.1.2.17,= 2000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.18,= 2000108 +.1.3.6.1.4.1.22420.2.1.10.1.2.19,= 2000109 +.1.3.6.1.4.1.22420.2.1.10.1.2.20,= 2000110 +.1.3.6.1.4.1.22420.2.1.10.1.2.21,= 2000111 +.1.3.6.1.4.1.22420.2.1.10.1.2.22,= 2000112 +.1.3.6.1.4.1.22420.2.1.10.1.2.23,= 2000113 +.1.3.6.1.4.1.22420.2.1.10.1.2.24,= 2000114 +.1.3.6.1.4.1.22420.2.1.10.1.2.25,= 2000115 +.1.3.6.1.4.1.22420.2.1.10.1.2.26,= 2000116 +.1.3.6.1.4.1.22420.2.1.10.1.2.27,= 2000117 +.1.3.6.1.4.1.22420.2.1.10.1.2.28,= 2000118 +.1.3.6.1.4.1.22420.2.1.10.1.2.29,= 2000119 +.1.3.6.1.4.1.22420.2.1.10.1.2.30,= 2000120 +.1.3.6.1.4.1.22420.2.1.10.1.2.31,= 2000121 +.1.3.6.1.4.1.22420.2.1.10.1.2.32,= 2000201 +.1.3.6.1.4.1.22420.2.1.10.1.2.33,= 2000202 +.1.3.6.1.4.1.22420.2.1.10.1.2.34,= 2000203 +.1.3.6.1.4.1.22420.2.1.10.1.2.35,= 2000204 +.1.3.6.1.4.1.22420.2.1.10.1.2.36,= 2000205 +.1.3.6.1.4.1.22420.2.1.10.1.2.37,= 2000206 +.1.3.6.1.4.1.22420.2.1.10.1.2.38,= 2000207 +.1.3.6.1.4.1.22420.2.1.10.1.2.39,= 2000208 +.1.3.6.1.4.1.22420.2.1.10.1.2.40,= 2000209 +.1.3.6.1.4.1.22420.2.1.10.1.2.41,= 2000210 +.1.3.6.1.4.1.22420.2.1.10.1.2.42,= 2000211 +.1.3.6.1.4.1.22420.2.1.10.1.2.43,= 2000212 +.1.3.6.1.4.1.22420.2.1.10.1.2.44,= 2000213 +.1.3.6.1.4.1.22420.2.1.10.1.2.45,= 2000214 +.1.3.6.1.4.1.22420.2.1.10.1.2.46,= 2000215 +.1.3.6.1.4.1.22420.2.1.10.1.2.47,= 2000216 +.1.3.6.1.4.1.22420.2.1.10.1.2.48,= 2000217 +.1.3.6.1.4.1.22420.2.1.10.1.2.49,= 2000218 +.1.3.6.1.4.1.22420.2.1.10.1.2.50,= 2000219 +.1.3.6.1.4.1.22420.2.1.10.1.2.51,= 2000220 +.1.3.6.1.4.1.22420.2.1.10.1.2.52,= 2000221 +.1.3.6.1.4.1.22420.2.1.10.1.2.53,= 2000301 +.1.3.6.1.4.1.22420.2.1.10.1.2.54,= 2000302 +.1.3.6.1.4.1.22420.2.1.10.1.2.55,= 2000303 +.1.3.6.1.4.1.22420.2.1.10.1.2.56,= 2000304 +.1.3.6.1.4.1.22420.2.1.10.1.2.57,= 2000305 +.1.3.6.1.4.1.22420.2.1.10.1.2.58,= 2000306 +.1.3.6.1.4.1.22420.2.1.10.1.2.59,= 2000307 +.1.3.6.1.4.1.22420.2.1.10.1.2.60,= 2000308 +.1.3.6.1.4.1.22420.2.1.10.1.2.61,= 2000309 +.1.3.6.1.4.1.22420.2.1.10.1.2.62,= 2000310 +.1.3.6.1.4.1.22420.2.1.10.1.2.63,= 2000311 +.1.3.6.1.4.1.22420.2.1.10.1.2.64,= 2000312 +.1.3.6.1.4.1.22420.2.1.10.1.2.65,= 2000313 +.1.3.6.1.4.1.22420.2.1.10.1.2.66,= 2000314 +.1.3.6.1.4.1.22420.2.1.10.1.2.67,= 2000315 +.1.3.6.1.4.1.22420.2.1.10.1.2.68,= 2000316 +.1.3.6.1.4.1.22420.2.1.10.1.2.69,= 2000317 +.1.3.6.1.4.1.22420.2.1.10.1.2.70,= 2000318 +.1.3.6.1.4.1.22420.2.1.10.1.2.71,= 2000319 +.1.3.6.1.4.1.22420.2.1.10.1.2.72,= 2000320 +.1.3.6.1.4.1.22420.2.1.10.1.2.73,= 2000321 +.1.3.6.1.4.1.22420.2.1.10.1.2.74,= 2000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.75,= 2000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.76,= 2000403 +.1.3.6.1.4.1.22420.2.1.10.1.2.77,= 2000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.78,= 2000405 +.1.3.6.1.4.1.22420.2.1.10.1.2.79,= 2000406 +.1.3.6.1.4.1.22420.2.1.10.1.2.80,= 2000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.81,= 2000408 +.1.3.6.1.4.1.22420.2.1.10.1.2.82,= 2000409 +.1.3.6.1.4.1.22420.2.1.10.1.2.83,= 2000410 +.1.3.6.1.4.1.22420.2.1.10.1.2.84,= 2000411 +.1.3.6.1.4.1.22420.2.1.10.1.2.85,= 2000412 +.1.3.6.1.4.1.22420.2.1.10.1.2.86,= 2000413 +.1.3.6.1.4.1.22420.2.1.10.1.2.87,= 2000414 +.1.3.6.1.4.1.22420.2.1.10.1.2.88,= 2000415 +.1.3.6.1.4.1.22420.2.1.10.1.2.89,= 2000416 +.1.3.6.1.4.1.22420.2.1.10.1.2.90,= 2000417 +.1.3.6.1.4.1.22420.2.1.10.1.2.91,= 2000418 +.1.3.6.1.4.1.22420.2.1.10.1.2.92,= 2000419 +.1.3.6.1.4.1.22420.2.1.10.1.2.93,= 2000420 +.1.3.6.1.4.1.22420.2.1.10.1.2.94,= 2000421 +.1.3.6.1.4.1.22420.2.1.10.1.2.95,= 1000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.96,= 1000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.97,= 1000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.98,= 1000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.99,= 1000201 +.1.3.6.1.4.1.22420.2.1.10.1.2.100,= 1000202 +.1.3.6.1.4.1.22420.2.1.10.1.2.101,= 1000204 +.1.3.6.1.4.1.22420.2.1.10.1.2.102,= 1000207 +.1.3.6.1.4.1.22420.2.1.10.1.2.103,= 1000301 +.1.3.6.1.4.1.22420.2.1.10.1.2.104,= 1000302 +.1.3.6.1.4.1.22420.2.1.10.1.2.105,= 1000304 +.1.3.6.1.4.1.22420.2.1.10.1.2.106,= 1000307 +.1.3.6.1.4.1.22420.2.1.10.1.2.107,= 1000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.108,= 1000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.109,= 1000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.110,= 1000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.111,= 1000501 +.1.3.6.1.4.1.22420.2.1.10.1.2.112,= 1000601 +.1.3.6.1.4.1.22420.2.1.10.1.2.113,= 1000602 +.1.3.6.1.4.1.22420.2.1.10.1.2.114,= 1000604 +.1.3.6.1.4.1.22420.2.1.10.1.2.115,= 1000603 +.1.3.6.1.4.1.22420.2.1.10.1.2.116,= 1000701 +.1.3.6.1.4.1.22420.2.1.10.1.2.117,= 1000702 +.1.3.6.1.4.1.22420.2.1.10.1.2.118,= 1000704 +.1.3.6.1.4.1.22420.2.1.10.1.2.119,= 1000703 +.1.3.6.1.4.1.22420.2.1.10.1.2.120,= 8000006 +.1.3.6.1.4.1.22420.2.1.10.1.2.121,= 8000007 +.1.3.6.1.4.1.22420.2.1.10.1.2.122,= 8000080 +.1.3.6.1.4.1.22420.2.1.10.1.2.123,= 7000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.124,= 7000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.125,= 7000106 +.1.3.6.1.4.1.22420.2.1.10.1.2.126,= 7000108 +.1.3.6.1.4.1.22420.2.1.10.1.2.127,= 7000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.128,= 7000105 +.1.3.6.1.4.1.22420.2.1.10.1.2.129,= 7000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.130,= 18000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.131,= 18000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.132,= 3000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.133,= 3000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.134,= 3000103 +.1.3.6.1.4.1.22420.2.1.10.1.2.135,= 3000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.136,= 3000105 +.1.3.6.1.4.1.22420.2.1.10.1.2.137,= 3000106 +.1.3.6.1.4.1.22420.2.1.10.1.2.138,= 3000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.139,= 3000108 +.1.3.6.1.4.1.22420.2.1.10.1.2.140,= 3000109 +.1.3.6.1.4.1.22420.2.1.10.1.2.141,= 3000110 +.1.3.6.1.4.1.22420.2.1.10.1.2.142,= 3000111 +.1.3.6.1.4.1.22420.2.1.10.1.2.143,= 3000112 +.1.3.6.1.4.1.22420.2.1.10.1.2.144,= 3000113 +.1.3.6.1.4.1.22420.2.1.10.1.2.145,= 3000114 +.1.3.6.1.4.1.22420.2.1.10.1.2.146,= 3000115 +.1.3.6.1.4.1.22420.2.1.10.1.2.147,= 3000201 +.1.3.6.1.4.1.22420.2.1.10.1.2.148,= 3000202 +.1.3.6.1.4.1.22420.2.1.10.1.2.149,= 3000203 +.1.3.6.1.4.1.22420.2.1.10.1.2.150,= 3000204 +.1.3.6.1.4.1.22420.2.1.10.1.2.151,= 3000205 +.1.3.6.1.4.1.22420.2.1.10.1.2.152,= 3000206 +.1.3.6.1.4.1.22420.2.1.10.1.2.153,= 3000207 +.1.3.6.1.4.1.22420.2.1.10.1.2.154,= 3000208 +.1.3.6.1.4.1.22420.2.1.10.1.2.155,= 3000209 +.1.3.6.1.4.1.22420.2.1.10.1.2.156,= 3000210 +.1.3.6.1.4.1.22420.2.1.10.1.2.157,= 3000211 +.1.3.6.1.4.1.22420.2.1.10.1.2.158,= 3000212 +.1.3.6.1.4.1.22420.2.1.10.1.2.159,= 3000213 +.1.3.6.1.4.1.22420.2.1.10.1.2.160,= 3000214 +.1.3.6.1.4.1.22420.2.1.10.1.2.161,= 3000215 +.1.3.6.1.4.1.22420.2.1.10.1.2.162,= 3000301 +.1.3.6.1.4.1.22420.2.1.10.1.2.163,= 3000302 +.1.3.6.1.4.1.22420.2.1.10.1.2.164,= 3000303 +.1.3.6.1.4.1.22420.2.1.10.1.2.165,= 3000304 +.1.3.6.1.4.1.22420.2.1.10.1.2.166,= 3000305 +.1.3.6.1.4.1.22420.2.1.10.1.2.167,= 3000306 +.1.3.6.1.4.1.22420.2.1.10.1.2.168,= 3000307 +.1.3.6.1.4.1.22420.2.1.10.1.2.169,= 3000308 +.1.3.6.1.4.1.22420.2.1.10.1.2.170,= 3000309 +.1.3.6.1.4.1.22420.2.1.10.1.2.171,= 3000310 +.1.3.6.1.4.1.22420.2.1.10.1.2.172,= 3000311 +.1.3.6.1.4.1.22420.2.1.10.1.2.173,= 3000312 +.1.3.6.1.4.1.22420.2.1.10.1.2.174,= 3000313 +.1.3.6.1.4.1.22420.2.1.10.1.2.175,= 3000314 +.1.3.6.1.4.1.22420.2.1.10.1.2.176,= 3000315 +.1.3.6.1.4.1.22420.2.1.10.1.2.177,= 3000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.178,= 3000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.179,= 3000403 +.1.3.6.1.4.1.22420.2.1.10.1.2.180,= 3000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.181,= 3000405 +.1.3.6.1.4.1.22420.2.1.10.1.2.182,= 3000406 +.1.3.6.1.4.1.22420.2.1.10.1.2.183,= 3000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.184,= 3000408 +.1.3.6.1.4.1.22420.2.1.10.1.2.185,= 3000409 +.1.3.6.1.4.1.22420.2.1.10.1.2.186,= 3000410 +.1.3.6.1.4.1.22420.2.1.10.1.2.187,= 3000411 +.1.3.6.1.4.1.22420.2.1.10.1.2.188,= 3000412 +.1.3.6.1.4.1.22420.2.1.10.1.2.189,= 3000413 +.1.3.6.1.4.1.22420.2.1.10.1.2.190,= 3000414 +.1.3.6.1.4.1.22420.2.1.10.1.2.191,= 3000415 +.1.3.6.1.4.1.22420.2.1.10.1.2.192,= 7000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.193,= 7000412 +.1.3.6.1.4.1.22420.2.1.10.1.2.194,= 7000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.195,= 7000411 +.1.3.6.1.4.1.22420.2.1.10.1.2.196,= 7000403 +.1.3.6.1.4.1.22420.2.1.10.1.2.197,= 7000410 +.1.3.6.1.4.1.22420.2.1.10.1.2.198,= 7000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.199,= 7000414 +.1.3.6.1.4.1.22420.2.1.10.1.2.200,= 7000406 +.1.3.6.1.4.1.22420.2.1.10.1.2.201,= 7000413 +.1.3.6.1.4.1.22420.2.1.10.1.2.202,= 7000405 +.1.3.6.1.4.1.22420.2.1.10.1.2.203,= 7000417 +.1.3.6.1.4.1.22420.2.1.10.1.2.204,= 7000409 +.1.3.6.1.4.1.22420.2.1.10.1.2.205,= 7000415 +.1.3.6.1.4.1.22420.2.1.10.1.2.206,= 7000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.207,= 7000416 +.1.3.6.1.4.1.22420.2.1.10.1.2.208,= 7000408 +.1.3.6.1.4.1.22420.2.1.10.1.2.209,= 7000421 +.1.3.6.1.4.1.22420.2.1.10.1.2.210,= 7000420 +.1.3.6.1.4.1.22420.2.1.10.1.2.211,= 7000423 +.1.3.6.1.4.1.22420.2.1.10.1.2.212,= 7000422 +.1.3.6.1.4.1.22420.2.1.10.1.2.213,= 7000425 +.1.3.6.1.4.1.22420.2.1.10.1.2.214,= 7000424 +.1.3.6.1.4.1.22420.2.1.10.1.2.215,= 7000428 +.1.3.6.1.4.1.22420.2.1.10.1.2.216,= 7000429 +.1.3.6.1.4.1.22420.2.1.10.1.2.217,= 19000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.218,= 19000102 +.1.3.6.1.4.1.22420.2.1.10.1.3.1,"= ""First overheat threshold""" +.1.3.6.1.4.1.22420.2.1.10.1.3.2,"= ""Second overheat threshold""" +.1.3.6.1.4.1.22420.2.1.10.1.3.3,"= ""No power supply on feed A""" +.1.3.6.1.4.1.22420.2.1.10.1.3.4,"= ""No power supply on feed B""" +.1.3.6.1.4.1.22420.2.1.10.1.3.5,"= ""First overheat threshold""" +.1.3.6.1.4.1.22420.2.1.10.1.3.6,"= ""Second overheat threshold""" +.1.3.6.1.4.1.22420.2.1.10.1.3.7,"= ""Fan 1 slow""" +.1.3.6.1.4.1.22420.2.1.10.1.3.8,"= ""Fan 1 failure""" +.1.3.6.1.4.1.22420.2.1.10.1.3.9,"= ""Fan 2 slow""" +.1.3.6.1.4.1.22420.2.1.10.1.3.10,"= ""Fan 2 failure""" +.1.3.6.1.4.1.22420.2.1.10.1.3.11,"= ""SFP-1 temperature high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.12,"= ""SFP-1 temperature low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.13,"= ""SFP-1 temperature high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.14,"= ""SFP-1 temperature low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.15,"= ""SFP-1 supply voltage high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.16,"= ""SFP-1 supply voltage low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.17,"= ""SFP-1 supply voltage high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.18,"= ""SFP-1 supply voltage low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.19,"= ""SFP-1 laser bias current high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.20,"= ""SFP-1 laser bias current low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.21,"= ""SFP-1 laser bias current high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.22,"= ""SFP-1 laser bias current low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.23,"= ""SFP-1 transmit power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.24,"= ""SFP-1 transmit power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.25,"= ""SFP-1 transmit power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.26,"= ""SFP-1 transmit power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.27,"= ""SFP-1 receive power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.28,"= ""SFP-1 receive power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.29,"= ""SFP-1 receive power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.30,"= ""SFP-1 receive power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.31,"= ""SFP-1 not present""" +.1.3.6.1.4.1.22420.2.1.10.1.3.32,"= ""SFP-2 temperature high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.33,"= ""SFP-2 temperature low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.34,"= ""SFP-2 temperature high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.35,"= ""SFP-2 temperature low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.36,"= ""SFP-2 supply voltage high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.37,"= ""SFP-2 supply voltage low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.38,"= ""SFP-2 supply voltage high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.39,"= ""SFP-2 supply voltage low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.40,"= ""SFP-2 laser bias current high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.41,"= ""SFP-2 laser bias current low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.42,"= ""SFP-2 laser bias current high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.43,"= ""SFP-2 laser bias current low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.44,"= ""SFP-2 transmit power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.45,"= ""SFP-2 transmit power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.46,"= ""SFP-2 transmit power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.47,"= ""SFP-2 transmit power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.48,"= ""SFP-2 receive power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.49,"= ""SFP-2 receive power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.50,"= ""SFP-2 receive power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.51,"= ""SFP-2 receive power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.52,"= ""SFP-2 not present""" +.1.3.6.1.4.1.22420.2.1.10.1.3.53,"= ""SFP-3 temperature high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.54,"= ""SFP-3 temperature low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.55,"= ""SFP-3 temperature high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.56,"= ""SFP-3 temperature low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.57,"= ""SFP-3 supply voltage high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.58,"= ""SFP-3 supply voltage low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.59,"= ""SFP-3 supply voltage high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.60,"= ""SFP-3 supply voltage low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.61,"= ""SFP-3 laser bias current high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.62,"= ""SFP-3 laser bias current low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.63,"= ""SFP-3 laser bias current high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.64,"= ""SFP-3 laser bias current low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.65,"= ""SFP-3 transmit power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.66,"= ""SFP-3 transmit power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.67,"= ""SFP-3 transmit power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.68,"= ""SFP-3 transmit power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.69,"= ""SFP-3 receive power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.70,"= ""SFP-3 receive power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.71,"= ""SFP-3 receive power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.72,"= ""SFP-3 receive power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.73,"= ""SFP-3 not present""" +.1.3.6.1.4.1.22420.2.1.10.1.3.74,"= ""SFP-4 temperature high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.75,"= ""SFP-4 temperature low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.76,"= ""SFP-4 temperature high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.77,"= ""SFP-4 temperature low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.78,"= ""SFP-4 supply voltage high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.79,"= ""SFP-4 supply voltage low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.80,"= ""SFP-4 supply voltage high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.81,"= ""SFP-4 supply voltage low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.82,"= ""SFP-4 laser bias current high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.83,"= ""SFP-4 laser bias current low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.84,"= ""SFP-4 laser bias current high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.85,"= ""SFP-4 laser bias current low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.86,"= ""SFP-4 transmit power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.87,"= ""SFP-4 transmit power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.88,"= ""SFP-4 transmit power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.89,"= ""SFP-4 transmit power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.90,"= ""SFP-4 receive power high alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.91,"= ""SFP-4 receive power low alarm""" +.1.3.6.1.4.1.22420.2.1.10.1.3.92,"= ""SFP-4 receive power high warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.93,"= ""SFP-4 receive power low warning""" +.1.3.6.1.4.1.22420.2.1.10.1.3.94,"= ""SFP-4 not present""" +.1.3.6.1.4.1.22420.2.1.10.1.3.95,"= ""Link down on EVEN_VLAN_UPLINK port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.96,"= ""Loopback on port EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.97,"= ""Fault propagation caused link down on port EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.98,"= ""SA caused link down on port EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.99,"= ""Link down on ODD_VLAN_UPLINK port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.100,"= ""Loopback on port ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.101,"= ""Fault propagation caused link down on port ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.102,"= ""SA caused link down on port ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.103,"= ""Link down on EVEN_VLAN_DOWNLIN port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.104,"= ""Loopback on port EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.3.105,"= ""Fault propagation caused link down on port EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.3.106,"= ""SA caused link down on port EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.3.107,"= ""Link down on ODD_VLAN_DOWNLINK port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.108,"= ""Loopback on port ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.109,"= ""Fault propagation caused link down on port ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.110,"= ""SA caused link down on port ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.3.111,"= ""Link down on Management port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.112,"= ""Link down on LAG-1 port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.113,"= ""Loopback on port LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.3.114,"= ""Fault propagation caused link down on port LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.3.115,"= ""Sub-port speed mismatch on port LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.3.116,"= ""Link down on LAG-2 port""" +.1.3.6.1.4.1.22420.2.1.10.1.3.117,"= ""Loopback on port LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.3.118,"= ""Fault propagation caused link down on port LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.3.119,"= ""Sub-port speed mismatch on port LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.3.120,"= ""Input 1 Active""" +.1.3.6.1.4.1.22420.2.1.10.1.3.121,"= ""Input 2 Active""" +.1.3.6.1.4.1.22420.2.1.10.1.3.122,"= ""Troubleshooting tool is running""" +.1.3.6.1.4.1.22420.2.1.10.1.3.123,"= ""NTP client lost server communication""" +.1.3.6.1.4.1.22420.2.1.10.1.3.124,"= ""NTP Time-of-day synchronization - May affect one-way delay measurements""" +.1.3.6.1.4.1.22420.2.1.10.1.3.125,"= ""NTP client used interface without timestamp capability""" +.1.3.6.1.4.1.22420.2.1.10.1.3.126,"= ""Remote NTP server used an interface without timestamp capability""" +.1.3.6.1.4.1.22420.2.1.10.1.3.127,"= ""PTP client failure communication with server""" +.1.3.6.1.4.1.22420.2.1.10.1.3.128,"= ""PTP Time-of-day synchronization - May affect one-way delay measurements""" +.1.3.6.1.4.1.22420.2.1.10.1.3.129,"= ""PTP client used interface without timestamp capability""" +.1.3.6.1.4.1.22420.2.1.10.1.3.130,"= ""Inventory entries list is almost full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.131,"= ""Inventory entries list is full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.132,"= ""PAA_Site573_VL2216 PAA_CC_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.133,"= ""PAA_Site573_VL2216 PAA_PL_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.134,"= ""PAA_Site573_VL2216 PAA_OW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.135,"= ""PAA_Site573_VL2216 PAA_OW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.136,"= ""PAA_Site573_VL2216 PAA_OW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.137,"= ""PAA_Site573_VL2216 PAA_OW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.138,"= ""PAA_Site573_VL2216 PAA_TW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.139,"= ""PAA_Site573_VL2216 PAA_TW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.140,"= ""PAA_Site573_VL2216 PAA_TW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.141,"= ""PAA_Site573_VL2216 PAA_TW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.142,"= ""PAA_Site573_VL2216 PAA_VLAN1_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.143,"= ""PAA_Site573_VL2216 PAA_VLAN2_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.144,"= ""PAA_Site573_VL2216 PAA_VLAN1_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.145,"= ""PAA_Site573_VL2216 PAA_VLAN2_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.146,"= ""PAA_Site573_VL2216 PAA_DSCP_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.147,"= ""PAA_site573_2216_PNAP PAA_CC_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.148,"= ""PAA_site573_2216_PNAP PAA_PL_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.149,"= ""PAA_site573_2216_PNAP PAA_OW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.150,"= ""PAA_site573_2216_PNAP PAA_OW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.151,"= ""PAA_site573_2216_PNAP PAA_OW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.152,"= ""PAA_site573_2216_PNAP PAA_OW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.153,"= ""PAA_site573_2216_PNAP PAA_TW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.154,"= ""PAA_site573_2216_PNAP PAA_TW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.155,"= ""PAA_site573_2216_PNAP PAA_TW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.156,"= ""PAA_site573_2216_PNAP PAA_TW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.157,"= ""PAA_site573_2216_PNAP PAA_VLAN1_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.158,"= ""PAA_site573_2216_PNAP PAA_VLAN2_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.159,"= ""PAA_site573_2216_PNAP PAA_VLAN1_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.160,"= ""PAA_site573_2216_PNAP PAA_VLAN2_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.161,"= ""PAA_site573_2216_PNAP PAA_DSCP_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.162,"= ""PAA_Site573_VL2217 PAA_CC_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.163,"= ""PAA_Site573_VL2217 PAA_PL_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.164,"= ""PAA_Site573_VL2217 PAA_OW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.165,"= ""PAA_Site573_VL2217 PAA_OW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.166,"= ""PAA_Site573_VL2217 PAA_OW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.167,"= ""PAA_Site573_VL2217 PAA_OW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.168,"= ""PAA_Site573_VL2217 PAA_TW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.169,"= ""PAA_Site573_VL2217 PAA_TW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.170,"= ""PAA_Site573_VL2217 PAA_TW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.171,"= ""PAA_Site573_VL2217 PAA_TW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.172,"= ""PAA_Site573_VL2217 PAA_VLAN1_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.173,"= ""PAA_Site573_VL2217 PAA_VLAN2_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.174,"= ""PAA_Site573_VL2217 PAA_VLAN1_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.175,"= ""PAA_Site573_VL2217 PAA_VLAN2_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.176,"= ""PAA_Site573_VL2217 PAA_DSCP_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.177,"= ""PAA_site573_2217_PNAP PAA_CC_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.178,"= ""PAA_site573_2217_PNAP PAA_PL_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.179,"= ""PAA_site573_2217_PNAP PAA_OW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.180,"= ""PAA_site573_2217_PNAP PAA_OW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.181,"= ""PAA_site573_2217_PNAP PAA_OW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.182,"= ""PAA_site573_2217_PNAP PAA_OW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.183,"= ""PAA_site573_2217_PNAP PAA_TW_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.184,"= ""PAA_site573_2217_PNAP PAA_TW_AVG_DELAY_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.185,"= ""PAA_site573_2217_PNAP PAA_TW_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.186,"= ""PAA_site573_2217_PNAP PAA_TW_AVG_DV_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.187,"= ""PAA_site573_2217_PNAP PAA_VLAN1_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.188,"= ""PAA_site573_2217_PNAP PAA_VLAN2_ID_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.189,"= ""PAA_site573_2217_PNAP PAA_VLAN1_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.190,"= ""PAA_site573_2217_PNAP PAA_VLAN2_PRIO_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.191,"= ""PAA_site573_2217_PNAP PAA_DSCP_ALERT""" +.1.3.6.1.4.1.22420.2.1.10.1.3.192,"= ""VCAgent communication failure with Vision EMS""" +.1.3.6.1.4.1.22420.2.1.10.1.3.193,"= ""VCAgent High Resolution PAA statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.194,"= ""VCAgent High Resolution PAA instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.195,"= ""VCAgent High Resolution Regulator statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.196,"= ""VCAgent High Resolution Regulator instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.197,"= ""VCAgent High Resolution Policy statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.198,"= ""VCAgent High Resolution Policy instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.199,"= ""VCAgent High Resolution SOAM DMM statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.200,"= ""VCAgent High Resolution SOAM DMM instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.201,"= ""VCAgent High Resolution SOAM PL statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.202,"= ""VCAgent High Resolution SOAM PL instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.203,"= ""VCAgent High Resolution SOAM SLM statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.204,"= ""VCAgent High Resolution SOAM SLM instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.205,"= ""VCAgent High Resolution SOAM SA statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.206,"= ""VCAgent High Resolution SOAM SA instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.207,"= ""VCAgent High Resolution SOAM SA Metrics statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.208,"= ""VCAgent High Resolution SOAM SA Metrics instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.209,"= ""VCAgent High Resolution TWAMP statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.210,"= ""VCAgent High Resolution TWAMP instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.211,"= ""VCAgent High Resolution Shaper statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.212,"= ""VCAgent High Resolution Shaper instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.213,"= ""VCAgent High Resolution Port statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.214,"= ""VCAgent High Resolution Port instances validation""" +.1.3.6.1.4.1.22420.2.1.10.1.3.215,"= ""VCAgent High Resolution SFP statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.216,"= ""VCAgent High Resolution System Health statistics buffer full""" +.1.3.6.1.4.1.22420.2.1.10.1.3.217,"= ""One or more certificates is about to expire""" +.1.3.6.1.4.1.22420.2.1.10.1.3.218,"= ""One or more certificates has expired""" +.1.3.6.1.4.1.22420.2.1.10.1.4.1,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.2,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.3,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.4,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.5,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.6,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.7,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.8,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.9,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.10,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.11,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.12,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.13,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.14,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.15,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.16,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.17,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.18,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.19,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.20,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.21,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.22,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.23,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.24,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.25,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.26,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.27,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.28,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.29,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.30,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.31,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.32,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.33,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.34,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.35,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.36,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.37,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.38,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.39,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.40,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.41,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.42,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.43,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.44,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.45,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.46,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.47,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.48,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.49,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.50,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.51,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.52,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.53,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.54,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.55,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.56,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.57,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.58,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.59,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.60,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.61,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.62,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.63,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.64,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.65,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.66,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.67,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.68,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.69,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.70,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.71,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.72,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.73,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.74,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.75,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.76,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.77,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.78,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.79,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.80,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.81,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.82,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.83,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.84,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.85,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.86,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.87,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.88,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.89,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.90,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.91,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.92,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.93,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.94,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.95,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.96,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.97,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.98,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.99,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.100,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.101,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.102,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.103,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.104,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.105,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.106,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.107,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.108,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.109,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.110,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.111,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.4.112,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.113,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.114,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.115,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.116,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.4.117,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.118,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.119,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.120,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.121,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.122,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.123,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.124,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.125,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.126,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.127,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.128,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.129,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.130,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.131,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.132,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.133,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.134,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.135,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.136,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.137,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.138,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.139,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.140,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.141,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.142,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.143,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.144,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.145,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.146,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.147,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.148,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.149,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.150,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.151,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.152,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.153,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.154,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.155,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.156,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.157,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.158,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.159,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.160,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.161,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.162,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.163,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.164,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.165,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.166,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.167,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.168,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.169,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.170,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.171,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.172,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.173,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.174,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.175,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.176,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.177,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.178,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.179,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.180,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.181,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.182,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.183,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.184,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.185,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.186,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.187,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.188,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.189,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.190,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.191,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.192,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.193,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.194,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.195,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.196,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.197,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.198,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.199,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.200,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.201,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.202,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.203,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.204,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.205,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.206,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.207,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.208,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.209,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.210,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.211,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.212,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.213,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.214,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.215,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.216,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.217,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.218,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.1,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.2,= 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.3,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.4,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.5,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.6,= 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.7,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.8,= 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.9,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.10,= 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.11,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.12,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.13,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.14,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.15,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.16,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.17,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.18,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.19,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.20,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.21,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.22,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.23,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.24,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.25,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.26,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.27,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.28,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.29,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.30,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.31,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.32,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.33,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.34,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.35,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.36,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.37,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.38,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.39,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.40,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.41,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.42,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.43,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.44,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.45,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.46,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.47,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.48,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.49,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.50,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.51,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.52,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.53,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.54,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.55,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.56,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.57,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.58,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.59,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.60,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.61,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.62,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.63,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.64,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.65,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.66,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.67,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.68,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.69,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.70,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.71,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.72,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.73,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.74,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.75,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.76,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.77,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.78,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.79,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.80,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.81,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.82,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.83,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.84,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.85,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.86,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.87,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.88,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.89,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.90,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.91,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.92,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.93,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.94,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.95,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.96,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.97,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.98,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.99,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.100,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.101,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.102,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.103,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.104,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.105,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.106,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.107,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.108,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.109,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.110,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.111,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.112,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.113,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.114,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.115,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.116,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.117,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.118,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.119,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.120,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.121,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.122,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.123,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.124,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.125,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.126,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.127,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.128,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.129,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.130,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.131,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.132,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.133,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.134,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.135,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.136,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.137,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.138,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.139,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.140,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.141,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.142,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.143,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.144,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.145,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.146,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.147,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.148,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.149,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.150,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.151,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.152,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.153,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.154,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.155,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.156,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.157,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.158,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.159,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.160,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.161,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.162,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.163,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.164,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.165,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.166,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.167,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.168,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.169,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.170,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.171,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.172,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.173,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.174,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.175,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.176,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.177,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.178,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.179,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.180,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.181,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.182,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.183,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.184,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.185,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.186,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.187,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.188,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.189,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.190,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.191,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.192,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.193,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.194,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.195,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.196,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.197,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.198,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.199,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.200,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.201,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.202,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.203,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.204,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.205,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.206,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.207,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.208,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.209,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.210,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.211,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.212,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.213,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.214,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.215,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.216,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.217,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.218,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.1,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.2,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.3,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.4,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.5,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.6,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.7,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.8,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.9,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.10,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.11,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.12,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.13,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.14,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.15,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.16,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.17,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.18,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.19,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.20,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.21,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.22,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.23,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.24,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.25,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.26,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.27,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.28,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.29,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.30,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.31,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.32,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.33,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.34,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.35,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.36,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.37,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.38,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.39,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.40,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.41,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.42,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.43,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.44,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.45,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.46,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.47,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.48,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.49,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.50,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.51,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.52,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.53,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.54,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.55,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.56,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.57,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.58,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.59,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.60,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.61,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.62,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.63,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.64,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.65,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.66,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.67,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.68,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.69,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.70,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.71,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.72,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.73,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.74,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.75,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.76,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.77,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.78,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.79,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.80,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.81,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.82,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.83,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.84,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.85,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.86,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.87,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.88,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.89,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.90,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.91,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.92,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.93,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.94,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.95,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.96,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.97,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.98,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.99,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.100,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.101,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.102,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.103,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.104,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.105,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.106,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.107,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.108,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.109,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.110,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.111,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.112,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.113,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.114,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.115,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.116,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.117,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.118,= 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.119,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.120,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.121,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.122,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.123,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.124,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.125,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.126,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.127,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.128,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.129,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.130,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.131,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.132,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.133,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.134,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.135,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.136,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.137,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.138,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.139,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.140,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.141,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.142,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.143,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.144,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.145,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.146,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.147,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.148,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.149,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.150,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.151,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.152,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.153,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.154,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.155,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.156,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.157,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.158,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.159,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.160,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.161,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.162,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.163,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.164,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.165,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.166,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.167,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.168,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.169,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.170,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.171,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.172,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.173,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.174,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.175,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.176,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.177,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.178,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.179,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.180,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.181,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.182,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.183,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.184,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.185,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.186,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.187,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.188,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.189,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.190,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.191,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.192,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.193,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.194,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.195,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.196,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.197,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.198,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.199,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.200,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.201,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.202,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.203,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.204,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.205,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.206,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.207,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.208,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.209,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.210,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.211,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.212,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.213,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.214,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.215,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.216,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.217,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.218,= 2 +.1.3.6.1.4.1.22420.2.1.10.1.7.1,"= ""8.0000.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.2,"= ""8.0000.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.3,"= ""8.0000.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.4,"= ""8.0000.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.5,"= ""8.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.6,"= ""8.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.7,"= ""8.0000.40""" +.1.3.6.1.4.1.22420.2.1.10.1.7.8,"= ""8.0000.41""" +.1.3.6.1.4.1.22420.2.1.10.1.7.9,"= ""8.0001.40""" +.1.3.6.1.4.1.22420.2.1.10.1.7.10,"= ""8.0001.41""" +.1.3.6.1.4.1.22420.2.1.10.1.7.11,"= ""2.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.12,"= ""2.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.13,"= ""2.0001.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.14,"= ""2.0001.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.15,"= ""2.0001.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.16,"= ""2.0001.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.17,"= ""2.0001.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.18,"= ""2.0001.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.19,"= ""2.0001.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.20,"= ""2.0001.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.21,"= ""2.0001.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.22,"= ""2.0001.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.23,"= ""2.0001.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.24,"= ""2.0001.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.25,"= ""2.0001.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.26,"= ""2.0001.16""" +.1.3.6.1.4.1.22420.2.1.10.1.7.27,"= ""2.0001.17""" +.1.3.6.1.4.1.22420.2.1.10.1.7.28,"= ""2.0001.18""" +.1.3.6.1.4.1.22420.2.1.10.1.7.29,"= ""2.0001.19""" +.1.3.6.1.4.1.22420.2.1.10.1.7.30,"= ""2.0001.20""" +.1.3.6.1.4.1.22420.2.1.10.1.7.31,"= ""2.0001.21""" +.1.3.6.1.4.1.22420.2.1.10.1.7.32,"= ""2.0002.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.33,"= ""2.0002.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.34,"= ""2.0002.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.35,"= ""2.0002.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.36,"= ""2.0002.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.37,"= ""2.0002.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.38,"= ""2.0002.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.39,"= ""2.0002.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.40,"= ""2.0002.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.41,"= ""2.0002.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.42,"= ""2.0002.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.43,"= ""2.0002.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.44,"= ""2.0002.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.45,"= ""2.0002.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.46,"= ""2.0002.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.47,"= ""2.0002.16""" +.1.3.6.1.4.1.22420.2.1.10.1.7.48,"= ""2.0002.17""" +.1.3.6.1.4.1.22420.2.1.10.1.7.49,"= ""2.0002.18""" +.1.3.6.1.4.1.22420.2.1.10.1.7.50,"= ""2.0002.19""" +.1.3.6.1.4.1.22420.2.1.10.1.7.51,"= ""2.0002.20""" +.1.3.6.1.4.1.22420.2.1.10.1.7.52,"= ""2.0002.21""" +.1.3.6.1.4.1.22420.2.1.10.1.7.53,"= ""2.0003.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.54,"= ""2.0003.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.55,"= ""2.0003.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.56,"= ""2.0003.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.57,"= ""2.0003.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.58,"= ""2.0003.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.59,"= ""2.0003.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.60,"= ""2.0003.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.61,"= ""2.0003.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.62,"= ""2.0003.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.63,"= ""2.0003.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.64,"= ""2.0003.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.65,"= ""2.0003.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.66,"= ""2.0003.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.67,"= ""2.0003.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.68,"= ""2.0003.16""" +.1.3.6.1.4.1.22420.2.1.10.1.7.69,"= ""2.0003.17""" +.1.3.6.1.4.1.22420.2.1.10.1.7.70,"= ""2.0003.18""" +.1.3.6.1.4.1.22420.2.1.10.1.7.71,"= ""2.0003.19""" +.1.3.6.1.4.1.22420.2.1.10.1.7.72,"= ""2.0003.20""" +.1.3.6.1.4.1.22420.2.1.10.1.7.73,"= ""2.0003.21""" +.1.3.6.1.4.1.22420.2.1.10.1.7.74,"= ""2.0004.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.75,"= ""2.0004.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.76,"= ""2.0004.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.77,"= ""2.0004.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.78,"= ""2.0004.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.79,"= ""2.0004.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.80,"= ""2.0004.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.81,"= ""2.0004.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.82,"= ""2.0004.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.83,"= ""2.0004.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.84,"= ""2.0004.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.85,"= ""2.0004.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.86,"= ""2.0004.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.87,"= ""2.0004.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.88,"= ""2.0004.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.89,"= ""2.0004.16""" +.1.3.6.1.4.1.22420.2.1.10.1.7.90,"= ""2.0004.17""" +.1.3.6.1.4.1.22420.2.1.10.1.7.91,"= ""2.0004.18""" +.1.3.6.1.4.1.22420.2.1.10.1.7.92,"= ""2.0004.19""" +.1.3.6.1.4.1.22420.2.1.10.1.7.93,"= ""2.0004.20""" +.1.3.6.1.4.1.22420.2.1.10.1.7.94,"= ""2.0004.21""" +.1.3.6.1.4.1.22420.2.1.10.1.7.95,"= ""1.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.96,"= ""1.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.97,"= ""1.0001.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.98,"= ""1.0001.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.99,"= ""1.0002.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.100,"= ""1.0002.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.101,"= ""1.0002.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.102,"= ""1.0002.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.103,"= ""1.0003.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.104,"= ""1.0003.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.105,"= ""1.0003.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.106,"= ""1.0003.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.107,"= ""1.0004.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.108,"= ""1.0004.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.109,"= ""1.0004.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.110,"= ""1.0004.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.111,"= ""1.0005.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.112,"= ""1.0006.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.113,"= ""1.0006.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.114,"= ""1.0006.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.115,"= ""1.0006.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.116,"= ""1.0007.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.117,"= ""1.0007.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.118,"= ""1.0007.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.119,"= ""1.0007.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.120,"= ""8.0000.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.121,"= ""8.0000.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.122,"= ""8.0000.80""" +.1.3.6.1.4.1.22420.2.1.10.1.7.123,"= ""7.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.124,"= ""7.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.125,"= ""7.0001.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.126,"= ""7.0001.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.127,"= ""7.0001.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.128,"= ""7.0001.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.129,"= ""7.0001.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.130,"= ""18.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.131,"= ""18.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.132,"= ""3.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.133,"= ""3.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.134,"= ""3.0001.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.135,"= ""3.0001.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.136,"= ""3.0001.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.137,"= ""3.0001.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.138,"= ""3.0001.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.139,"= ""3.0001.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.140,"= ""3.0001.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.141,"= ""3.0001.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.142,"= ""3.0001.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.143,"= ""3.0001.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.144,"= ""3.0001.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.145,"= ""3.0001.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.146,"= ""3.0001.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.147,"= ""3.0002.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.148,"= ""3.0002.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.149,"= ""3.0002.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.150,"= ""3.0002.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.151,"= ""3.0002.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.152,"= ""3.0002.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.153,"= ""3.0002.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.154,"= ""3.0002.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.155,"= ""3.0002.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.156,"= ""3.0002.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.157,"= ""3.0002.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.158,"= ""3.0002.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.159,"= ""3.0002.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.160,"= ""3.0002.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.161,"= ""3.0002.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.162,"= ""3.0003.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.163,"= ""3.0003.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.164,"= ""3.0003.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.165,"= ""3.0003.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.166,"= ""3.0003.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.167,"= ""3.0003.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.168,"= ""3.0003.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.169,"= ""3.0003.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.170,"= ""3.0003.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.171,"= ""3.0003.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.172,"= ""3.0003.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.173,"= ""3.0003.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.174,"= ""3.0003.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.175,"= ""3.0003.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.176,"= ""3.0003.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.177,"= ""3.0004.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.178,"= ""3.0004.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.179,"= ""3.0004.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.180,"= ""3.0004.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.181,"= ""3.0004.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.182,"= ""3.0004.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.183,"= ""3.0004.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.184,"= ""3.0004.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.185,"= ""3.0004.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.186,"= ""3.0004.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.187,"= ""3.0004.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.188,"= ""3.0004.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.189,"= ""3.0004.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.190,"= ""3.0004.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.191,"= ""3.0004.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.192,"= ""7.0004.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.193,"= ""7.0004.12""" +.1.3.6.1.4.1.22420.2.1.10.1.7.194,"= ""7.0004.04""" +.1.3.6.1.4.1.22420.2.1.10.1.7.195,"= ""7.0004.11""" +.1.3.6.1.4.1.22420.2.1.10.1.7.196,"= ""7.0004.03""" +.1.3.6.1.4.1.22420.2.1.10.1.7.197,"= ""7.0004.10""" +.1.3.6.1.4.1.22420.2.1.10.1.7.198,"= ""7.0004.02""" +.1.3.6.1.4.1.22420.2.1.10.1.7.199,"= ""7.0004.14""" +.1.3.6.1.4.1.22420.2.1.10.1.7.200,"= ""7.0004.06""" +.1.3.6.1.4.1.22420.2.1.10.1.7.201,"= ""7.0004.13""" +.1.3.6.1.4.1.22420.2.1.10.1.7.202,"= ""7.0004.05""" +.1.3.6.1.4.1.22420.2.1.10.1.7.203,"= ""7.0004.17""" +.1.3.6.1.4.1.22420.2.1.10.1.7.204,"= ""7.0004.09""" +.1.3.6.1.4.1.22420.2.1.10.1.7.205,"= ""7.0004.15""" +.1.3.6.1.4.1.22420.2.1.10.1.7.206,"= ""7.0004.07""" +.1.3.6.1.4.1.22420.2.1.10.1.7.207,"= ""7.0004.16""" +.1.3.6.1.4.1.22420.2.1.10.1.7.208,"= ""7.0004.08""" +.1.3.6.1.4.1.22420.2.1.10.1.7.209,"= ""7.0004.21""" +.1.3.6.1.4.1.22420.2.1.10.1.7.210,"= ""7.0004.20""" +.1.3.6.1.4.1.22420.2.1.10.1.7.211,"= ""7.0004.23""" +.1.3.6.1.4.1.22420.2.1.10.1.7.212,"= ""7.0004.22""" +.1.3.6.1.4.1.22420.2.1.10.1.7.213,"= ""7.0004.25""" +.1.3.6.1.4.1.22420.2.1.10.1.7.214,"= ""7.0004.24""" +.1.3.6.1.4.1.22420.2.1.10.1.7.215,"= ""7.0004.28""" +.1.3.6.1.4.1.22420.2.1.10.1.7.216,"= ""7.0004.29""" +.1.3.6.1.4.1.22420.2.1.10.1.7.217,"= ""19.0001.01""" +.1.3.6.1.4.1.22420.2.1.10.1.7.218,"= ""19.0001.02""" +.1.3.6.1.4.1.22420.2.1.10.1.8.1,"= ""TEMP-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.2,"= ""TEMP-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.3,"= ""PWR-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.4,"= ""PWR-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.5,"= ""TEMP-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.6,"= ""TEMP-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.7,"= ""FAN-SLOW""" +.1.3.6.1.4.1.22420.2.1.10.1.8.8,"= ""FAN-FAILURE""" +.1.3.6.1.4.1.22420.2.1.10.1.8.9,"= ""FAN-SLOW""" +.1.3.6.1.4.1.22420.2.1.10.1.8.10,"= ""FAN-FAILURE""" +.1.3.6.1.4.1.22420.2.1.10.1.8.11,"= ""TEMP-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.12,"= ""TEMP-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.13,"= ""TEMP-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.14,"= ""TEMP-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.15,"= ""VCC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.16,"= ""VCC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.17,"= ""VCC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.18,"= ""VCC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.19,"= ""LBC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.20,"= ""LBC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.21,"= ""LBC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.22,"= ""LBC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.23,"= ""TX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.24,"= ""TX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.25,"= ""TX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.26,"= ""TX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.27,"= ""RX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.28,"= ""RX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.29,"= ""RX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.30,"= ""RX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.31,"= ""MOD-NOT-PRESENT""" +.1.3.6.1.4.1.22420.2.1.10.1.8.32,"= ""TEMP-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.33,"= ""TEMP-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.34,"= ""TEMP-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.35,"= ""TEMP-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.36,"= ""VCC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.37,"= ""VCC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.38,"= ""VCC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.39,"= ""VCC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.40,"= ""LBC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.41,"= ""LBC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.42,"= ""LBC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.43,"= ""LBC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.44,"= ""TX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.45,"= ""TX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.46,"= ""TX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.47,"= ""TX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.48,"= ""RX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.49,"= ""RX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.50,"= ""RX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.51,"= ""RX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.52,"= ""MOD-NOT-PRESENT""" +.1.3.6.1.4.1.22420.2.1.10.1.8.53,"= ""TEMP-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.54,"= ""TEMP-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.55,"= ""TEMP-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.56,"= ""TEMP-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.57,"= ""VCC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.58,"= ""VCC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.59,"= ""VCC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.60,"= ""VCC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.61,"= ""LBC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.62,"= ""LBC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.63,"= ""LBC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.64,"= ""LBC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.65,"= ""TX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.66,"= ""TX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.67,"= ""TX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.68,"= ""TX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.69,"= ""RX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.70,"= ""RX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.71,"= ""RX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.72,"= ""RX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.73,"= ""MOD-NOT-PRESENT""" +.1.3.6.1.4.1.22420.2.1.10.1.8.74,"= ""TEMP-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.75,"= ""TEMP-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.76,"= ""TEMP-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.77,"= ""TEMP-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.78,"= ""VCC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.79,"= ""VCC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.80,"= ""VCC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.81,"= ""VCC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.82,"= ""LBC-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.83,"= ""LBC-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.84,"= ""LBC-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.85,"= ""LBC-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.86,"= ""TX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.87,"= ""TX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.88,"= ""TX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.89,"= ""TX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.90,"= ""RX-PWR-HIGH-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.91,"= ""RX-PWR-LOW-ALM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.92,"= ""RX-PWR-HIGH-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.93,"= ""RX-PWR-LOW-WN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.94,"= ""MOD-NOT-PRESENT""" +.1.3.6.1.4.1.22420.2.1.10.1.8.95,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.96,"= ""OAM-LOOPBACK""" +.1.3.6.1.4.1.22420.2.1.10.1.8.97,"= ""LINK-DOWN-FP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.98,"= ""LINK-DOWN-SA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.99,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.100,"= ""OAM-LOOPBACK""" +.1.3.6.1.4.1.22420.2.1.10.1.8.101,"= ""LINK-DOWN-FP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.102,"= ""LINK-DOWN-SA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.103,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.104,"= ""OAM-LOOPBACK""" +.1.3.6.1.4.1.22420.2.1.10.1.8.105,"= ""LINK-DOWN-FP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.106,"= ""LINK-DOWN-SA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.107,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.108,"= ""OAM-LOOPBACK""" +.1.3.6.1.4.1.22420.2.1.10.1.8.109,"= ""LINK-DOWN-FP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.110,"= ""LINK-DOWN-SA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.111,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.112,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.113,"= ""OAM-LOOPBACK""" +.1.3.6.1.4.1.22420.2.1.10.1.8.114,"= ""LINK-DOWN-FP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.115,"= ""SPEED-MISMATCH""" +.1.3.6.1.4.1.22420.2.1.10.1.8.116,"= ""LINK-DOWN""" +.1.3.6.1.4.1.22420.2.1.10.1.8.117,"= ""OAM-LOOPBACK""" +.1.3.6.1.4.1.22420.2.1.10.1.8.118,"= ""LINK-DOWN-FP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.119,"= ""SPEED-MISMATCH""" +.1.3.6.1.4.1.22420.2.1.10.1.8.120,"= ""DRYCONTACT-IN1""" +.1.3.6.1.4.1.22420.2.1.10.1.8.121,"= ""DRYCONTACT-IN2""" +.1.3.6.1.4.1.22420.2.1.10.1.8.122,"= ""TOOL-DIAG-RUNNING""" +.1.3.6.1.4.1.22420.2.1.10.1.8.123,"= ""NTP-STATUS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.124,"= ""NTP-LOST-SYNCH""" +.1.3.6.1.4.1.22420.2.1.10.1.8.125,"= ""NTP-CAPABILITY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.126,"= ""NTP-RMT-CAPABILITY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.127,"= ""PTP-STATUS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.128,"= ""PTP-LOST-SYNCH""" +.1.3.6.1.4.1.22420.2.1.10.1.8.129,"= ""PTP-CAPABILITY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.130,"= ""INVENTORY-ALMOST-FULL""" +.1.3.6.1.4.1.22420.2.1.10.1.8.131,"= ""INVENTORY-FULL""" +.1.3.6.1.4.1.22420.2.1.10.1.8.132,"= ""CONNECT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.133,"= ""PKT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.134,"= ""OW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.135,"= ""OW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.136,"= ""OW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.137,"= ""OW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.138,"= ""TW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.139,"= ""TW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.140,"= ""TW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.141,"= ""TW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.142,"= ""VLAN1-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.143,"= ""VLAN2-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.144,"= ""VLAN1-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.145,"= ""VLAN2-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.146,"= ""DSCP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.147,"= ""CONNECT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.148,"= ""PKT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.149,"= ""OW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.150,"= ""OW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.151,"= ""OW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.152,"= ""OW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.153,"= ""TW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.154,"= ""TW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.155,"= ""TW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.156,"= ""TW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.157,"= ""VLAN1-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.158,"= ""VLAN2-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.159,"= ""VLAN1-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.160,"= ""VLAN2-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.161,"= ""DSCP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.162,"= ""CONNECT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.163,"= ""PKT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.164,"= ""OW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.165,"= ""OW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.166,"= ""OW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.167,"= ""OW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.168,"= ""TW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.169,"= ""TW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.170,"= ""TW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.171,"= ""TW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.172,"= ""VLAN1-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.173,"= ""VLAN2-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.174,"= ""VLAN1-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.175,"= ""VLAN2-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.176,"= ""DSCP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.177,"= ""CONNECT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.178,"= ""PKT-LOSS""" +.1.3.6.1.4.1.22420.2.1.10.1.8.179,"= ""OW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.180,"= ""OW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.181,"= ""OW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.182,"= ""OW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.183,"= ""TW-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.184,"= ""TW-AVG-DELAY""" +.1.3.6.1.4.1.22420.2.1.10.1.8.185,"= ""TW-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.186,"= ""TW-AVG-DV""" +.1.3.6.1.4.1.22420.2.1.10.1.8.187,"= ""VLAN1-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.188,"= ""VLAN2-ID""" +.1.3.6.1.4.1.22420.2.1.10.1.8.189,"= ""VLAN1-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.190,"= ""VLAN2-PRIO""" +.1.3.6.1.4.1.22420.2.1.10.1.8.191,"= ""DSCP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.192,"= ""VCA-LOST-COMM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.193,"= ""VCA-FULL-PAA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.194,"= ""VCA-MAX-PAA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.195,"= ""VCA-FULL-BWP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.196,"= ""VCA-MAX-BWP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.197,"= ""VCA-FULL-POL""" +.1.3.6.1.4.1.22420.2.1.10.1.8.198,"= ""VCA-MAX-POL""" +.1.3.6.1.4.1.22420.2.1.10.1.8.199,"= ""VCA-FULL-DMM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.200,"= ""VCA-MAX-DMM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.201,"= ""VCA-FULL-PL""" +.1.3.6.1.4.1.22420.2.1.10.1.8.202,"= ""VCA-MAX-PL""" +.1.3.6.1.4.1.22420.2.1.10.1.8.203,"= ""VCA-FULL-SLM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.204,"= ""VCA-MAX-SLM""" +.1.3.6.1.4.1.22420.2.1.10.1.8.205,"= ""VCA-FULL-SA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.206,"= ""VCA-MAX-SA""" +.1.3.6.1.4.1.22420.2.1.10.1.8.207,"= ""VCA-FULL-SA_M""" +.1.3.6.1.4.1.22420.2.1.10.1.8.208,"= ""VCA-MAX-SA_M""" +.1.3.6.1.4.1.22420.2.1.10.1.8.209,"= ""VCA-FULL-TWAMP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.210,"= ""VCA-MAX-TWAMP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.211,"= ""VCA-FULL-SHAPER-V2""" +.1.3.6.1.4.1.22420.2.1.10.1.8.212,"= ""VCA-MAX-SHAPER-V2""" +.1.3.6.1.4.1.22420.2.1.10.1.8.213,"= ""VCA-FULL-PORT""" +.1.3.6.1.4.1.22420.2.1.10.1.8.214,"= ""VCA-MAX-PORT""" +.1.3.6.1.4.1.22420.2.1.10.1.8.215,"= ""VCA-FULL-SFP""" +.1.3.6.1.4.1.22420.2.1.10.1.8.216,"= ""VCA-FULL-SYSTEM-HEALTH""" +.1.3.6.1.4.1.22420.2.1.10.1.8.217,"= ""EXPIRING""" +.1.3.6.1.4.1.22420.2.1.10.1.8.218,"= ""EXPIRED""" +.1.3.6.1.4.1.22420.2.1.10.1.9.1,"= ""ENV.TEMP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.2,"= ""ENV.TEMP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.3,"= ""ENV.PWR-FEEDA""" +.1.3.6.1.4.1.22420.2.1.10.1.9.4,"= ""ENV.PWR-FEEDB""" +.1.3.6.1.4.1.22420.2.1.10.1.9.5,"= ""ENV.TEMP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.6,"= ""ENV.TEMP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.7,"= ""ENV.FAN-SLOW""" +.1.3.6.1.4.1.22420.2.1.10.1.9.8,"= ""ENV.FAN-FAILURE""" +.1.3.6.1.4.1.22420.2.1.10.1.9.9,"= ""ENV.FAN-SLOW""" +.1.3.6.1.4.1.22420.2.1.10.1.9.10,"= ""ENV.FAN-FAILURE""" +.1.3.6.1.4.1.22420.2.1.10.1.9.11,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.12,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.13,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.14,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.15,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.16,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.17,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.18,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.19,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.20,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.21,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.22,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.23,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.24,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.25,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.26,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.27,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.28,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.29,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.30,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.31,"= ""SFP.1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.32,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.33,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.34,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.35,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.36,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.37,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.38,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.39,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.40,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.41,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.42,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.43,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.44,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.45,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.46,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.47,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.48,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.49,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.50,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.51,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.52,"= ""SFP.2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.53,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.54,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.55,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.56,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.57,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.58,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.59,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.60,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.61,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.62,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.63,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.64,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.65,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.66,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.67,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.68,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.69,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.70,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.71,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.72,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.73,"= ""SFP.3""" +.1.3.6.1.4.1.22420.2.1.10.1.9.74,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.75,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.76,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.77,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.78,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.79,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.80,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.81,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.82,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.83,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.84,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.85,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.86,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.87,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.88,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.89,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.90,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.91,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.92,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.93,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.94,"= ""SFP.4""" +.1.3.6.1.4.1.22420.2.1.10.1.9.95,"= ""PORT.EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.96,"= ""PORT.EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.97,"= ""PORT.EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.98,"= ""PORT.EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.99,"= ""PORT.ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.100,"= ""PORT.ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.101,"= ""PORT.ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.102,"= ""PORT.ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.103,"= ""PORT.EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.9.104,"= ""PORT.EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.9.105,"= ""PORT.EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.9.106,"= ""PORT.EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.1.10.1.9.107,"= ""PORT.ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.108,"= ""PORT.ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.109,"= ""PORT.ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.110,"= ""PORT.ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.1.10.1.9.111,"= ""PORT.Management""" +.1.3.6.1.4.1.22420.2.1.10.1.9.112,"= ""PORT.LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.113,"= ""PORT.LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.114,"= ""PORT.LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.115,"= ""PORT.LAG-1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.116,"= ""PORT.LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.117,"= ""PORT.LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.118,"= ""PORT.LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.119,"= ""PORT.LAG-2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.120,"= ""ENV.DRYCONTACT-IN1""" +.1.3.6.1.4.1.22420.2.1.10.1.9.121,"= ""ENV.DRYCONTACT-IN2""" +.1.3.6.1.4.1.22420.2.1.10.1.9.122,"= ""NE""" +.1.3.6.1.4.1.22420.2.1.10.1.9.123,"= ""PROTOCOL.NTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.124,"= ""PROTOCOL.NTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.125,"= ""PROTOCOL.NTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.126,"= ""PROTOCOL.NTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.127,"= ""PROTOCOL.PTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.128,"= ""PROTOCOL.PTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.129,"= ""PROTOCOL.PTP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.130,"= ""INVENTORY""" +.1.3.6.1.4.1.22420.2.1.10.1.9.131,"= ""INVENTORY""" +.1.3.6.1.4.1.22420.2.1.10.1.9.132,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.133,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.134,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.135,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.136,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.137,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.138,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.139,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.140,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.141,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.142,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.143,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.144,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.145,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.146,"= ""PAA.PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.1.10.1.9.147,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.148,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.149,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.150,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.151,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.152,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.153,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.154,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.155,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.156,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.157,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.158,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.159,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.160,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.161,"= ""PAA.PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.162,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.163,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.164,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.165,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.166,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.167,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.168,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.169,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.170,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.171,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.172,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.173,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.174,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.175,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.176,"= ""PAA.PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.1.10.1.9.177,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.178,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.179,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.180,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.181,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.182,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.183,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.184,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.185,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.186,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.187,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.188,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.189,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.190,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.191,"= ""PAA.PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.1.10.1.9.192,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.193,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.194,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.195,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.196,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.197,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.198,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.199,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.200,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.201,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.202,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.203,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.204,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.205,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.206,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.207,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.208,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.209,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.210,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.211,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.212,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.213,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.214,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.215,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.216,"= ""VCAGENT""" +.1.3.6.1.4.1.22420.2.1.10.1.9.217,"= ""CERTIFICATE.EXPIRING""" +.1.3.6.1.4.1.22420.2.1.10.1.9.218,"= ""CERTIFICATE.EXPIRED""" +.1.3.6.1.4.1.22420.2.1.10.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.5,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.8,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.9,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.10,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.11,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.12,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.13,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.14,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.15,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.16,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.17,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.18,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.19,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.20,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.21,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.22,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.23,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.24,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.25,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.26,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.27,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.28,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.29,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.30,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.31,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.32,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.33,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.34,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.35,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.36,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.37,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.38,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.39,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.40,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.41,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.42,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.43,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.44,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.45,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.46,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.47,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.48,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.49,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.50,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.51,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.52,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.53,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.54,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.55,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.56,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.57,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.58,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.59,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.60,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.61,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.62,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.63,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.64,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.65,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.66,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.67,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.68,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.69,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.70,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.71,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.72,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.73,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.74,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.75,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.76,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.77,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.78,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.79,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.80,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.81,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.82,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.83,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.84,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.85,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.86,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.87,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.88,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.89,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.90,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.91,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.92,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.93,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.94,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.95,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.96,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.97,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.98,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.99,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.100,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.101,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.102,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.103,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.104,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.105,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.106,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.107,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.108,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.109,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.110,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.111,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.112,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.113,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.114,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.115,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.116,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.117,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.118,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.119,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.120,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.121,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.122,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.123,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.124,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.125,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.126,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.127,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.128,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.129,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.130,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.131,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.132,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.133,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.134,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.135,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.136,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.137,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.138,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.139,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.140,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.141,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.142,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.143,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.144,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.145,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.146,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.147,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.148,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.149,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.150,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.151,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.152,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.153,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.154,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.155,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.156,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.157,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.158,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.159,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.160,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.161,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.162,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.163,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.164,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.165,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.166,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.167,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.168,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.169,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.170,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.171,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.172,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.173,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.174,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.175,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.176,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.177,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.178,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.179,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.180,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.181,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.182,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.183,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.184,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.185,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.186,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.187,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.188,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.189,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.190,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.191,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.192,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.193,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.194,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.195,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.196,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.197,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.198,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.199,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.200,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.201,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.202,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.203,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.204,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.205,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.206,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.207,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.208,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.209,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.210,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.211,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.212,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.213,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.214,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.215,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.216,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.217,= 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.218,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.1.1,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.1.2,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.1.3,= 3 +.1.3.6.1.4.1.22420.2.1.11.1.1.4,= 4 +.1.3.6.1.4.1.22420.2.1.11.1.1.5,= 5 +.1.3.6.1.4.1.22420.2.1.11.1.1.6,= 6 +.1.3.6.1.4.1.22420.2.1.11.1.1.7,= 7 +.1.3.6.1.4.1.22420.2.1.11.1.1.8,= 8 +.1.3.6.1.4.1.22420.2.1.11.1.1.9,= 9 +.1.3.6.1.4.1.22420.2.1.11.1.1.10,= 10 +.1.3.6.1.4.1.22420.2.1.11.1.1.11,= 11 +.1.3.6.1.4.1.22420.2.1.11.1.1.12,= 12 +.1.3.6.1.4.1.22420.2.1.11.1.1.13,= 13 +.1.3.6.1.4.1.22420.2.1.11.1.1.14,= 14 +.1.3.6.1.4.1.22420.2.1.11.1.1.15,= 15 +.1.3.6.1.4.1.22420.2.1.11.1.1.16,= 16 +.1.3.6.1.4.1.22420.2.1.11.1.1.17,= 17 +.1.3.6.1.4.1.22420.2.1.11.1.1.18,= 18 +.1.3.6.1.4.1.22420.2.1.11.1.1.19,= 19 +.1.3.6.1.4.1.22420.2.1.11.1.1.20,= 20 +.1.3.6.1.4.1.22420.2.1.11.1.1.21,= 21 +.1.3.6.1.4.1.22420.2.1.11.1.1.22,= 22 +.1.3.6.1.4.1.22420.2.1.11.1.1.23,= 23 +.1.3.6.1.4.1.22420.2.1.11.1.1.24,= 24 +.1.3.6.1.4.1.22420.2.1.11.1.1.25,= 25 +.1.3.6.1.4.1.22420.2.1.11.1.1.26,= 26 +.1.3.6.1.4.1.22420.2.1.11.1.1.27,= 27 +.1.3.6.1.4.1.22420.2.1.11.1.1.28,= 28 +.1.3.6.1.4.1.22420.2.1.11.1.1.29,= 29 +.1.3.6.1.4.1.22420.2.1.11.1.1.30,= 30 +.1.3.6.1.4.1.22420.2.1.11.1.1.31,= 31 +.1.3.6.1.4.1.22420.2.1.11.1.1.32,= 32 +.1.3.6.1.4.1.22420.2.1.11.1.1.33,= 33 +.1.3.6.1.4.1.22420.2.1.11.1.1.34,= 34 +.1.3.6.1.4.1.22420.2.1.11.1.1.35,= 35 +.1.3.6.1.4.1.22420.2.1.11.1.1.36,= 36 +.1.3.6.1.4.1.22420.2.1.11.1.1.37,= 37 +.1.3.6.1.4.1.22420.2.1.11.1.1.38,= 38 +.1.3.6.1.4.1.22420.2.1.11.1.1.39,= 39 +.1.3.6.1.4.1.22420.2.1.11.1.1.40,= 40 +.1.3.6.1.4.1.22420.2.1.11.1.1.41,= 41 +.1.3.6.1.4.1.22420.2.1.11.1.1.42,= 42 +.1.3.6.1.4.1.22420.2.1.11.1.1.43,= 43 +.1.3.6.1.4.1.22420.2.1.11.1.1.44,= 44 +.1.3.6.1.4.1.22420.2.1.11.1.1.45,= 45 +.1.3.6.1.4.1.22420.2.1.11.1.1.46,= 46 +.1.3.6.1.4.1.22420.2.1.11.1.1.47,= 47 +.1.3.6.1.4.1.22420.2.1.11.1.1.48,= 48 +.1.3.6.1.4.1.22420.2.1.11.1.1.49,= 49 +.1.3.6.1.4.1.22420.2.1.11.1.1.50,= 50 +.1.3.6.1.4.1.22420.2.1.11.1.1.51,= 51 +.1.3.6.1.4.1.22420.2.1.11.1.1.52,= 52 +.1.3.6.1.4.1.22420.2.1.11.1.1.53,= 53 +.1.3.6.1.4.1.22420.2.1.11.1.1.54,= 54 +.1.3.6.1.4.1.22420.2.1.11.1.1.55,= 55 +.1.3.6.1.4.1.22420.2.1.11.1.1.56,= 56 +.1.3.6.1.4.1.22420.2.1.11.1.1.57,= 57 +.1.3.6.1.4.1.22420.2.1.11.1.1.58,= 58 +.1.3.6.1.4.1.22420.2.1.11.1.1.59,= 59 +.1.3.6.1.4.1.22420.2.1.11.1.1.60,= 60 +.1.3.6.1.4.1.22420.2.1.11.1.1.61,= 61 +.1.3.6.1.4.1.22420.2.1.11.1.1.62,= 62 +.1.3.6.1.4.1.22420.2.1.11.1.1.63,= 63 +.1.3.6.1.4.1.22420.2.1.11.1.1.64,= 64 +.1.3.6.1.4.1.22420.2.1.11.1.1.65,= 65 +.1.3.6.1.4.1.22420.2.1.11.1.1.66,= 66 +.1.3.6.1.4.1.22420.2.1.11.1.1.67,= 67 +.1.3.6.1.4.1.22420.2.1.11.1.1.68,= 68 +.1.3.6.1.4.1.22420.2.1.11.1.1.69,= 69 +.1.3.6.1.4.1.22420.2.1.11.1.1.70,= 70 +.1.3.6.1.4.1.22420.2.1.11.1.1.71,= 71 +.1.3.6.1.4.1.22420.2.1.11.1.1.72,= 72 +.1.3.6.1.4.1.22420.2.1.11.1.1.73,= 73 +.1.3.6.1.4.1.22420.2.1.11.1.1.74,= 74 +.1.3.6.1.4.1.22420.2.1.11.1.1.75,= 75 +.1.3.6.1.4.1.22420.2.1.11.1.1.76,= 76 +.1.3.6.1.4.1.22420.2.1.11.1.1.77,= 77 +.1.3.6.1.4.1.22420.2.1.11.1.1.78,= 78 +.1.3.6.1.4.1.22420.2.1.11.1.1.79,= 79 +.1.3.6.1.4.1.22420.2.1.11.1.1.80,= 80 +.1.3.6.1.4.1.22420.2.1.11.1.1.81,= 81 +.1.3.6.1.4.1.22420.2.1.11.1.1.82,= 82 +.1.3.6.1.4.1.22420.2.1.11.1.1.83,= 83 +.1.3.6.1.4.1.22420.2.1.11.1.1.84,= 84 +.1.3.6.1.4.1.22420.2.1.11.1.1.85,= 85 +.1.3.6.1.4.1.22420.2.1.11.1.1.86,= 86 +.1.3.6.1.4.1.22420.2.1.11.1.1.87,= 87 +.1.3.6.1.4.1.22420.2.1.11.1.1.88,= 88 +.1.3.6.1.4.1.22420.2.1.11.1.1.89,= 89 +.1.3.6.1.4.1.22420.2.1.11.1.1.90,= 90 +.1.3.6.1.4.1.22420.2.1.11.1.1.91,= 91 +.1.3.6.1.4.1.22420.2.1.11.1.1.92,= 92 +.1.3.6.1.4.1.22420.2.1.11.1.1.93,= 93 +.1.3.6.1.4.1.22420.2.1.11.1.1.94,= 94 +.1.3.6.1.4.1.22420.2.1.11.1.1.95,= 95 +.1.3.6.1.4.1.22420.2.1.11.1.1.96,= 96 +.1.3.6.1.4.1.22420.2.1.11.1.1.97,= 97 +.1.3.6.1.4.1.22420.2.1.11.1.1.98,= 98 +.1.3.6.1.4.1.22420.2.1.11.1.1.99,= 99 +.1.3.6.1.4.1.22420.2.1.11.1.1.100,= 100 +.1.3.6.1.4.1.22420.2.1.11.1.1.101,= 101 +.1.3.6.1.4.1.22420.2.1.11.1.1.102,= 102 +.1.3.6.1.4.1.22420.2.1.11.1.1.103,= 103 +.1.3.6.1.4.1.22420.2.1.11.1.1.104,= 104 +.1.3.6.1.4.1.22420.2.1.11.1.1.105,= 105 +.1.3.6.1.4.1.22420.2.1.11.1.1.106,= 106 +.1.3.6.1.4.1.22420.2.1.11.1.1.107,= 107 +.1.3.6.1.4.1.22420.2.1.11.1.1.108,= 108 +.1.3.6.1.4.1.22420.2.1.11.1.1.109,= 109 +.1.3.6.1.4.1.22420.2.1.11.1.1.110,= 110 +.1.3.6.1.4.1.22420.2.1.11.1.1.111,= 111 +.1.3.6.1.4.1.22420.2.1.11.1.1.112,= 112 +.1.3.6.1.4.1.22420.2.1.11.1.1.113,= 113 +.1.3.6.1.4.1.22420.2.1.11.1.1.114,= 114 +.1.3.6.1.4.1.22420.2.1.11.1.1.115,= 115 +.1.3.6.1.4.1.22420.2.1.11.1.1.116,= 116 +.1.3.6.1.4.1.22420.2.1.11.1.1.117,= 117 +.1.3.6.1.4.1.22420.2.1.11.1.1.118,= 118 +.1.3.6.1.4.1.22420.2.1.11.1.1.119,= 119 +.1.3.6.1.4.1.22420.2.1.11.1.1.120,= 120 +.1.3.6.1.4.1.22420.2.1.11.1.1.121,= 121 +.1.3.6.1.4.1.22420.2.1.11.1.1.122,= 122 +.1.3.6.1.4.1.22420.2.1.11.1.1.123,= 123 +.1.3.6.1.4.1.22420.2.1.11.1.1.124,= 124 +.1.3.6.1.4.1.22420.2.1.11.1.1.125,= 125 +.1.3.6.1.4.1.22420.2.1.11.1.1.126,= 126 +.1.3.6.1.4.1.22420.2.1.11.1.1.127,= 127 +.1.3.6.1.4.1.22420.2.1.11.1.1.128,= 128 +.1.3.6.1.4.1.22420.2.1.11.1.1.129,= 129 +.1.3.6.1.4.1.22420.2.1.11.1.1.130,= 130 +.1.3.6.1.4.1.22420.2.1.11.1.1.131,= 131 +.1.3.6.1.4.1.22420.2.1.11.1.1.132,= 132 +.1.3.6.1.4.1.22420.2.1.11.1.1.133,= 133 +.1.3.6.1.4.1.22420.2.1.11.1.1.134,= 134 +.1.3.6.1.4.1.22420.2.1.11.1.1.135,= 135 +.1.3.6.1.4.1.22420.2.1.11.1.1.136,= 136 +.1.3.6.1.4.1.22420.2.1.11.1.1.137,= 137 +.1.3.6.1.4.1.22420.2.1.11.1.1.138,= 138 +.1.3.6.1.4.1.22420.2.1.11.1.1.139,= 139 +.1.3.6.1.4.1.22420.2.1.11.1.1.140,= 140 +.1.3.6.1.4.1.22420.2.1.11.1.1.141,= 141 +.1.3.6.1.4.1.22420.2.1.11.1.1.142,= 142 +.1.3.6.1.4.1.22420.2.1.11.1.1.143,= 143 +.1.3.6.1.4.1.22420.2.1.11.1.1.144,= 144 +.1.3.6.1.4.1.22420.2.1.11.1.1.145,= 145 +.1.3.6.1.4.1.22420.2.1.11.1.1.146,= 146 +.1.3.6.1.4.1.22420.2.1.11.1.1.147,= 147 +.1.3.6.1.4.1.22420.2.1.11.1.1.148,= 148 +.1.3.6.1.4.1.22420.2.1.11.1.1.149,= 149 +.1.3.6.1.4.1.22420.2.1.11.1.1.150,= 150 +.1.3.6.1.4.1.22420.2.1.11.1.1.151,= 151 +.1.3.6.1.4.1.22420.2.1.11.1.1.152,= 152 +.1.3.6.1.4.1.22420.2.1.11.1.1.153,= 153 +.1.3.6.1.4.1.22420.2.1.11.1.1.154,= 154 +.1.3.6.1.4.1.22420.2.1.11.1.1.155,= 155 +.1.3.6.1.4.1.22420.2.1.11.1.1.156,= 156 +.1.3.6.1.4.1.22420.2.1.11.1.1.157,= 157 +.1.3.6.1.4.1.22420.2.1.11.1.1.158,= 158 +.1.3.6.1.4.1.22420.2.1.11.1.1.159,= 159 +.1.3.6.1.4.1.22420.2.1.11.1.1.160,= 160 +.1.3.6.1.4.1.22420.2.1.11.1.1.161,= 161 +.1.3.6.1.4.1.22420.2.1.11.1.1.162,= 162 +.1.3.6.1.4.1.22420.2.1.11.1.1.163,= 163 +.1.3.6.1.4.1.22420.2.1.11.1.1.164,= 164 +.1.3.6.1.4.1.22420.2.1.11.1.1.165,= 165 +.1.3.6.1.4.1.22420.2.1.11.1.1.166,= 166 +.1.3.6.1.4.1.22420.2.1.11.1.1.167,= 167 +.1.3.6.1.4.1.22420.2.1.11.1.1.168,= 168 +.1.3.6.1.4.1.22420.2.1.11.1.1.169,= 169 +.1.3.6.1.4.1.22420.2.1.11.1.1.170,= 170 +.1.3.6.1.4.1.22420.2.1.11.1.1.171,= 171 +.1.3.6.1.4.1.22420.2.1.11.1.1.172,= 172 +.1.3.6.1.4.1.22420.2.1.11.1.1.173,= 173 +.1.3.6.1.4.1.22420.2.1.11.1.1.174,= 174 +.1.3.6.1.4.1.22420.2.1.11.1.1.175,= 175 +.1.3.6.1.4.1.22420.2.1.11.1.1.176,= 176 +.1.3.6.1.4.1.22420.2.1.11.1.1.177,= 177 +.1.3.6.1.4.1.22420.2.1.11.1.1.178,= 178 +.1.3.6.1.4.1.22420.2.1.11.1.1.179,= 179 +.1.3.6.1.4.1.22420.2.1.11.1.1.180,= 180 +.1.3.6.1.4.1.22420.2.1.11.1.1.181,= 181 +.1.3.6.1.4.1.22420.2.1.11.1.1.182,= 182 +.1.3.6.1.4.1.22420.2.1.11.1.1.183,= 183 +.1.3.6.1.4.1.22420.2.1.11.1.1.184,= 184 +.1.3.6.1.4.1.22420.2.1.11.1.1.185,= 185 +.1.3.6.1.4.1.22420.2.1.11.1.1.186,= 186 +.1.3.6.1.4.1.22420.2.1.11.1.1.187,= 187 +.1.3.6.1.4.1.22420.2.1.11.1.1.188,= 188 +.1.3.6.1.4.1.22420.2.1.11.1.1.189,= 189 +.1.3.6.1.4.1.22420.2.1.11.1.1.190,= 190 +.1.3.6.1.4.1.22420.2.1.11.1.1.191,= 191 +.1.3.6.1.4.1.22420.2.1.11.1.1.192,= 192 +.1.3.6.1.4.1.22420.2.1.11.1.1.193,= 193 +.1.3.6.1.4.1.22420.2.1.11.1.1.194,= 194 +.1.3.6.1.4.1.22420.2.1.11.1.1.195,= 195 +.1.3.6.1.4.1.22420.2.1.11.1.1.196,= 196 +.1.3.6.1.4.1.22420.2.1.11.1.1.197,= 197 +.1.3.6.1.4.1.22420.2.1.11.1.1.198,= 198 +.1.3.6.1.4.1.22420.2.1.11.1.1.199,= 199 +.1.3.6.1.4.1.22420.2.1.11.1.1.200,= 200 +.1.3.6.1.4.1.22420.2.1.11.1.1.201,= 201 +.1.3.6.1.4.1.22420.2.1.11.1.1.202,= 202 +.1.3.6.1.4.1.22420.2.1.11.1.1.203,= 203 +.1.3.6.1.4.1.22420.2.1.11.1.1.204,= 204 +.1.3.6.1.4.1.22420.2.1.11.1.1.205,= 205 +.1.3.6.1.4.1.22420.2.1.11.1.1.206,= 206 +.1.3.6.1.4.1.22420.2.1.11.1.1.207,= 207 +.1.3.6.1.4.1.22420.2.1.11.1.1.208,= 208 +.1.3.6.1.4.1.22420.2.1.11.1.1.209,= 209 +.1.3.6.1.4.1.22420.2.1.11.1.1.210,= 210 +.1.3.6.1.4.1.22420.2.1.11.1.1.211,= 211 +.1.3.6.1.4.1.22420.2.1.11.1.1.212,= 212 +.1.3.6.1.4.1.22420.2.1.11.1.1.213,= 213 +.1.3.6.1.4.1.22420.2.1.11.1.1.214,= 214 +.1.3.6.1.4.1.22420.2.1.11.1.1.215,= 215 +.1.3.6.1.4.1.22420.2.1.11.1.1.216,= 216 +.1.3.6.1.4.1.22420.2.1.11.1.1.217,= 217 +.1.3.6.1.4.1.22420.2.1.11.1.1.218,= 218 +.1.3.6.1.4.1.22420.2.1.11.1.2.1,= 8000001 +.1.3.6.1.4.1.22420.2.1.11.1.2.2,= 8000002 +.1.3.6.1.4.1.22420.2.1.11.1.2.3,= 8000004 +.1.3.6.1.4.1.22420.2.1.11.1.2.4,= 8000005 +.1.3.6.1.4.1.22420.2.1.11.1.2.5,= 8000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.6,= 8000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.7,= 8000040 +.1.3.6.1.4.1.22420.2.1.11.1.2.8,= 8000041 +.1.3.6.1.4.1.22420.2.1.11.1.2.9,= 8000140 +.1.3.6.1.4.1.22420.2.1.11.1.2.10,= 8000141 +.1.3.6.1.4.1.22420.2.1.11.1.2.11,= 2000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.12,= 2000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.13,= 2000103 +.1.3.6.1.4.1.22420.2.1.11.1.2.14,= 2000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.15,= 2000105 +.1.3.6.1.4.1.22420.2.1.11.1.2.16,= 2000106 +.1.3.6.1.4.1.22420.2.1.11.1.2.17,= 2000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.18,= 2000108 +.1.3.6.1.4.1.22420.2.1.11.1.2.19,= 2000109 +.1.3.6.1.4.1.22420.2.1.11.1.2.20,= 2000110 +.1.3.6.1.4.1.22420.2.1.11.1.2.21,= 2000111 +.1.3.6.1.4.1.22420.2.1.11.1.2.22,= 2000112 +.1.3.6.1.4.1.22420.2.1.11.1.2.23,= 2000113 +.1.3.6.1.4.1.22420.2.1.11.1.2.24,= 2000114 +.1.3.6.1.4.1.22420.2.1.11.1.2.25,= 2000115 +.1.3.6.1.4.1.22420.2.1.11.1.2.26,= 2000116 +.1.3.6.1.4.1.22420.2.1.11.1.2.27,= 2000117 +.1.3.6.1.4.1.22420.2.1.11.1.2.28,= 2000118 +.1.3.6.1.4.1.22420.2.1.11.1.2.29,= 2000119 +.1.3.6.1.4.1.22420.2.1.11.1.2.30,= 2000120 +.1.3.6.1.4.1.22420.2.1.11.1.2.31,= 2000121 +.1.3.6.1.4.1.22420.2.1.11.1.2.32,= 2000201 +.1.3.6.1.4.1.22420.2.1.11.1.2.33,= 2000202 +.1.3.6.1.4.1.22420.2.1.11.1.2.34,= 2000203 +.1.3.6.1.4.1.22420.2.1.11.1.2.35,= 2000204 +.1.3.6.1.4.1.22420.2.1.11.1.2.36,= 2000205 +.1.3.6.1.4.1.22420.2.1.11.1.2.37,= 2000206 +.1.3.6.1.4.1.22420.2.1.11.1.2.38,= 2000207 +.1.3.6.1.4.1.22420.2.1.11.1.2.39,= 2000208 +.1.3.6.1.4.1.22420.2.1.11.1.2.40,= 2000209 +.1.3.6.1.4.1.22420.2.1.11.1.2.41,= 2000210 +.1.3.6.1.4.1.22420.2.1.11.1.2.42,= 2000211 +.1.3.6.1.4.1.22420.2.1.11.1.2.43,= 2000212 +.1.3.6.1.4.1.22420.2.1.11.1.2.44,= 2000213 +.1.3.6.1.4.1.22420.2.1.11.1.2.45,= 2000214 +.1.3.6.1.4.1.22420.2.1.11.1.2.46,= 2000215 +.1.3.6.1.4.1.22420.2.1.11.1.2.47,= 2000216 +.1.3.6.1.4.1.22420.2.1.11.1.2.48,= 2000217 +.1.3.6.1.4.1.22420.2.1.11.1.2.49,= 2000218 +.1.3.6.1.4.1.22420.2.1.11.1.2.50,= 2000219 +.1.3.6.1.4.1.22420.2.1.11.1.2.51,= 2000220 +.1.3.6.1.4.1.22420.2.1.11.1.2.52,= 2000221 +.1.3.6.1.4.1.22420.2.1.11.1.2.53,= 2000301 +.1.3.6.1.4.1.22420.2.1.11.1.2.54,= 2000302 +.1.3.6.1.4.1.22420.2.1.11.1.2.55,= 2000303 +.1.3.6.1.4.1.22420.2.1.11.1.2.56,= 2000304 +.1.3.6.1.4.1.22420.2.1.11.1.2.57,= 2000305 +.1.3.6.1.4.1.22420.2.1.11.1.2.58,= 2000306 +.1.3.6.1.4.1.22420.2.1.11.1.2.59,= 2000307 +.1.3.6.1.4.1.22420.2.1.11.1.2.60,= 2000308 +.1.3.6.1.4.1.22420.2.1.11.1.2.61,= 2000309 +.1.3.6.1.4.1.22420.2.1.11.1.2.62,= 2000310 +.1.3.6.1.4.1.22420.2.1.11.1.2.63,= 2000311 +.1.3.6.1.4.1.22420.2.1.11.1.2.64,= 2000312 +.1.3.6.1.4.1.22420.2.1.11.1.2.65,= 2000313 +.1.3.6.1.4.1.22420.2.1.11.1.2.66,= 2000314 +.1.3.6.1.4.1.22420.2.1.11.1.2.67,= 2000315 +.1.3.6.1.4.1.22420.2.1.11.1.2.68,= 2000316 +.1.3.6.1.4.1.22420.2.1.11.1.2.69,= 2000317 +.1.3.6.1.4.1.22420.2.1.11.1.2.70,= 2000318 +.1.3.6.1.4.1.22420.2.1.11.1.2.71,= 2000319 +.1.3.6.1.4.1.22420.2.1.11.1.2.72,= 2000320 +.1.3.6.1.4.1.22420.2.1.11.1.2.73,= 2000321 +.1.3.6.1.4.1.22420.2.1.11.1.2.74,= 2000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.75,= 2000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.76,= 2000403 +.1.3.6.1.4.1.22420.2.1.11.1.2.77,= 2000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.78,= 2000405 +.1.3.6.1.4.1.22420.2.1.11.1.2.79,= 2000406 +.1.3.6.1.4.1.22420.2.1.11.1.2.80,= 2000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.81,= 2000408 +.1.3.6.1.4.1.22420.2.1.11.1.2.82,= 2000409 +.1.3.6.1.4.1.22420.2.1.11.1.2.83,= 2000410 +.1.3.6.1.4.1.22420.2.1.11.1.2.84,= 2000411 +.1.3.6.1.4.1.22420.2.1.11.1.2.85,= 2000412 +.1.3.6.1.4.1.22420.2.1.11.1.2.86,= 2000413 +.1.3.6.1.4.1.22420.2.1.11.1.2.87,= 2000414 +.1.3.6.1.4.1.22420.2.1.11.1.2.88,= 2000415 +.1.3.6.1.4.1.22420.2.1.11.1.2.89,= 2000416 +.1.3.6.1.4.1.22420.2.1.11.1.2.90,= 2000417 +.1.3.6.1.4.1.22420.2.1.11.1.2.91,= 2000418 +.1.3.6.1.4.1.22420.2.1.11.1.2.92,= 2000419 +.1.3.6.1.4.1.22420.2.1.11.1.2.93,= 2000420 +.1.3.6.1.4.1.22420.2.1.11.1.2.94,= 2000421 +.1.3.6.1.4.1.22420.2.1.11.1.2.95,= 1000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.96,= 1000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.97,= 1000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.98,= 1000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.99,= 1000201 +.1.3.6.1.4.1.22420.2.1.11.1.2.100,= 1000202 +.1.3.6.1.4.1.22420.2.1.11.1.2.101,= 1000204 +.1.3.6.1.4.1.22420.2.1.11.1.2.102,= 1000207 +.1.3.6.1.4.1.22420.2.1.11.1.2.103,= 1000301 +.1.3.6.1.4.1.22420.2.1.11.1.2.104,= 1000302 +.1.3.6.1.4.1.22420.2.1.11.1.2.105,= 1000304 +.1.3.6.1.4.1.22420.2.1.11.1.2.106,= 1000307 +.1.3.6.1.4.1.22420.2.1.11.1.2.107,= 1000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.108,= 1000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.109,= 1000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.110,= 1000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.111,= 1000501 +.1.3.6.1.4.1.22420.2.1.11.1.2.112,= 1000601 +.1.3.6.1.4.1.22420.2.1.11.1.2.113,= 1000602 +.1.3.6.1.4.1.22420.2.1.11.1.2.114,= 1000604 +.1.3.6.1.4.1.22420.2.1.11.1.2.115,= 1000603 +.1.3.6.1.4.1.22420.2.1.11.1.2.116,= 1000701 +.1.3.6.1.4.1.22420.2.1.11.1.2.117,= 1000702 +.1.3.6.1.4.1.22420.2.1.11.1.2.118,= 1000704 +.1.3.6.1.4.1.22420.2.1.11.1.2.119,= 1000703 +.1.3.6.1.4.1.22420.2.1.11.1.2.120,= 8000006 +.1.3.6.1.4.1.22420.2.1.11.1.2.121,= 8000007 +.1.3.6.1.4.1.22420.2.1.11.1.2.122,= 8000080 +.1.3.6.1.4.1.22420.2.1.11.1.2.123,= 7000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.124,= 7000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.125,= 7000106 +.1.3.6.1.4.1.22420.2.1.11.1.2.126,= 7000108 +.1.3.6.1.4.1.22420.2.1.11.1.2.127,= 7000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.128,= 7000105 +.1.3.6.1.4.1.22420.2.1.11.1.2.129,= 7000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.130,= 18000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.131,= 18000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.132,= 3000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.133,= 3000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.134,= 3000103 +.1.3.6.1.4.1.22420.2.1.11.1.2.135,= 3000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.136,= 3000105 +.1.3.6.1.4.1.22420.2.1.11.1.2.137,= 3000106 +.1.3.6.1.4.1.22420.2.1.11.1.2.138,= 3000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.139,= 3000108 +.1.3.6.1.4.1.22420.2.1.11.1.2.140,= 3000109 +.1.3.6.1.4.1.22420.2.1.11.1.2.141,= 3000110 +.1.3.6.1.4.1.22420.2.1.11.1.2.142,= 3000111 +.1.3.6.1.4.1.22420.2.1.11.1.2.143,= 3000112 +.1.3.6.1.4.1.22420.2.1.11.1.2.144,= 3000113 +.1.3.6.1.4.1.22420.2.1.11.1.2.145,= 3000114 +.1.3.6.1.4.1.22420.2.1.11.1.2.146,= 3000115 +.1.3.6.1.4.1.22420.2.1.11.1.2.147,= 3000201 +.1.3.6.1.4.1.22420.2.1.11.1.2.148,= 3000202 +.1.3.6.1.4.1.22420.2.1.11.1.2.149,= 3000203 +.1.3.6.1.4.1.22420.2.1.11.1.2.150,= 3000204 +.1.3.6.1.4.1.22420.2.1.11.1.2.151,= 3000205 +.1.3.6.1.4.1.22420.2.1.11.1.2.152,= 3000206 +.1.3.6.1.4.1.22420.2.1.11.1.2.153,= 3000207 +.1.3.6.1.4.1.22420.2.1.11.1.2.154,= 3000208 +.1.3.6.1.4.1.22420.2.1.11.1.2.155,= 3000209 +.1.3.6.1.4.1.22420.2.1.11.1.2.156,= 3000210 +.1.3.6.1.4.1.22420.2.1.11.1.2.157,= 3000211 +.1.3.6.1.4.1.22420.2.1.11.1.2.158,= 3000212 +.1.3.6.1.4.1.22420.2.1.11.1.2.159,= 3000213 +.1.3.6.1.4.1.22420.2.1.11.1.2.160,= 3000214 +.1.3.6.1.4.1.22420.2.1.11.1.2.161,= 3000215 +.1.3.6.1.4.1.22420.2.1.11.1.2.162,= 3000301 +.1.3.6.1.4.1.22420.2.1.11.1.2.163,= 3000302 +.1.3.6.1.4.1.22420.2.1.11.1.2.164,= 3000303 +.1.3.6.1.4.1.22420.2.1.11.1.2.165,= 3000304 +.1.3.6.1.4.1.22420.2.1.11.1.2.166,= 3000305 +.1.3.6.1.4.1.22420.2.1.11.1.2.167,= 3000306 +.1.3.6.1.4.1.22420.2.1.11.1.2.168,= 3000307 +.1.3.6.1.4.1.22420.2.1.11.1.2.169,= 3000308 +.1.3.6.1.4.1.22420.2.1.11.1.2.170,= 3000309 +.1.3.6.1.4.1.22420.2.1.11.1.2.171,= 3000310 +.1.3.6.1.4.1.22420.2.1.11.1.2.172,= 3000311 +.1.3.6.1.4.1.22420.2.1.11.1.2.173,= 3000312 +.1.3.6.1.4.1.22420.2.1.11.1.2.174,= 3000313 +.1.3.6.1.4.1.22420.2.1.11.1.2.175,= 3000314 +.1.3.6.1.4.1.22420.2.1.11.1.2.176,= 3000315 +.1.3.6.1.4.1.22420.2.1.11.1.2.177,= 3000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.178,= 3000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.179,= 3000403 +.1.3.6.1.4.1.22420.2.1.11.1.2.180,= 3000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.181,= 3000405 +.1.3.6.1.4.1.22420.2.1.11.1.2.182,= 3000406 +.1.3.6.1.4.1.22420.2.1.11.1.2.183,= 3000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.184,= 3000408 +.1.3.6.1.4.1.22420.2.1.11.1.2.185,= 3000409 +.1.3.6.1.4.1.22420.2.1.11.1.2.186,= 3000410 +.1.3.6.1.4.1.22420.2.1.11.1.2.187,= 3000411 +.1.3.6.1.4.1.22420.2.1.11.1.2.188,= 3000412 +.1.3.6.1.4.1.22420.2.1.11.1.2.189,= 3000413 +.1.3.6.1.4.1.22420.2.1.11.1.2.190,= 3000414 +.1.3.6.1.4.1.22420.2.1.11.1.2.191,= 3000415 +.1.3.6.1.4.1.22420.2.1.11.1.2.192,= 7000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.193,= 7000412 +.1.3.6.1.4.1.22420.2.1.11.1.2.194,= 7000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.195,= 7000411 +.1.3.6.1.4.1.22420.2.1.11.1.2.196,= 7000403 +.1.3.6.1.4.1.22420.2.1.11.1.2.197,= 7000410 +.1.3.6.1.4.1.22420.2.1.11.1.2.198,= 7000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.199,= 7000414 +.1.3.6.1.4.1.22420.2.1.11.1.2.200,= 7000406 +.1.3.6.1.4.1.22420.2.1.11.1.2.201,= 7000413 +.1.3.6.1.4.1.22420.2.1.11.1.2.202,= 7000405 +.1.3.6.1.4.1.22420.2.1.11.1.2.203,= 7000417 +.1.3.6.1.4.1.22420.2.1.11.1.2.204,= 7000409 +.1.3.6.1.4.1.22420.2.1.11.1.2.205,= 7000415 +.1.3.6.1.4.1.22420.2.1.11.1.2.206,= 7000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.207,= 7000416 +.1.3.6.1.4.1.22420.2.1.11.1.2.208,= 7000408 +.1.3.6.1.4.1.22420.2.1.11.1.2.209,= 7000421 +.1.3.6.1.4.1.22420.2.1.11.1.2.210,= 7000420 +.1.3.6.1.4.1.22420.2.1.11.1.2.211,= 7000423 +.1.3.6.1.4.1.22420.2.1.11.1.2.212,= 7000422 +.1.3.6.1.4.1.22420.2.1.11.1.2.213,= 7000425 +.1.3.6.1.4.1.22420.2.1.11.1.2.214,= 7000424 +.1.3.6.1.4.1.22420.2.1.11.1.2.215,= 7000428 +.1.3.6.1.4.1.22420.2.1.11.1.2.216,= 7000429 +.1.3.6.1.4.1.22420.2.1.11.1.2.217,= 19000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.218,= 19000102 +.1.3.6.1.4.1.22420.2.1.11.1.3.1,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.2,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.3,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.4,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.5,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.6,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.7,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.8,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.9,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.10,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.11,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.12,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.13,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.14,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.15,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.16,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.17,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.18,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.19,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.20,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.21,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.22,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.23,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.24,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.25,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.26,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.27,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.28,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.29,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.30,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.31,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.32,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.33,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.34,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.35,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.36,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.37,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.38,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.39,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.40,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.41,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.42,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.43,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.44,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.45,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.46,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.47,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.48,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.49,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.50,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.51,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.52,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.53,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.54,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.55,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.56,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.57,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.58,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.59,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.60,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.61,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.62,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.63,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.64,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.65,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.66,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.67,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.68,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.69,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.70,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.71,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.72,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.73,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.74,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.75,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.76,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.77,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.78,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.79,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.80,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.81,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.82,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.83,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.84,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.85,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.86,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.87,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.88,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.89,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.90,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.91,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.92,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.93,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.94,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.95,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.96,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.97,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.98,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.99,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.100,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.101,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.102,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.103,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.104,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.105,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.106,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.107,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.108,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.109,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.110,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.111,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.112,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.113,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.114,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.115,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.116,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.117,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.118,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.119,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.120,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.121,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.122,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.123,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.124,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.125,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.126,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.127,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.128,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.129,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.130,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.131,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.132,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.133,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.134,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.135,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.136,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.137,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.138,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.139,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.140,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.141,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.142,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.143,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.144,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.145,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.146,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.147,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.148,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.149,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.150,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.151,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.152,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.153,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.154,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.155,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.156,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.157,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.158,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.159,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.160,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.161,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.162,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.163,= 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.164,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.165,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.166,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.167,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.168,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.169,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.170,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.171,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.172,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.173,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.174,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.175,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.176,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.177,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.178,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.179,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.180,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.181,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.182,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.183,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.184,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.185,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.186,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.187,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.188,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.189,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.190,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.191,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.192,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.193,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.194,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.195,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.196,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.197,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.198,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.199,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.200,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.201,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.202,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.203,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.204,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.205,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.206,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.207,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.208,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.209,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.210,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.211,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.212,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.213,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.214,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.215,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.216,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.217,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.218,= 2 +.1.3.6.1.4.1.22420.2.1.11.1.4.1,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.2,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.3,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.4,"= ""07 B2 06 16 16 1D 07 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.5,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.6,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.7,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.8,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.9,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.10,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.11,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.12,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.13,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.14,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.15,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.16,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.17,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.18,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.19,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.20,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.21,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.22,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.23,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.24,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.25,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.26,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.27,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.28,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.29,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.30,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.31,"= ""07 B4 0A 0F 11 35 3A 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.32,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.33,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.34,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.35,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.36,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.37,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.38,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.39,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.40,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.41,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.42,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.43,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.44,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.45,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.46,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.47,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.48,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.49,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.50,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.51,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.52,"= ""07 B4 0A 0F 13 03 07 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.53,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.54,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.55,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.56,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.57,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.58,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.59,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.60,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.61,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.62,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.63,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.64,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.65,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.66,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.67,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.68,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.69,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.70,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.71,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.72,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.73,"= ""07 B4 0A 0F 13 03 0B 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.74,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.75,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.76,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.77,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.78,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.79,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.80,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.81,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.82,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.83,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.84,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.85,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.86,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.87,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.88,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.89,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.90,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.91,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.92,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.93,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.94,"= ""07 B4 09 1A 13 0F 06 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.95,"= ""07 B5 01 18 12 07 19 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.96,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.97,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.98,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.99,"= ""07 B3 0C 1D 0D 1C 33 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.100,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.101,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.102,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.103,"= ""07 B4 0B 15 14 0A 2F 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.104,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.105,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.106,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.107,"= ""07 B4 09 1A 13 0E 23 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.108,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.109,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.110,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.111,"= ""07 B5 03 07 14 36 0F 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.112,"= ""07 B2 06 16 16 1D 0F 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.113,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.114,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.115,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.116,"= ""07 B2 06 16 16 1D 0F 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.117,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.118,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.119,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.120,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.121,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.122,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.123,"= ""07 B2 06 16 16 1F 23 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.124,"= ""07 B2 06 16 16 1D 15 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.125,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.126,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.127,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.128,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.129,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.130,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.131,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.132,"= ""07 B2 06 16 16 1D 25 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.133,"= ""07 B2 06 16 16 1D 26 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.134,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.135,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.136,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.137,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.138,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.139,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.140,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.141,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.142,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.143,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.144,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.145,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.146,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.147,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.148,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.149,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.150,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.151,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.152,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.153,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.154,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.155,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.156,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.157,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.158,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.159,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.160,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.161,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.162,"= ""07 B2 06 16 16 1D 25 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.163,"= ""07 B2 06 16 16 1D 26 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.164,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.165,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.166,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.167,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.168,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.169,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.170,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.171,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.172,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.173,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.174,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.175,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.176,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.177,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.178,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.179,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.180,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.181,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.182,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.183,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.184,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.185,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.186,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.187,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.188,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.189,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.190,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.191,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.192,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.193,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.194,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.195,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.196,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.197,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.198,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.199,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.200,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.201,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.202,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.203,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.204,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.205,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.206,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.207,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.208,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.209,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.210,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.211,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.212,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.213,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.214,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.215,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.216,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.217,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.4.218,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.1.11.1.5.1,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.2,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.3,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.4,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.5,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.6,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.7,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.8,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.9,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.10,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.11,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.12,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.13,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.14,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.15,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.16,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.17,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.18,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.19,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.20,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.21,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.22,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.23,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.24,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.25,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.26,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.27,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.28,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.29,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.30,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.31,"= ""was inserted.""" +.1.3.6.1.4.1.22420.2.1.11.1.5.32,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.33,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.34,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.35,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.36,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.37,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.38,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.39,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.40,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.41,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.42,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.43,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.44,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.45,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.46,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.47,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.48,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.49,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.50,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.51,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.52,"= ""was removed.""" +.1.3.6.1.4.1.22420.2.1.11.1.5.53,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.54,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.55,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.56,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.57,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.58,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.59,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.60,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.61,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.62,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.63,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.64,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.65,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.66,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.67,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.68,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.69,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.70,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.71,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.72,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.73,"= ""was inserted.""" +.1.3.6.1.4.1.22420.2.1.11.1.5.74,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.75,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.76,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.77,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.78,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.79,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.80,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.81,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.82,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.83,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.84,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.85,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.86,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.87,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.88,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.89,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.90,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.91,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.92,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.93,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.94,"= ""was removed.""" +.1.3.6.1.4.1.22420.2.1.11.1.5.95,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.96,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.97,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.98,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.99,"= ""went down""" +.1.3.6.1.4.1.22420.2.1.11.1.5.100,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.101,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.102,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.103,"= ""went down""" +.1.3.6.1.4.1.22420.2.1.11.1.5.104,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.105,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.106,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.107,"= ""went down""" +.1.3.6.1.4.1.22420.2.1.11.1.5.108,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.109,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.110,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.111,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.112,"= ""went down""" +.1.3.6.1.4.1.22420.2.1.11.1.5.113,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.114,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.115,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.116,"= ""went down""" +.1.3.6.1.4.1.22420.2.1.11.1.5.117,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.118,"= ""went up""" +.1.3.6.1.4.1.22420.2.1.11.1.5.119,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.120,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.121,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.122,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.123,"= ""Lost contact, server 10.10.20.""" +.1.3.6.1.4.1.22420.2.1.11.1.5.124,"= ""NTP lost time-of-day sync""" +.1.3.6.1.4.1.22420.2.1.11.1.5.125,"= ""Use intf with HW timestamp""" +.1.3.6.1.4.1.22420.2.1.11.1.5.126,"= ""Use intf with HW timestamp""" +.1.3.6.1.4.1.22420.2.1.11.1.5.127,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.128,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.129,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.130,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.131,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.132,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.133,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.134,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.135,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.136,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.137,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.138,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.139,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.140,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.141,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.142,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.143,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.144,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.145,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.146,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.147,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.148,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.149,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.150,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.151,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.152,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.153,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.154,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.155,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.156,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.157,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.158,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.159,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.160,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.161,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.162,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.163,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.164,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.165,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.166,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.167,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.168,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.169,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.170,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.171,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.172,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.173,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.174,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.175,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.176,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.177,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.178,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.179,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.180,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.181,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.182,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.183,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.184,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.185,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.186,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.187,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.188,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.189,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.190,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.191,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.192,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.193,"= ""Buffer not full for PAA""" +.1.3.6.1.4.1.22420.2.1.11.1.5.194,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.195,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.196,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.197,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.198,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.199,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.200,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.201,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.202,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.203,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.204,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.205,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.206,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.207,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.208,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.209,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.210,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.211,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.212,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.213,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.214,"= ""All instances are collected""" +.1.3.6.1.4.1.22420.2.1.11.1.5.215,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.216,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.217,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.5.218,"= """"" +.1.3.6.1.4.1.22420.2.1.11.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.8,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.9,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.10,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.11,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.12,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.13,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.14,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.15,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.16,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.17,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.18,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.19,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.20,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.21,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.22,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.23,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.24,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.25,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.26,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.27,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.28,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.29,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.30,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.31,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.32,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.33,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.34,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.35,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.36,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.37,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.38,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.39,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.40,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.41,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.42,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.43,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.44,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.45,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.46,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.47,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.48,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.49,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.50,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.51,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.52,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.53,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.54,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.55,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.56,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.57,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.58,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.59,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.60,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.61,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.62,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.63,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.64,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.65,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.66,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.67,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.68,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.69,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.70,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.71,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.72,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.73,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.74,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.75,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.76,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.77,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.78,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.79,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.80,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.81,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.82,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.83,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.84,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.85,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.86,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.87,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.88,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.89,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.90,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.91,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.92,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.93,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.94,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.95,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.96,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.97,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.98,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.99,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.100,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.101,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.102,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.103,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.104,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.105,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.106,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.107,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.108,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.109,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.110,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.111,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.112,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.113,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.114,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.115,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.116,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.117,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.118,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.119,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.120,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.121,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.122,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.123,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.124,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.125,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.126,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.127,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.128,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.129,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.130,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.131,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.132,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.133,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.134,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.135,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.136,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.137,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.138,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.139,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.140,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.141,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.142,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.143,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.144,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.145,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.146,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.147,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.148,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.149,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.150,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.151,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.152,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.153,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.154,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.155,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.156,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.157,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.158,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.159,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.160,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.161,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.162,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.163,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.164,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.165,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.166,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.167,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.168,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.169,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.170,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.171,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.172,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.173,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.174,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.175,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.176,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.177,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.178,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.179,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.180,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.181,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.182,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.183,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.184,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.185,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.186,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.187,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.188,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.189,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.190,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.191,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.192,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.193,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.194,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.195,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.196,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.197,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.198,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.199,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.200,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.201,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.202,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.203,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.204,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.205,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.206,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.207,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.208,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.209,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.210,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.211,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.212,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.213,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.214,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.215,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.216,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.217,= 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.218,= 0 +.1.3.6.1.4.1.22420.2.1.15.4.1.0,= 247 +.1.3.6.1.4.1.22420.2.1.15.4.2.0,= 101 +.1.3.6.1.4.1.22420.2.2.1.1.1.1,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.1.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.1.3,= 3 +.1.3.6.1.4.1.22420.2.2.1.1.1.4,= 4 +.1.3.6.1.4.1.22420.2.2.1.1.1.5,= 5 +.1.3.6.1.4.1.22420.2.2.1.1.1.6,= 6 +.1.3.6.1.4.1.22420.2.2.1.1.1.7,= 7 +.1.3.6.1.4.1.22420.2.2.1.1.1.8,= 8 +.1.3.6.1.4.1.22420.2.2.1.1.1.9,= 9 +.1.3.6.1.4.1.22420.2.2.1.1.1.10,= 10 +.1.3.6.1.4.1.22420.2.2.1.1.1.11,= 11 +.1.3.6.1.4.1.22420.2.2.1.1.1.12,= 12 +.1.3.6.1.4.1.22420.2.2.1.1.1.13,= 13 +.1.3.6.1.4.1.22420.2.2.1.1.1.14,= 14 +.1.3.6.1.4.1.22420.2.2.1.1.1.15,= 15 +.1.3.6.1.4.1.22420.2.2.1.1.1.16,= 16 +.1.3.6.1.4.1.22420.2.2.1.1.1.17,= 17 +.1.3.6.1.4.1.22420.2.2.1.1.1.18,= 18 +.1.3.6.1.4.1.22420.2.2.1.1.1.19,= 19 +.1.3.6.1.4.1.22420.2.2.1.1.1.20,= 20 +.1.3.6.1.4.1.22420.2.2.1.1.1.21,= 21 +.1.3.6.1.4.1.22420.2.2.1.1.1.22,= 22 +.1.3.6.1.4.1.22420.2.2.1.1.1.23,= 23 +.1.3.6.1.4.1.22420.2.2.1.1.1.24,= 24 +.1.3.6.1.4.1.22420.2.2.1.1.1.25,= 25 +.1.3.6.1.4.1.22420.2.2.1.1.1.26,= 26 +.1.3.6.1.4.1.22420.2.2.1.1.1.27,= 27 +.1.3.6.1.4.1.22420.2.2.1.1.2.1,"= ""*default""" +.1.3.6.1.4.1.22420.2.2.1.1.2.2,"= ""PAA-Discovery""" +.1.3.6.1.4.1.22420.2.2.1.1.2.3,"= ""MTSOMAC_SRC""" +.1.3.6.1.4.1.22420.2.2.1.1.2.4,"= ""MTSOMAC_DST""" +.1.3.6.1.4.1.22420.2.2.1.1.2.5,"= ""SVLAN_2216""" +.1.3.6.1.4.1.22420.2.2.1.1.2.6,"= ""catchAll""" +.1.3.6.1.4.1.22420.2.2.1.1.2.7,"= ""ieeeBPDU""" +.1.3.6.1.4.1.22420.2.2.1.1.2.8,"= ""ciscoBPDU""" +.1.3.6.1.4.1.22420.2.2.1.1.2.9,"= ""macDst""" +.1.3.6.1.4.1.22420.2.2.1.1.2.10,"= ""macSrc""" +.1.3.6.1.4.1.22420.2.2.1.1.2.11,"= ""frameType""" +.1.3.6.1.4.1.22420.2.2.1.1.2.12,"= ""firstVlanId""" +.1.3.6.1.4.1.22420.2.2.1.1.2.13,"= ""firstVlanPrior""" +.1.3.6.1.4.1.22420.2.2.1.1.2.14,"= ""firstVlanCfi""" +.1.3.6.1.4.1.22420.2.2.1.1.2.15,"= ""secondVlanId""" +.1.3.6.1.4.1.22420.2.2.1.1.2.16,"= ""secondVlanPrior""" +.1.3.6.1.4.1.22420.2.2.1.1.2.17,"= ""secondVlanCfi""" +.1.3.6.1.4.1.22420.2.2.1.1.2.18,"= ""SVLAN_2217""" +.1.3.6.1.4.1.22420.2.2.1.1.2.19,"= ""VLAN_2573""" +.1.3.6.1.4.1.22420.2.2.1.1.2.20,"= ""VLAN_3573""" +.1.3.6.1.4.1.22420.2.2.1.1.2.21,"= ""rvResortMAC_DST""" +.1.3.6.1.4.1.22420.2.2.1.1.2.22,"= ""rvResortMAC_SRC""" +.1.3.6.1.4.1.22420.2.2.1.1.2.23,"= ""SVLAN_2218""" +.1.3.6.1.4.1.22420.2.2.1.1.2.24,"= ""SVLAN_2219""" +.1.3.6.1.4.1.22420.2.2.1.1.2.25,"= ""SVLAN_2220""" +.1.3.6.1.4.1.22420.2.2.1.1.2.26,"= ""SVLAN_2221""" +.1.3.6.1.4.1.22420.2.2.1.1.2.27,"= ""CVLAN_3999""" +.1.3.6.1.4.1.22420.2.2.1.1.3.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.2,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.4,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.7,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.8,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.9,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.21,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.4.1,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.2,"= ""FF FF FF FF FF FF """ +.1.3.6.1.4.1.22420.2.2.1.1.4.3,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.4,"= ""00 23 3E 82 15 73 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.5,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.6,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.7,"= ""01 80 C2 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.8,"= ""01 00 0C CC CC CD """ +.1.3.6.1.4.1.22420.2.2.1.1.4.9,"= ""00 15 AD 01 01 01 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.10,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.11,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.12,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.13,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.14,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.15,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.16,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.17,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.18,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.19,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.20,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.21,"= ""50 40 61 85 DE 68 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.22,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.23,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.24,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.25,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.26,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.4.27,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.5.1,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.2,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.3,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.4,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.5,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.6,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.7,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.8,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.9,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.10,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.11,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.12,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.13,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.14,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.15,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.16,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.17,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.18,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.19,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.20,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.21,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.22,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.23,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.24,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.25,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.26,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.27,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.6.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.3,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.6.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.10,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.6.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.22,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.6.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.7.1,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.2,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.3,"= ""00 23 3E 82 15 73 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.4,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.5,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.6,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.7,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.8,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.9,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.10,"= ""00 15 AD 01 01 01 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.11,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.12,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.13,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.14,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.15,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.16,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.17,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.18,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.19,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.20,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.21,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.22,"= ""50 40 61 85 DE 68 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.23,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.24,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.25,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.26,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.7.27,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.1.1.8.1,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.2,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.3,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.4,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.5,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.6,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.7,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.8,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.9,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.10,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.11,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.12,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.13,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.14,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.15,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.16,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.17,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.18,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.19,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.20,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.21,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.22,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.23,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.24,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.25,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.26,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.27,= 48 +.1.3.6.1.4.1.22420.2.2.1.1.9.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.2,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.9.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.11,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.9.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.2,= 35068 +.1.3.6.1.4.1.22420.2.2.1.1.10.3,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.4,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.5,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.11,= 36864 +.1.3.6.1.4.1.22420.2.2.1.1.10.12,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.13,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.14,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.15,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.16,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.17,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.18,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.19,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.20,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.21,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.22,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.23,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.24,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.25,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.26,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.27,= 2048 +.1.3.6.1.4.1.22420.2.2.1.1.11.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.13,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.11.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.12.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.3,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.5,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.11,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.12,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.13,= 5 +.1.3.6.1.4.1.22420.2.2.1.1.12.14,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.12.15,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.16,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.17,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.18,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.19,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.20,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.21,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.22,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.23,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.24,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.25,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.26,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.27,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.13.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.14,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.13.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.14.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.2,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.4,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.5,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.11,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.12,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.13,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.14,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.14.15,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.16,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.17,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.18,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.19,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.20,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.21,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.22,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.23,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.24,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.25,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.26,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.27,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.15.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.5,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.12,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.18,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.19,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.20,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.23,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.24,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.25,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.26,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.27,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.2,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.4,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.5,= 2216 +.1.3.6.1.4.1.22420.2.2.1.1.16.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.11,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.12,= 100 +.1.3.6.1.4.1.22420.2.2.1.1.16.13,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.14,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.15,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.16,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.16.17,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.18,= 2217 +.1.3.6.1.4.1.22420.2.2.1.1.16.19,= 2573 +.1.3.6.1.4.1.22420.2.2.1.1.16.20,= 3573 +.1.3.6.1.4.1.22420.2.2.1.1.16.21,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.22,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.23,= 2218 +.1.3.6.1.4.1.22420.2.2.1.1.16.24,= 2219 +.1.3.6.1.4.1.22420.2.2.1.1.16.25,= 2220 +.1.3.6.1.4.1.22420.2.2.1.1.16.26,= 2221 +.1.3.6.1.4.1.22420.2.2.1.1.16.27,= 3999 +.1.3.6.1.4.1.22420.2.2.1.1.17.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.16,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.17.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.2,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.4,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.5,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.11,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.12,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.13,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.14,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.15,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.16,= 5 +.1.3.6.1.4.1.22420.2.2.1.1.18.17,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.18.18,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.19,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.20,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.21,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.22,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.23,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.24,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.25,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.26,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.27,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.19.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.15,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.17,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.19.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.20.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.2,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.3,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.4,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.5,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.11,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.12,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.13,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.14,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.15,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.16,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.17,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.20.18,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.19,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.20,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.21,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.22,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.23,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.24,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.25,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.26,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.27,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.21.1,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.2,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.3,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.4,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.5,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.6,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.7,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.8,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.9,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.10,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.11,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.12,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.13,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.14,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.15,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.21.16,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.17,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.18,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.19,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.20,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.21,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.22,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.23,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.24,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.25,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.26,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.27,= 2 +.1.3.6.1.4.1.22420.2.2.1.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.2,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.3,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.4,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.5,= 2573 +.1.3.6.1.4.1.22420.2.2.1.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.8,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.9,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.10,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.11,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.12,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.13,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.14,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.15,= 200 +.1.3.6.1.4.1.22420.2.2.1.1.22.16,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.17,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.18,= 3573 +.1.3.6.1.4.1.22420.2.2.1.1.22.19,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.20,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.21,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.22,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.23,= 2166 +.1.3.6.1.4.1.22420.2.2.1.1.22.24,= 3166 +.1.3.6.1.4.1.22420.2.2.1.1.22.25,= 2347 +.1.3.6.1.4.1.22420.2.2.1.1.22.26,= 3347 +.1.3.6.1.4.1.22420.2.2.1.1.22.27,= 0 +.1.3.6.1.4.1.22420.2.2.1.1.23.1,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.2,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.3,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.4,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.5,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.6,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.7,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.8,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.9,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.10,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.11,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.12,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.13,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.14,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.15,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.16,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.17,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.18,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.19,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.20,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.21,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.22,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.23,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.24,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.25,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.26,= 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.27,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.2.6,"= ""ipSrc""" +.1.3.6.1.4.1.22420.2.2.2.1.2.7,"= ""ipDst""" +.1.3.6.1.4.1.22420.2.2.2.1.2.8,"= ""ipTTL""" +.1.3.6.1.4.1.22420.2.2.2.1.2.9,"= ""ipProto""" +.1.3.6.1.4.1.22420.2.2.2.1.2.10,"= ""ipHL""" +.1.3.6.1.4.1.22420.2.2.2.1.2.11,"= ""ipDscp""" +.1.3.6.1.4.1.22420.2.2.2.1.2.12,"= ""ipECN""" +.1.3.6.1.4.1.22420.2.2.2.1.2.13,"= ""udpSrcPort""" +.1.3.6.1.4.1.22420.2.2.2.1.2.14,"= ""udpDstPort""" +.1.3.6.1.4.1.22420.2.2.2.1.2.15,"= ""icmpType""" +.1.3.6.1.4.1.22420.2.2.2.1.2.16,"= ""icmpCode""" +.1.3.6.1.4.1.22420.2.2.2.1.3.6,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.3.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.4.6,= 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.2.1.4.7,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.8,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.9,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.10,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.11,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.12,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.13,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.14,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.15,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.16,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.5.6,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.7,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.8,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.9,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.10,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.11,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.12,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.13,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.14,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.15,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.16,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.6.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.7,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.6.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.7.6,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.7,= 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.2.1.7.8,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.9,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.10,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.11,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.12,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.13,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.14,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.15,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.16,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.8.6,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.7,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.8,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.9,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.10,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.11,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.12,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.13,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.14,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.15,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.16,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.9.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.9,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.13,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.14,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.15,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.16,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.10.7,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.8,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.9,= 89 +.1.3.6.1.4.1.22420.2.2.2.1.10.10,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.11,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.12,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.13,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.14,= 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.15,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.10.16,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.11.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.8,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.11.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.8,= 255 +.1.3.6.1.4.1.22420.2.2.2.1.12.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.11,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.12,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.13,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.14,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.15,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.16,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.13.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.10,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.13.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.14.6,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.7,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.8,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.9,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.10,= 6 +.1.3.6.1.4.1.22420.2.2.2.1.14.11,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.12,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.13,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.14,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.15,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.16,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.15.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.11,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.15.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.16.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.8,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.11,= 32 +.1.3.6.1.4.1.22420.2.2.2.1.16.12,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.13,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.14,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.15,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.16,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.17.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.12,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.17.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.8,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.11,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.18.13,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.14,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.15,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.16,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.19.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.13,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.19.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.20.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.8,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.11,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.12,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.13,= 69 +.1.3.6.1.4.1.22420.2.2.2.1.20.14,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.15,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.16,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.21.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.14,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.21.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.8,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.11,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.12,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.13,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.14,= 68 +.1.3.6.1.4.1.22420.2.2.2.1.22.15,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.16,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.23.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.15,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.23.16,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.24.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.8,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.11,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.12,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.13,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.14,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.15,= 5 +.1.3.6.1.4.1.22420.2.2.2.1.24.16,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.25.6,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.7,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.8,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.9,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.10,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.11,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.12,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.13,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.14,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.15,= 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.16,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.26.6,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.7,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.8,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.9,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.10,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.11,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.12,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.13,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.14,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.15,= 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.16,= 3 +.1.3.6.1.4.1.22420.2.2.2.1.27.6,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.7,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.8,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.9,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.10,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.11,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.12,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.13,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.14,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.15,= 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.16,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.2.1,"= ""*default""" +.1.3.6.1.4.1.22420.2.2.3.1.2.2,"= ""PAA-Discovery""" +.1.3.6.1.4.1.22420.2.2.3.1.2.3,"= ""MTSOMAC_SRC""" +.1.3.6.1.4.1.22420.2.2.3.1.2.4,"= ""MTSOMAC_DST""" +.1.3.6.1.4.1.22420.2.2.3.1.2.5,"= ""SVLAN_2216""" +.1.3.6.1.4.1.22420.2.2.3.1.2.6,"= ""catchAll""" +.1.3.6.1.4.1.22420.2.2.3.1.2.7,"= ""ieeeBPDU""" +.1.3.6.1.4.1.22420.2.2.3.1.2.8,"= ""ciscoBPDU""" +.1.3.6.1.4.1.22420.2.2.3.1.2.9,"= ""macDst""" +.1.3.6.1.4.1.22420.2.2.3.1.2.10,"= ""macSrc""" +.1.3.6.1.4.1.22420.2.2.3.1.2.11,"= ""frameType""" +.1.3.6.1.4.1.22420.2.2.3.1.2.12,"= ""firstVlanId""" +.1.3.6.1.4.1.22420.2.2.3.1.2.13,"= ""firstVlanPrior""" +.1.3.6.1.4.1.22420.2.2.3.1.2.14,"= ""firstVlanCfi""" +.1.3.6.1.4.1.22420.2.2.3.1.2.15,"= ""secondVlanId""" +.1.3.6.1.4.1.22420.2.2.3.1.2.16,"= ""secondVlanPrior""" +.1.3.6.1.4.1.22420.2.2.3.1.2.17,"= ""secondVlanCfi""" +.1.3.6.1.4.1.22420.2.2.3.1.2.18,"= ""SVLAN_2217""" +.1.3.6.1.4.1.22420.2.2.3.1.2.19,"= ""VLAN_2573""" +.1.3.6.1.4.1.22420.2.2.3.1.2.20,"= ""VLAN_3573""" +.1.3.6.1.4.1.22420.2.2.3.1.2.21,"= ""rvResortMAC_DST""" +.1.3.6.1.4.1.22420.2.2.3.1.2.22,"= ""rvResortMAC_SRC""" +.1.3.6.1.4.1.22420.2.2.3.1.2.23,"= ""SVLAN_2218""" +.1.3.6.1.4.1.22420.2.2.3.1.2.24,"= ""SVLAN_2219""" +.1.3.6.1.4.1.22420.2.2.3.1.2.25,"= ""SVLAN_2220""" +.1.3.6.1.4.1.22420.2.2.3.1.2.26,"= ""SVLAN_2221""" +.1.3.6.1.4.1.22420.2.2.3.1.2.27,"= ""CVLAN_3999""" +.1.3.6.1.4.1.22420.2.2.3.1.3.1,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.2,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.3,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.4,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.5,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.6,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.7,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.8,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.9,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.10,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.11,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.12,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.13,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.14,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.15,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.16,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.17,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.18,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.19,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.20,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.21,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.22,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.23,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.24,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.25,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.26,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.27,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.4.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.13,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.4.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.5.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.13,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.5.14,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.5.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.7.1,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.2,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.3,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.4,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.5,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.6,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.7,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.8,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.9,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.10,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.11,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.12,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.13,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.14,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.15,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.16,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.17,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.18,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.19,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.20,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.21,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.22,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.23,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.24,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.25,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.26,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.27,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.8.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.5,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.12,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.18,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.19,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.20,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.23,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.24,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.25,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.26,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.27,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.9.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.5,= 2216 +.1.3.6.1.4.1.22420.2.2.3.1.9.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.12,= 100 +.1.3.6.1.4.1.22420.2.2.3.1.9.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.16,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.9.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.18,= 2217 +.1.3.6.1.4.1.22420.2.2.3.1.9.19,= 2573 +.1.3.6.1.4.1.22420.2.2.3.1.9.20,= 3573 +.1.3.6.1.4.1.22420.2.2.3.1.9.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.23,= 2218 +.1.3.6.1.4.1.22420.2.2.3.1.9.24,= 2219 +.1.3.6.1.4.1.22420.2.2.3.1.9.25,= 2220 +.1.3.6.1.4.1.22420.2.2.3.1.9.26,= 2221 +.1.3.6.1.4.1.22420.2.2.3.1.9.27,= 3999 +.1.3.6.1.4.1.22420.2.2.3.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.11.1,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.2,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.3,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.4,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.5,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.6,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.7,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.8,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.9,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.10,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.11,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.12,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.13,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.14,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.15,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.16,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.17,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.18,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.19,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.20,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.21,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.22,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.23,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.24,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.25,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.26,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.27,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.12.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.14,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.12.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.13.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.14,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.13.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.14.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.5,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.18,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.19,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.20,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.23,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.24,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.25,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.26,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.27,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.15.1,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.2,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.3,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.4,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.6,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.7,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.8,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.9,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.10,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.11,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.12,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.13,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.14,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.15,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.16,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.17,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.19,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.15.20,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.15.21,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.22,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.27,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.16.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.16,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.16.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.17.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.16,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.17.17,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.17.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.19.1,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.2,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.3,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.4,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.5,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.6,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.7,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.8,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.9,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.10,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.11,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.12,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.13,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.14,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.15,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.16,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.17,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.18,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.19,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.20,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.21,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.22,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.23,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.24,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.25,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.26,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.27,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.20.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.15,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.20.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.21.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.5,= 2573 +.1.3.6.1.4.1.22420.2.2.3.1.21.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.15,= 200 +.1.3.6.1.4.1.22420.2.2.3.1.21.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.18,= 3573 +.1.3.6.1.4.1.22420.2.2.3.1.21.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.23,= 2166 +.1.3.6.1.4.1.22420.2.2.3.1.21.24,= 3166 +.1.3.6.1.4.1.22420.2.2.3.1.21.25,= 2347 +.1.3.6.1.4.1.22420.2.2.3.1.21.26,= 3347 +.1.3.6.1.4.1.22420.2.2.3.1.21.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.23.1,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.2,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.3,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.4,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.5,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.6,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.7,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.8,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.9,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.10,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.11,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.12,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.13,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.14,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.15,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.16,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.17,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.18,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.19,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.20,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.21,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.22,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.23,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.24,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.25,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.26,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.27,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.24.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.17,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.24.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.25.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.17,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.25.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.26.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.27.1,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.2,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.3,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.4,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.5,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.6,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.7,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.8,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.9,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.10,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.11,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.12,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.13,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.14,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.15,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.16,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.17,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.18,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.19,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.20,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.21,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.22,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.23,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.24,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.25,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.26,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.27,= 5 +.1.3.6.1.4.1.22420.2.2.3.1.28.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.2,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.4,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.7,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.8,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.9,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.21,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.29.1,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.2,"= ""FF FF FF FF FF FF """ +.1.3.6.1.4.1.22420.2.2.3.1.29.3,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.4,"= ""00 23 3E 82 15 73 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.5,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.6,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.7,"= ""01 80 C2 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.8,"= ""01 00 0C CC CC CD """ +.1.3.6.1.4.1.22420.2.2.3.1.29.9,"= ""00 15 AD 01 01 01 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.10,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.11,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.12,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.13,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.14,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.15,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.16,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.17,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.18,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.19,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.20,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.21,"= ""50 40 61 85 DE 68 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.22,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.23,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.24,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.25,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.26,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.29.27,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.30.1,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.2,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.3,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.4,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.5,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.6,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.7,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.8,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.9,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.10,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.11,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.12,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.13,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.14,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.15,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.16,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.17,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.18,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.19,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.20,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.21,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.22,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.23,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.24,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.25,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.26,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.27,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.31.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.3,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.31.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.10,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.31.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.22,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.31.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.32.1,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.2,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.3,"= ""00 23 3E 82 15 73 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.4,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.5,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.6,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.7,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.8,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.9,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.10,"= ""00 15 AD 01 01 01 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.11,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.12,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.13,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.14,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.15,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.16,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.17,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.18,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.19,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.20,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.21,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.22,"= ""50 40 61 85 DE 68 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.23,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.24,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.25,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.26,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.32.27,"= ""00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.2.3.1.33.1,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.2,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.3,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.4,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.5,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.6,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.7,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.8,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.9,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.10,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.11,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.12,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.13,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.14,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.15,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.16,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.17,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.18,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.19,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.20,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.21,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.22,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.23,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.24,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.25,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.26,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.27,= 48 +.1.3.6.1.4.1.22420.2.2.3.1.34.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.2,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.34.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.11,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.34.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.35.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.2,= 35068 +.1.3.6.1.4.1.22420.2.2.3.1.35.3,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.4,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.5,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.11,= 36864 +.1.3.6.1.4.1.22420.2.2.3.1.35.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.18,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.19,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.20,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.21,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.22,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.23,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.24,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.25,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.26,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.27,= 2048 +.1.3.6.1.4.1.22420.2.2.3.1.36.1,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.2,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.3,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.4,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.5,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.6,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.7,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.8,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.9,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.10,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.11,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.12,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.13,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.14,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.15,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.16,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.17,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.18,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.19,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.20,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.21,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.22,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.23,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.24,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.25,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.26,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.27,= 2 +.1.3.6.1.4.1.22420.2.2.3.1.37.1,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.2,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.3,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.4,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.5,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.6,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.7,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.8,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.9,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.10,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.11,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.12,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.13,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.14,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.15,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.16,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.17,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.18,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.19,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.20,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.21,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.22,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.23,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.24,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.25,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.26,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.27,= 1 +.1.3.6.1.4.1.22420.2.2.3.1.38.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.40.1,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.2,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.3,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.4,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.5,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.6,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.7,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.8,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.9,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.10,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.11,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.12,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.13,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.14,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.15,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.16,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.17,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.18,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.19,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.20,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.21,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.22,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.23,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.24,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.25,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.26,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.27,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.41.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.1,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.2,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.3,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.4,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.5,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.6,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.7,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.8,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.9,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.10,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.11,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.12,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.13,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.14,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.15,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.16,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.17,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.18,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.19,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.20,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.21,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.22,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.23,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.24,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.25,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.26,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.27,= 0 +.1.3.6.1.4.1.22420.2.2.3.1.43.1,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.2,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.3,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.4,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.5,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.6,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.7,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.8,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.9,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.10,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.11,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.12,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.13,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.14,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.15,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.16,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.17,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.18,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.19,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.20,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.21,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.22,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.23,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.24,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.25,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.26,= 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.27,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.2.6,"= ""ipSrc""" +.1.3.6.1.4.1.22420.2.2.4.1.2.7,"= ""ipDst""" +.1.3.6.1.4.1.22420.2.2.4.1.2.8,"= ""ipTTL""" +.1.3.6.1.4.1.22420.2.2.4.1.2.9,"= ""ipProto""" +.1.3.6.1.4.1.22420.2.2.4.1.2.10,"= ""ipHL""" +.1.3.6.1.4.1.22420.2.2.4.1.2.11,"= ""ipDscp""" +.1.3.6.1.4.1.22420.2.2.4.1.2.12,"= ""ipECN""" +.1.3.6.1.4.1.22420.2.2.4.1.2.13,"= ""udpSrcPort""" +.1.3.6.1.4.1.22420.2.2.4.1.2.14,"= ""udpDstPort""" +.1.3.6.1.4.1.22420.2.2.4.1.2.15,"= ""icmpType""" +.1.3.6.1.4.1.22420.2.2.4.1.2.16,"= ""icmpCode""" +.1.3.6.1.4.1.22420.2.2.4.1.3.6,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.7,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.8,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.9,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.10,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.11,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.12,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.13,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.14,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.15,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.16,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.4.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.7.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.8.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.9.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.11.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.12.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.13.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.14.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.15.6,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.7,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.8,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.9,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.10,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.11,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.12,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.13,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.14,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.15,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.16,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.16.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.17.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.19.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.20.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.21.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.23.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.24.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.25.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.26.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.27.6,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.7,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.8,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.9,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.10,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.11,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.12,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.13,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.14,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.15,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.16,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.28.6,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.28.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.29.6,= 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.4.1.29.7,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.8,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.9,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.10,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.11,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.12,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.13,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.14,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.15,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.16,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.30.6,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.7,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.8,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.9,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.10,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.11,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.12,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.13,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.14,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.15,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.16,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.31.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.7,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.31.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.32.6,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.7,= 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.4.1.32.8,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.9,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.10,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.11,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.12,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.13,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.14,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.15,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.16,= 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.33.6,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.7,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.8,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.9,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.10,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.11,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.12,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.13,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.14,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.15,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.16,= 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.34.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.9,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.13,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.14,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.15,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.16,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.35.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.35.7,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.8,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.9,= 89 +.1.3.6.1.4.1.22420.2.2.4.1.35.10,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.11,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.12,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.13,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.14,= 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.15,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.35.16,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.36.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.8,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.36.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.37.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.8,= 255 +.1.3.6.1.4.1.22420.2.2.4.1.37.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.38.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.10,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.38.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.39.6,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.7,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.8,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.9,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.10,= 6 +.1.3.6.1.4.1.22420.2.2.4.1.39.11,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.12,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.13,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.14,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.15,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.16,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.40.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.11,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.40.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.41.6,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.7,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.8,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.9,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.10,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.11,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.12,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.13,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.14,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.15,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.16,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.42.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.11,= 32 +.1.3.6.1.4.1.22420.2.2.4.1.42.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.44.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.45.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.47.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.48.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.12,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.48.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.49.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.49.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.50.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.13,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.50.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.51.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.13,= 69 +.1.3.6.1.4.1.22420.2.2.4.1.51.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.52.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.14,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.52.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.53.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.14,= 68 +.1.3.6.1.4.1.22420.2.2.4.1.53.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.54.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.15,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.54.16,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.55.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.15,= 5 +.1.3.6.1.4.1.22420.2.2.4.1.55.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.56.6,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.7,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.8,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.9,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.10,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.11,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.12,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.13,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.14,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.15,= 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.16,= 1 +.1.3.6.1.4.1.22420.2.2.4.1.57.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.58.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.13,= 69 +.1.3.6.1.4.1.22420.2.2.4.1.58.14,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.59.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.16,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.60.6,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.7,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.8,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.9,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.10,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.11,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.12,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.13,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.14,= 68 +.1.3.6.1.4.1.22420.2.2.4.1.60.15,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.16,= 0 +.1.3.6.1.4.1.22420.2.2.4.1.61.6,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.7,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.8,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.9,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.10,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.11,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.12,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.13,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.14,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.15,= 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.16,= 3 +.1.3.6.1.4.1.22420.2.2.6.1.1.0,= 2 +.1.3.6.1.4.1.22420.2.2.6.1.2.0,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.201,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.202,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.203,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.204,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.205,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.206,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.207,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.208,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.209,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.210,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.211,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.212,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.213,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.214,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.215,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.216,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.217,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.218,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.219,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.220,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.221,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.222,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.223,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.224,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.225,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.226,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.227,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.228,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.229,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.230,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.231,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.232,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.233,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.234,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.235,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.236,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.237,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.238,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.239,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.240,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.241,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.242,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.243,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.244,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.245,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.246,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.247,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.248,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.249,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.250,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.251,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.252,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.253,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.254,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.255,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.256,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.257,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.258,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.259,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.260,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.261,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.262,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.263,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.264,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.265,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.266,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.267,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.268,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.269,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.270,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.271,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.272,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.273,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.274,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.275,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.276,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.277,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.278,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.279,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.280,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.281,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.282,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.283,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.284,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.285,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.286,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.287,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.288,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.289,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.290,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.291,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.292,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.293,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.294,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.295,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.296,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.297,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.298,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.299,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.300,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.301,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.302,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.303,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.304,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.305,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.306,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.307,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.308,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.309,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.310,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.311,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.312,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.313,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.314,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.315,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.316,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.317,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.318,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.319,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.320,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.321,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.322,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.323,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.324,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.325,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.326,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.327,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.328,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.329,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.330,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.331,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.332,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.333,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.334,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.335,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.336,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.337,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.338,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.339,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.340,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.341,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.342,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.343,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.344,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.345,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.346,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.347,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.348,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.349,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.350,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.351,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.352,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.353,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.354,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.355,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.356,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.357,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.358,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.359,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.360,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.361,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.362,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.363,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.364,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.365,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.366,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.367,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.368,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.369,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.370,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.371,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.372,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.373,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.374,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.375,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.376,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.377,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.378,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.379,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.380,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.381,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.382,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.383,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.384,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.385,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.386,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.387,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.388,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.389,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.390,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.391,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.392,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.393,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.394,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.395,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.396,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.397,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.398,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.399,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.400,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.3,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.4,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.5,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.6,= 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.7,= 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.8,= 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.9,= 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.10,= 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.11,= 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.12,= 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.13,= 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.14,= 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.15,= 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.16,= 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.17,= 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.18,= 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.19,= 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.20,= 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.21,= 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.22,= 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.23,= 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.24,= 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.25,= 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.26,= 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.27,= 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.28,= 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.29,= 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.30,= 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.31,= 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.32,= 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.33,= 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.34,= 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.35,= 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.36,= 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.37,= 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.38,= 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.39,= 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.40,= 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.41,= 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.42,= 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.43,= 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.44,= 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.45,= 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.46,= 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.47,= 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.48,= 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.49,= 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.50,= 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.51,= 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.52,= 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.53,= 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.54,= 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.55,= 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.56,= 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.57,= 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.58,= 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.59,= 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.60,= 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.61,= 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.62,= 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.63,= 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.64,= 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.65,= 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.66,= 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.67,= 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.68,= 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.69,= 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.70,= 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.71,= 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.72,= 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.73,= 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.74,= 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.75,= 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.76,= 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.77,= 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.78,= 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.79,= 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.80,= 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.81,= 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.82,= 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.83,= 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.84,= 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.85,= 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.86,= 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.87,= 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.88,= 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.89,= 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.90,= 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.91,= 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.92,= 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.93,= 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.94,= 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.95,= 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.96,= 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.97,= 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.98,= 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.99,= 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.100,= 100 +.1.3.6.1.4.1.22420.2.3.1.1.3.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.103,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.104,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.105,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.106,= 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.107,= 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.108,= 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.109,= 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.110,= 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.111,= 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.112,= 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.113,= 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.114,= 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.115,= 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.116,= 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.117,= 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.118,= 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.119,= 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.120,= 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.121,= 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.122,= 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.123,= 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.124,= 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.125,= 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.126,= 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.127,= 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.128,= 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.129,= 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.130,= 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.131,= 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.132,= 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.133,= 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.134,= 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.135,= 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.136,= 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.137,= 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.138,= 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.139,= 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.140,= 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.141,= 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.142,= 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.143,= 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.144,= 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.145,= 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.146,= 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.147,= 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.148,= 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.149,= 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.150,= 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.151,= 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.152,= 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.153,= 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.154,= 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.155,= 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.156,= 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.157,= 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.158,= 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.159,= 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.160,= 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.161,= 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.162,= 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.163,= 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.164,= 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.165,= 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.166,= 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.167,= 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.168,= 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.169,= 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.170,= 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.171,= 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.172,= 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.173,= 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.174,= 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.175,= 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.176,= 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.177,= 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.178,= 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.179,= 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.180,= 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.181,= 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.182,= 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.183,= 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.184,= 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.185,= 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.186,= 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.187,= 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.188,= 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.189,= 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.190,= 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.191,= 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.192,= 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.193,= 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.194,= 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.195,= 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.196,= 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.197,= 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.198,= 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.199,= 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.200,= 100 +.1.3.6.1.4.1.22420.2.3.1.1.3.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.203,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.204,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.205,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.206,= 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.207,= 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.208,= 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.209,= 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.210,= 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.211,= 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.212,= 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.213,= 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.214,= 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.215,= 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.216,= 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.217,= 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.218,= 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.219,= 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.220,= 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.221,= 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.222,= 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.223,= 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.224,= 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.225,= 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.226,= 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.227,= 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.228,= 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.229,= 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.230,= 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.231,= 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.232,= 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.233,= 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.234,= 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.235,= 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.236,= 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.237,= 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.238,= 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.239,= 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.240,= 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.241,= 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.242,= 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.243,= 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.244,= 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.245,= 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.246,= 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.247,= 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.248,= 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.249,= 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.250,= 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.251,= 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.252,= 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.253,= 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.254,= 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.255,= 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.256,= 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.257,= 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.258,= 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.259,= 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.260,= 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.261,= 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.262,= 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.263,= 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.264,= 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.265,= 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.266,= 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.267,= 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.268,= 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.269,= 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.270,= 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.271,= 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.272,= 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.273,= 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.274,= 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.275,= 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.276,= 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.277,= 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.278,= 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.279,= 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.280,= 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.281,= 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.282,= 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.283,= 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.284,= 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.285,= 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.286,= 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.287,= 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.288,= 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.289,= 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.290,= 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.291,= 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.292,= 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.293,= 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.294,= 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.295,= 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.296,= 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.297,= 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.298,= 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.299,= 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.300,= 100 +.1.3.6.1.4.1.22420.2.3.1.1.3.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.303,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.304,= 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.305,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.306,= 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.307,= 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.308,= 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.309,= 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.310,= 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.311,= 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.312,= 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.313,= 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.314,= 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.315,= 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.316,= 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.317,= 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.318,= 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.319,= 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.320,= 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.321,= 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.322,= 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.323,= 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.324,= 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.325,= 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.326,= 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.327,= 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.328,= 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.329,= 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.330,= 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.331,= 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.332,= 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.333,= 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.334,= 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.335,= 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.336,= 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.337,= 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.338,= 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.339,= 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.340,= 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.341,= 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.342,= 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.343,= 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.344,= 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.345,= 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.346,= 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.347,= 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.348,= 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.349,= 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.350,= 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.351,= 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.352,= 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.353,= 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.354,= 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.355,= 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.356,= 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.357,= 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.358,= 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.359,= 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.360,= 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.361,= 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.362,= 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.363,= 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.364,= 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.365,= 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.366,= 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.367,= 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.368,= 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.369,= 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.370,= 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.371,= 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.372,= 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.373,= 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.374,= 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.375,= 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.376,= 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.377,= 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.378,= 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.379,= 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.380,= 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.381,= 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.382,= 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.383,= 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.384,= 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.385,= 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.386,= 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.387,= 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.388,= 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.389,= 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.390,= 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.391,= 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.392,= 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.393,= 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.394,= 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.395,= 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.396,= 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.397,= 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.398,= 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.399,= 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.400,= 100 +.1.3.6.1.4.1.22420.2.3.1.1.4.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.5.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.6,= 27 +.1.3.6.1.4.1.22420.2.3.1.1.6.7,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.6.8,= 23 +.1.3.6.1.4.1.22420.2.3.1.1.6.9,= 25 +.1.3.6.1.4.1.22420.2.3.1.1.6.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.107,= 18 +.1.3.6.1.4.1.22420.2.3.1.1.6.108,= 24 +.1.3.6.1.4.1.22420.2.3.1.1.6.109,= 26 +.1.3.6.1.4.1.22420.2.3.1.1.6.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.6.207,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.6.208,= 23 +.1.3.6.1.4.1.22420.2.3.1.1.6.209,= 25 +.1.3.6.1.4.1.22420.2.3.1.1.6.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.307,= 18 +.1.3.6.1.4.1.22420.2.3.1.1.6.308,= 24 +.1.3.6.1.4.1.22420.2.3.1.1.6.309,= 26 +.1.3.6.1.4.1.22420.2.3.1.1.6.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.8.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.6,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.7,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.8,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.9,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.206,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.207,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.208,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.209,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.309,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.6,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.7,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.8,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.9,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.206,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.207,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.208,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.209,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.309,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.10.7,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.8,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.9,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.10.207,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.208,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.209,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.309,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.11.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.11.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.11.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.12.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.13.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.6,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.7,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.8,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.9,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.206,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.207,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.208,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.209,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.309,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.14.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.6,= 3 +.1.3.6.1.4.1.22420.2.3.1.1.14.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.206,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.14.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.15.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.15.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.206,= 3999 +.1.3.6.1.4.1.22420.2.3.1.1.16.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.307,= 2216 +.1.3.6.1.4.1.22420.2.3.1.1.16.308,= 2217 +.1.3.6.1.4.1.22420.2.3.1.1.16.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.17.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.18.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.6,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.7,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.8,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.9,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.206,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.207,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.208,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.209,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.309,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.19.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.20.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.22.1,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.2,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.3,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.4,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.5,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.6,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.7,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.8,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.9,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.10,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.11,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.12,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.13,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.14,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.15,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.16,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.17,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.18,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.19,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.20,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.21,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.22,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.23,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.24,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.25,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.26,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.27,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.28,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.29,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.30,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.31,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.32,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.33,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.34,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.35,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.36,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.37,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.38,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.39,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.40,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.41,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.42,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.43,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.44,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.45,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.46,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.47,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.48,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.49,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.50,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.51,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.52,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.53,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.54,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.55,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.56,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.57,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.58,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.59,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.60,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.61,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.62,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.63,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.64,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.65,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.66,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.67,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.68,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.69,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.70,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.71,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.72,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.73,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.74,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.75,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.76,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.77,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.78,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.79,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.80,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.81,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.82,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.83,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.84,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.85,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.86,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.87,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.88,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.89,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.90,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.91,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.92,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.93,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.94,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.95,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.96,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.97,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.98,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.99,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.100,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.101,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.102,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.103,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.104,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.105,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.106,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.107,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.108,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.109,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.110,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.111,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.112,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.113,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.114,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.115,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.116,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.117,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.118,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.119,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.120,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.121,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.122,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.123,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.124,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.125,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.126,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.127,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.128,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.129,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.130,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.131,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.132,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.133,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.134,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.135,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.136,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.137,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.138,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.139,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.140,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.141,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.142,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.143,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.144,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.145,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.146,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.147,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.148,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.149,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.150,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.151,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.152,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.153,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.154,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.155,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.156,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.157,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.158,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.159,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.160,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.161,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.162,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.163,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.164,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.165,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.166,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.167,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.168,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.169,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.170,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.171,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.172,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.173,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.174,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.175,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.176,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.177,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.178,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.179,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.180,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.181,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.182,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.183,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.184,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.185,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.186,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.187,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.188,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.189,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.190,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.191,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.192,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.193,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.194,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.195,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.196,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.197,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.198,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.199,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.200,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.201,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.202,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.203,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.204,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.205,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.206,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.207,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.208,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.209,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.210,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.211,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.212,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.213,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.214,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.215,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.216,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.217,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.218,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.219,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.220,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.221,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.222,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.223,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.224,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.225,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.226,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.227,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.228,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.229,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.230,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.231,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.232,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.233,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.234,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.235,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.236,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.237,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.238,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.239,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.240,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.241,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.242,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.243,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.244,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.245,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.246,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.247,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.248,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.249,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.250,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.251,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.252,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.253,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.254,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.255,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.256,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.257,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.258,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.259,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.260,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.261,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.262,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.263,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.264,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.265,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.266,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.267,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.268,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.269,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.270,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.271,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.272,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.273,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.274,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.275,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.276,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.277,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.278,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.279,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.280,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.281,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.282,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.283,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.284,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.285,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.286,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.287,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.288,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.289,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.290,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.291,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.292,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.293,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.294,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.295,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.296,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.297,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.298,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.299,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.300,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.301,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.302,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.303,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.304,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.305,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.306,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.307,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.308,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.309,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.310,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.311,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.312,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.313,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.314,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.315,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.316,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.317,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.318,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.319,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.320,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.321,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.322,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.323,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.324,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.325,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.326,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.327,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.328,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.329,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.330,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.331,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.332,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.333,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.334,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.335,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.336,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.337,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.338,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.339,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.340,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.341,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.342,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.343,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.344,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.345,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.346,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.347,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.348,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.349,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.350,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.351,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.352,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.353,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.354,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.355,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.356,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.357,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.358,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.359,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.360,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.361,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.362,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.363,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.364,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.365,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.366,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.367,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.368,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.369,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.370,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.371,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.372,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.373,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.374,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.375,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.376,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.377,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.378,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.379,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.380,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.381,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.382,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.383,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.384,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.385,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.386,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.387,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.388,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.389,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.390,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.391,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.392,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.393,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.394,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.395,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.396,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.397,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.398,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.399,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.400,= 2 +.1.3.6.1.4.1.22420.2.3.1.1.23.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.24.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.7,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.8,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.9,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.107,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.108,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.109,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.207,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.208,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.209,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.307,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.308,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.309,= 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.400,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.30.1,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.2,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.3,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.4,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.5,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.6,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.7,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.8,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.9,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.10,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.11,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.12,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.13,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.14,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.15,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.16,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.17,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.18,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.19,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.20,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.21,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.22,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.23,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.24,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.25,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.26,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.27,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.28,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.29,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.30,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.31,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.32,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.33,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.34,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.35,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.36,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.37,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.38,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.39,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.40,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.41,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.42,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.43,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.44,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.45,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.46,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.47,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.48,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.49,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.50,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.51,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.52,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.53,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.54,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.55,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.56,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.57,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.58,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.59,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.60,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.61,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.62,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.63,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.64,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.65,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.66,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.67,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.68,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.69,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.70,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.71,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.72,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.73,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.74,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.75,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.76,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.77,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.78,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.79,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.80,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.81,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.82,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.83,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.84,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.85,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.86,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.87,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.88,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.89,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.90,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.91,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.92,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.93,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.94,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.95,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.96,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.97,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.98,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.99,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.100,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.101,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.102,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.103,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.104,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.105,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.106,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.107,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4 +.1.3.6.1.4.1.22420.2.3.1.1.30.108,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4 +.1.3.6.1.4.1.22420.2.3.1.1.30.109,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4 +.1.3.6.1.4.1.22420.2.3.1.1.30.110,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.111,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.112,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.113,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.114,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.115,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.116,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.117,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.118,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.119,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.120,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.121,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.122,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.123,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.124,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.125,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.126,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.127,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.128,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.129,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.130,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.131,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.132,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.133,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.134,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.135,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.136,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.137,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.138,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.139,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.140,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.141,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.142,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.143,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.144,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.145,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.146,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.147,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.148,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.149,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.150,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.151,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.152,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.153,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.154,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.155,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.156,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.157,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.158,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.159,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.160,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.161,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.162,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.163,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.164,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.165,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.166,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.167,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.168,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.169,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.170,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.171,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.172,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.173,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.174,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.175,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.176,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.177,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.178,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.179,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.180,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.181,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.182,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.183,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.184,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.185,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.186,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.187,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.188,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.189,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.190,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.191,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.192,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.193,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.194,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.195,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.196,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.197,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.198,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.199,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.200,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.201,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.202,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.203,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.204,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.205,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.206,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.207,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.208,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.209,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.210,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.211,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.212,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.213,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.214,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.215,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.216,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.217,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.218,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.219,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.220,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.221,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.222,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.223,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.224,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.225,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.226,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.227,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.228,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.229,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.230,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.231,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.232,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.233,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.234,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.235,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.236,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.237,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.238,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.239,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.240,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.241,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.242,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.243,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.244,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.245,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.246,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.247,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.248,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.249,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.250,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.251,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.252,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.253,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.254,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.255,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.256,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.257,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.258,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.259,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.260,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.261,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.262,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.263,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.264,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.265,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.266,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.267,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.268,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.269,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.270,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.271,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.272,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.273,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.274,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.275,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.276,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.277,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.278,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.279,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.280,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.281,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.282,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.283,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.284,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.285,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.286,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.287,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.288,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.289,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.290,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.291,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.292,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.293,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.294,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.295,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.296,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.297,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.298,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.299,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.300,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.301,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.302,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.303,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.304,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.305,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.306,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.307,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2 +.1.3.6.1.4.1.22420.2.3.1.1.30.308,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2 +.1.3.6.1.4.1.22420.2.3.1.1.30.309,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2 +.1.3.6.1.4.1.22420.2.3.1.1.30.310,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.311,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.312,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.313,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.314,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.315,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.316,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.317,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.318,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.319,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.320,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.321,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.322,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.323,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.324,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.325,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.326,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.327,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.328,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.329,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.330,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.331,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.332,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.333,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.334,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.335,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.336,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.337,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.338,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.339,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.340,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.341,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.342,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.343,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.344,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.345,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.346,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.347,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.348,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.349,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.350,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.351,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.352,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.353,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.354,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.355,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.356,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.357,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.358,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.359,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.360,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.361,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.362,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.363,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.364,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.365,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.366,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.367,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.368,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.369,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.370,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.371,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.372,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.373,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.374,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.375,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.376,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.377,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.378,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.379,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.380,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.381,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.382,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.383,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.384,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.385,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.386,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.387,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.388,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.389,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.390,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.391,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.392,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.393,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.394,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.395,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.396,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.397,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.398,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.399,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.400,= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.31.1,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.2,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.3,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.4,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.5,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.6,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.7,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.8,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.9,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.10,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.11,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.12,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.13,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.14,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.15,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.16,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.17,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.18,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.19,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.20,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.21,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.22,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.23,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.24,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.25,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.26,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.27,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.28,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.29,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.30,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.31,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.32,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.33,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.34,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.35,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.36,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.37,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.38,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.39,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.40,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.41,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.42,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.43,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.44,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.45,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.46,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.47,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.48,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.49,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.50,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.51,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.52,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.53,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.54,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.55,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.56,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.57,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.58,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.59,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.60,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.61,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.62,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.63,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.64,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.65,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.66,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.67,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.68,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.69,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.70,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.71,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.72,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.73,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.74,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.75,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.76,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.77,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.78,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.79,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.80,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.81,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.82,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.83,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.84,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.85,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.86,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.87,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.88,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.89,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.90,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.91,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.92,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.93,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.94,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.95,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.96,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.97,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.98,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.99,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.100,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.101,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.102,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.103,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.104,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.105,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.106,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.107,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.108,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.109,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.110,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.111,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.112,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.113,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.114,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.115,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.116,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.117,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.118,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.119,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.120,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.121,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.122,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.123,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.124,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.125,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.126,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.127,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.128,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.129,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.130,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.131,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.132,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.133,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.134,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.135,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.136,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.137,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.138,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.139,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.140,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.141,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.142,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.143,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.144,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.145,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.146,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.147,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.148,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.149,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.150,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.151,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.152,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.153,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.154,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.155,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.156,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.157,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.158,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.159,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.160,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.161,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.162,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.163,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.164,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.165,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.166,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.167,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.168,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.169,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.170,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.171,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.172,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.173,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.174,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.175,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.176,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.177,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.178,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.179,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.180,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.181,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.182,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.183,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.184,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.185,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.186,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.187,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.188,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.189,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.190,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.191,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.192,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.193,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.194,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.195,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.196,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.197,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.198,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.199,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.200,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.201,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.202,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.203,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.204,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.205,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.206,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.207,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.208,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.209,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.210,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.211,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.212,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.213,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.214,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.215,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.216,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.217,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.218,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.219,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.220,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.221,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.222,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.223,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.224,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.225,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.226,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.227,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.228,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.229,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.230,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.231,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.232,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.233,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.234,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.235,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.236,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.237,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.238,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.239,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.240,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.241,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.242,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.243,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.244,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.245,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.246,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.247,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.248,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.249,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.250,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.251,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.252,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.253,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.254,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.255,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.256,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.257,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.258,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.259,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.260,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.261,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.262,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.263,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.264,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.265,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.266,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.267,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.268,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.269,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.270,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.271,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.272,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.273,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.274,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.275,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.276,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.277,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.278,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.279,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.280,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.281,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.282,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.283,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.284,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.285,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.286,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.287,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.288,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.289,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.290,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.291,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.292,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.293,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.294,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.295,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.296,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.297,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.298,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.299,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.300,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.301,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.302,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.303,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.304,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.305,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.306,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.307,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.308,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.309,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.310,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.311,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.312,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.313,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.314,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.315,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.316,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.317,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.318,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.319,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.320,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.321,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.322,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.323,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.324,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.325,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.326,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.327,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.328,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.329,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.330,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.331,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.332,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.333,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.334,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.335,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.336,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.337,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.338,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.339,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.340,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.341,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.342,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.343,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.344,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.345,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.346,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.347,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.348,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.349,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.350,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.351,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.352,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.353,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.354,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.355,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.356,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.357,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.358,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.359,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.360,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.361,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.362,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.363,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.364,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.365,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.366,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.367,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.368,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.369,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.370,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.371,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.372,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.373,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.374,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.375,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.376,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.377,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.378,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.379,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.380,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.381,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.382,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.383,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.384,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.385,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.386,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.387,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.388,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.389,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.390,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.391,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.392,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.393,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.394,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.395,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.396,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.397,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.398,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.399,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.400,= 1 +.1.3.6.1.4.1.22420.2.3.1.1.32.1,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.2,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.3,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.4,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.5,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.6,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.7,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.8,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.9,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.10,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.11,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.12,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.13,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.14,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.15,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.16,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.17,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.18,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.19,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.20,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.21,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.22,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.23,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.24,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.25,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.26,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.27,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.28,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.29,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.30,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.31,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.32,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.33,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.34,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.35,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.36,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.37,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.38,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.39,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.40,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.41,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.42,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.43,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.44,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.45,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.46,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.47,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.48,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.49,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.50,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.51,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.52,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.53,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.54,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.55,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.56,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.57,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.58,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.59,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.60,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.61,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.62,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.63,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.64,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.65,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.66,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.67,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.68,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.69,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.70,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.71,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.72,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.73,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.74,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.75,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.76,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.77,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.78,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.79,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.80,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.81,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.82,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.83,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.84,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.85,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.86,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.87,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.88,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.89,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.90,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.91,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.92,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.93,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.94,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.95,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.96,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.97,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.98,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.99,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.100,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.101,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.102,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.103,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.104,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.105,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.106,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.107,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.108,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.109,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.110,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.111,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.112,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.113,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.114,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.115,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.116,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.117,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.118,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.119,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.120,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.121,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.122,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.123,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.124,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.125,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.126,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.127,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.128,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.129,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.130,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.131,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.132,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.133,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.134,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.135,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.136,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.137,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.138,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.139,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.140,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.141,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.142,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.143,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.144,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.145,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.146,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.147,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.148,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.149,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.150,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.151,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.152,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.153,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.154,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.155,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.156,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.157,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.158,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.159,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.160,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.161,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.162,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.163,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.164,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.165,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.166,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.167,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.168,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.169,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.170,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.171,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.172,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.173,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.174,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.175,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.176,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.177,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.178,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.179,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.180,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.181,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.182,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.183,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.184,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.185,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.186,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.187,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.188,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.189,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.190,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.191,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.192,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.193,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.194,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.195,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.196,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.197,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.198,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.199,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.200,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.201,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.202,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.203,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.204,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.205,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.206,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.207,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.208,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.209,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.210,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.211,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.212,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.213,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.214,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.215,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.216,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.217,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.218,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.219,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.220,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.221,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.222,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.223,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.224,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.225,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.226,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.227,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.228,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.229,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.230,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.231,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.232,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.233,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.234,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.235,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.236,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.237,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.238,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.239,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.240,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.241,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.242,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.243,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.244,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.245,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.246,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.247,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.248,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.249,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.250,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.251,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.252,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.253,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.254,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.255,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.256,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.257,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.258,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.259,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.260,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.261,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.262,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.263,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.264,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.265,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.266,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.267,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.268,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.269,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.270,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.271,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.272,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.273,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.274,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.275,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.276,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.277,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.278,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.279,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.280,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.281,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.282,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.283,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.284,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.285,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.286,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.287,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.288,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.289,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.290,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.291,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.292,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.293,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.294,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.295,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.296,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.297,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.298,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.299,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.300,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.301,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.302,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.303,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.304,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.305,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.306,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.307,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.308,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.309,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.310,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.311,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.312,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.313,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.314,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.315,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.316,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.317,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.318,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.319,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.320,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.321,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.322,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.323,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.324,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.325,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.326,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.327,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.328,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.329,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.330,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.331,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.332,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.333,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.334,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.335,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.336,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.337,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.338,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.339,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.340,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.341,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.342,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.343,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.344,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.345,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.346,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.347,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.348,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.349,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.350,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.351,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.352,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.353,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.354,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.355,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.356,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.357,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.358,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.359,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.360,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.361,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.362,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.363,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.364,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.365,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.366,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.367,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.368,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.369,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.370,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.371,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.372,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.373,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.374,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.375,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.376,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.377,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.378,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.379,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.380,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.381,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.382,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.383,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.384,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.385,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.386,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.387,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.388,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.389,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.390,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.391,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.392,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.393,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.394,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.395,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.396,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.397,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.398,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.399,= 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.2,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.3,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.4,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.5,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.6,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.7,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.8,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.9,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.10,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.11,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.12,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.13,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.14,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.15,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.16,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.17,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.18,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.19,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.20,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.21,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.22,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.23,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.24,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.25,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.26,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.27,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.28,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.29,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.30,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.31,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.32,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.33,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.34,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.35,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.36,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.37,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.38,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.39,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.40,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.41,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.42,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.43,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.44,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.45,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.46,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.47,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.48,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.49,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.50,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.51,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.52,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.53,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.54,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.55,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.56,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.57,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.58,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.59,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.60,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.61,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.62,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.63,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.64,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.65,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.66,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.67,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.68,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.69,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.70,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.71,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.72,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.73,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.74,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.75,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.76,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.77,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.78,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.79,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.80,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.81,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.82,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.83,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.84,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.85,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.86,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.87,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.88,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.89,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.90,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.91,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.92,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.93,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.94,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.95,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.96,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.97,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.98,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.99,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.100,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.101,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.102,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.103,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.104,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.105,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.106,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.107,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.108,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.109,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.110,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.111,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.112,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.113,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.114,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.115,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.116,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.117,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.118,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.119,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.120,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.121,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.122,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.123,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.124,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.125,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.126,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.127,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.128,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.129,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.130,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.131,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.132,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.133,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.134,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.135,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.136,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.137,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.138,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.139,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.140,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.141,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.142,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.143,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.144,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.145,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.146,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.147,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.148,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.149,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.150,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.151,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.152,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.153,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.154,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.155,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.156,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.157,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.158,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.159,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.160,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.161,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.162,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.163,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.164,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.165,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.166,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.167,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.168,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.169,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.170,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.171,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.172,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.173,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.174,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.175,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.176,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.177,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.178,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.179,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.180,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.181,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.182,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.183,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.184,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.185,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.186,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.187,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.188,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.189,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.190,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.191,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.192,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.193,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.194,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.195,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.196,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.197,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.198,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.199,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.200,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.201,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.202,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.203,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.204,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.205,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.206,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.207,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.208,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.209,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.210,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.211,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.212,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.213,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.214,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.215,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.216,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.217,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.218,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.219,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.220,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.221,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.222,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.223,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.224,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.225,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.226,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.227,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.228,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.229,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.230,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.231,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.232,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.233,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.234,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.235,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.236,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.237,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.238,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.239,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.240,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.241,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.242,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.243,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.244,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.245,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.246,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.247,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.248,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.249,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.250,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.251,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.252,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.253,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.254,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.255,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.256,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.257,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.258,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.259,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.260,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.261,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.262,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.263,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.264,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.265,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.266,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.267,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.268,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.269,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.270,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.271,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.272,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.273,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.274,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.275,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.276,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.277,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.278,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.279,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.280,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.281,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.282,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.283,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.284,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.285,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.286,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.287,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.288,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.289,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.290,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.291,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.292,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.293,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.294,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.295,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.296,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.297,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.298,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.299,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.300,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.301,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.302,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.303,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.304,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.305,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.306,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.307,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.308,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.309,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.310,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.311,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.312,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.313,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.314,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.315,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.316,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.317,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.318,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.319,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.320,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.321,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.322,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.323,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.324,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.325,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.326,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.327,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.328,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.329,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.330,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.331,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.332,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.333,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.334,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.335,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.336,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.337,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.338,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.339,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.340,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.341,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.342,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.343,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.344,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.345,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.346,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.347,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.348,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.349,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.350,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.351,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.352,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.353,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.354,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.355,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.356,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.357,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.358,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.359,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.360,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.361,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.362,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.363,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.364,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.365,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.366,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.367,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.368,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.369,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.370,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.371,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.372,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.373,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.374,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.375,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.376,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.377,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.378,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.379,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.380,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.381,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.382,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.383,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.384,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.385,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.386,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.387,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.388,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.389,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.390,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.391,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.392,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.393,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.394,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.395,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.396,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.397,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.398,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.399,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.400,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.1,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.2,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.3,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.4,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.5,= 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.6,= 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.7,= 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.8,= 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.9,= 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.10,= 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.11,= 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.12,= 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.13,= 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.14,= 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.15,= 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.16,= 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.17,= 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.18,= 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.19,= 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.20,= 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.21,= 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.22,= 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.23,= 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.24,= 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.25,= 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.26,= 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.27,= 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.28,= 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.29,= 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.30,= 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.31,= 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.32,= 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.33,= 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.34,= 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.35,= 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.36,= 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.37,= 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.38,= 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.39,= 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.40,= 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.41,= 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.42,= 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.43,= 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.44,= 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.45,= 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.46,= 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.47,= 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.48,= 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.49,= 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.50,= 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.51,= 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.52,= 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.53,= 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.54,= 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.55,= 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.56,= 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.57,= 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.58,= 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.59,= 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.60,= 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.61,= 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.62,= 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.63,= 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.64,= 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.65,= 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.66,= 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.67,= 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.68,= 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.69,= 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.70,= 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.71,= 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.72,= 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.73,= 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.74,= 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.75,= 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.76,= 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.77,= 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.78,= 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.79,= 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.80,= 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.81,= 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.82,= 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.83,= 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.84,= 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.85,= 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.86,= 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.87,= 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.88,= 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.89,= 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.90,= 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.91,= 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.92,= 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.93,= 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.94,= 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.95,= 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.96,= 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.97,= 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.98,= 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.99,= 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.100,= 100 +.1.3.6.1.4.1.22420.2.3.2.1.3.101,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.102,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.103,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.104,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.105,= 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.106,= 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.107,= 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.108,= 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.109,= 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.110,= 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.111,= 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.112,= 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.113,= 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.114,= 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.115,= 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.116,= 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.117,= 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.118,= 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.119,= 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.120,= 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.121,= 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.122,= 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.123,= 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.124,= 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.125,= 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.126,= 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.127,= 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.128,= 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.129,= 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.130,= 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.131,= 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.132,= 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.133,= 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.134,= 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.135,= 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.136,= 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.137,= 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.138,= 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.139,= 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.140,= 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.141,= 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.142,= 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.143,= 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.144,= 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.145,= 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.146,= 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.147,= 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.148,= 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.149,= 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.150,= 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.151,= 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.152,= 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.153,= 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.154,= 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.155,= 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.156,= 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.157,= 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.158,= 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.159,= 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.160,= 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.161,= 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.162,= 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.163,= 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.164,= 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.165,= 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.166,= 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.167,= 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.168,= 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.169,= 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.170,= 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.171,= 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.172,= 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.173,= 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.174,= 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.175,= 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.176,= 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.177,= 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.178,= 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.179,= 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.180,= 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.181,= 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.182,= 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.183,= 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.184,= 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.185,= 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.186,= 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.187,= 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.188,= 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.189,= 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.190,= 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.191,= 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.192,= 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.193,= 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.194,= 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.195,= 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.196,= 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.197,= 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.198,= 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.199,= 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.200,= 100 +.1.3.6.1.4.1.22420.2.3.2.1.3.201,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.202,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.203,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.204,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.205,= 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.206,= 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.207,= 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.208,= 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.209,= 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.210,= 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.211,= 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.212,= 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.213,= 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.214,= 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.215,= 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.216,= 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.217,= 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.218,= 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.219,= 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.220,= 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.221,= 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.222,= 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.223,= 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.224,= 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.225,= 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.226,= 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.227,= 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.228,= 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.229,= 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.230,= 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.231,= 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.232,= 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.233,= 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.234,= 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.235,= 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.236,= 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.237,= 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.238,= 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.239,= 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.240,= 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.241,= 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.242,= 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.243,= 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.244,= 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.245,= 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.246,= 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.247,= 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.248,= 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.249,= 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.250,= 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.251,= 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.252,= 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.253,= 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.254,= 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.255,= 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.256,= 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.257,= 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.258,= 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.259,= 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.260,= 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.261,= 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.262,= 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.263,= 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.264,= 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.265,= 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.266,= 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.267,= 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.268,= 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.269,= 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.270,= 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.271,= 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.272,= 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.273,= 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.274,= 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.275,= 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.276,= 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.277,= 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.278,= 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.279,= 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.280,= 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.281,= 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.282,= 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.283,= 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.284,= 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.285,= 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.286,= 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.287,= 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.288,= 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.289,= 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.290,= 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.291,= 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.292,= 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.293,= 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.294,= 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.295,= 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.296,= 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.297,= 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.298,= 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.299,= 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.300,= 100 +.1.3.6.1.4.1.22420.2.3.2.1.3.301,= 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.302,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.303,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.304,= 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.305,= 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.306,= 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.307,= 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.308,= 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.309,= 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.310,= 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.311,= 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.312,= 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.313,= 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.314,= 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.315,= 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.316,= 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.317,= 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.318,= 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.319,= 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.320,= 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.321,= 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.322,= 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.323,= 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.324,= 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.325,= 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.326,= 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.327,= 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.328,= 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.329,= 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.330,= 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.331,= 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.332,= 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.333,= 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.334,= 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.335,= 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.336,= 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.337,= 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.338,= 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.339,= 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.340,= 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.341,= 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.342,= 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.343,= 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.344,= 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.345,= 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.346,= 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.347,= 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.348,= 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.349,= 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.350,= 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.351,= 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.352,= 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.353,= 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.354,= 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.355,= 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.356,= 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.357,= 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.358,= 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.359,= 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.360,= 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.361,= 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.362,= 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.363,= 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.364,= 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.365,= 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.366,= 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.367,= 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.368,= 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.369,= 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.370,= 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.371,= 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.372,= 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.373,= 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.374,= 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.375,= 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.376,= 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.377,= 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.378,= 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.379,= 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.380,= 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.381,= 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.382,= 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.383,= 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.384,= 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.385,= 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.386,= 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.387,= 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.388,= 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.389,= 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.390,= 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.391,= 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.392,= 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.393,= 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.394,= 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.395,= 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.396,= 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.397,= 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.398,= 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.399,= 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.400,= 100 +.1.3.6.1.4.1.22420.2.3.2.1.4.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.6,= 13471464 +.1.3.6.1.4.1.22420.2.3.2.1.4.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.206,= 13188308 +.1.3.6.1.4.1.22420.2.3.2.1.4.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.206,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.6,= 13471464 +.1.3.6.1.4.1.22420.2.3.2.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.206,= 13188308 +.1.3.6.1.4.1.22420.2.3.2.1.6.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.6,= 4000629177 +.1.3.6.1.4.1.22420.2.3.2.1.7.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.206,= 1952795763 +.1.3.6.1.4.1.22420.2.3.2.1.7.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.6,= 2 +.1.3.6.1.4.1.22420.2.3.2.1.8.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.206,= 3 +.1.3.6.1.4.1.22420.2.3.2.1.8.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.6,= 12590563769 +.1.3.6.1.4.1.22420.2.3.2.1.9.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.206,= 14837697651 +.1.3.6.1.4.1.22420.2.3.2.1.9.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.206,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.6,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.206,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.400,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.1,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.3,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.5,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.8,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.9,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.10,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.11,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.12,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.13,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.14,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.15,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.16,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.17,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.18,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.19,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.20,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.21,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.22,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.23,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.24,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.25,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.26,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.27,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.28,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.29,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.30,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.31,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.32,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.33,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.34,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.35,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.36,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.37,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.38,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.39,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.40,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.41,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.42,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.43,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.44,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.45,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.46,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.47,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.48,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.49,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.50,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.51,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.52,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.53,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.54,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.55,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.56,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.57,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.58,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.59,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.60,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.61,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.62,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.63,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.64,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.65,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.66,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.67,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.68,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.69,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.70,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.71,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.72,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.73,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.74,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.75,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.76,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.77,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.78,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.79,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.80,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.81,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.82,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.83,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.84,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.85,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.86,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.87,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.88,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.89,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.90,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.91,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.92,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.93,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.94,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.95,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.96,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.97,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.98,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.99,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.100,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.101,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.102,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.103,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.104,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.105,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.106,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.107,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.108,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.109,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.110,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.111,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.112,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.113,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.114,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.115,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.116,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.117,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.118,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.119,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.120,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.121,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.122,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.123,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.124,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.125,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.126,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.127,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.128,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.129,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.130,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.131,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.132,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.133,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.134,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.135,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.136,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.137,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.138,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.139,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.140,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.141,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.142,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.143,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.144,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.145,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.146,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.147,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.148,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.149,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.150,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.151,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.152,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.153,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.154,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.155,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.156,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.157,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.158,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.159,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.160,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.161,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.162,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.163,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.164,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.165,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.166,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.167,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.168,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.169,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.170,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.171,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.172,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.173,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.174,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.175,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.176,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.177,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.178,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.179,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.180,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.181,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.182,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.183,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.184,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.185,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.186,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.187,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.188,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.189,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.190,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.191,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.192,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.193,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.194,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.195,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.196,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.197,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.198,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.199,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.200,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.201,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.202,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.203,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.204,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.205,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.206,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.207,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.208,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.209,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.210,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.211,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.212,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.213,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.214,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.215,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.216,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.217,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.218,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.219,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.220,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.221,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.222,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.223,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.224,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.225,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.226,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.227,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.228,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.229,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.230,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.231,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.232,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.233,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.234,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.235,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.236,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.237,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.238,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.239,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.240,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.241,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.242,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.243,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.244,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.245,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.246,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.247,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.248,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.249,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.250,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.251,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.252,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.253,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.254,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.255,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.256,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.257,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.258,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.259,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.260,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.261,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.262,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.263,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.264,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.265,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.266,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.267,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.268,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.269,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.270,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.271,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.272,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.273,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.274,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.275,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.276,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.277,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.278,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.279,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.280,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.281,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.282,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.283,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.284,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.285,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.286,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.287,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.288,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.289,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.290,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.291,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.292,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.293,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.294,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.295,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.296,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.297,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.298,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.299,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.300,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.301,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.302,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.303,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.304,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.305,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.306,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.307,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.308,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.309,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.310,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.311,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.312,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.313,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.314,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.315,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.316,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.317,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.318,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.319,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.320,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.321,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.322,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.323,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.324,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.325,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.326,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.327,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.328,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.329,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.330,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.331,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.332,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.333,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.334,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.335,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.336,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.337,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.338,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.339,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.340,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.341,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.342,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.343,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.344,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.345,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.346,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.347,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.348,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.349,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.350,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.351,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.352,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.353,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.354,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.355,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.356,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.357,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.358,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.359,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.360,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.361,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.362,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.363,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.364,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.365,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.366,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.367,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.368,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.369,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.370,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.371,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.372,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.373,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.374,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.375,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.376,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.377,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.378,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.379,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.380,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.381,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.382,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.383,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.384,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.385,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.386,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.387,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.388,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.389,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.390,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.391,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.392,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.393,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.394,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.395,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.396,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.397,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.398,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.399,= 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.400,= 0 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.1,"= ""Traffic-1""" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.2,"= ""Traffic-2""" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.3,"= ""Traffic-3""" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.4,"= ""Traffic-4""" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.1,= 100 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.2,= 100 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.3,= 100 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.4,= 100 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.2,= 2 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.3,= 3 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.4,= 4 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.5,= 0 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.6,= 0 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.7,= 0 +.1.3.6.1.4.1.22420.2.3.5.3.1.0,= 5 +.1.3.6.1.4.1.22420.2.4.1.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.4.1.1.2.3,= 3 +.1.3.6.1.4.1.22420.2.4.1.1.3.1,= 7 +.1.3.6.1.4.1.22420.2.4.1.1.3.3,= 128 +.1.3.6.1.4.1.22420.2.4.1.1.4.1,"= ""OEM """ +.1.3.6.1.4.1.22420.2.4.1.1.4.3,"= ""PROLABS """ +.1.3.6.1.4.1.22420.2.4.1.1.5.1,"= ""00 00 00 """ +.1.3.6.1.4.1.22420.2.4.1.1.5.3,"= ""00 00 00 """ +.1.3.6.1.4.1.22420.2.4.1.1.6.1,"= ""53 46 50 2D 4C 58 2D 53 4D 00 00 00 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.4.1.1.6.3,"= ""SFP-1000BASE-T-C""" +.1.3.6.1.4.1.22420.2.4.1.1.7.1,"= ""31 2E 30 20 00 05 1E 4E 43 49 35 30 4C 30 38 35 """ +.1.3.6.1.4.1.22420.2.4.1.1.7.3,"= ""41 32 20 20 00 00 00 50 52 4C 39 34 30 30 33 39 """ +.1.3.6.1.4.1.22420.2.4.1.1.8.1,= 1310 +.1.3.6.1.4.1.22420.2.4.1.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.4.1.1.9.1,"= ""NCI50L0853 """ +.1.3.6.1.4.1.22420.2.4.1.1.9.3,"= ""PRL940039251 """ +.1.3.6.1.4.1.22420.2.4.1.1.10.1,= 2009 +.1.3.6.1.4.1.22420.2.4.1.1.10.3,= 2021 +.1.3.6.1.4.1.22420.2.4.1.1.11.1,= 10 +.1.3.6.1.4.1.22420.2.4.1.1.11.3,= 8 +.1.3.6.1.4.1.22420.2.4.1.1.12.1,= 1 +.1.3.6.1.4.1.22420.2.4.1.1.12.3,= 16 +.1.3.6.1.4.1.22420.2.4.1.1.13.1,= 0 +.1.3.6.1.4.1.22420.2.4.1.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.4.1.1.14.1,= 0 +.1.3.6.1.4.1.22420.2.4.1.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.4.1.1.15.1,= 1 +.1.3.6.1.4.1.22420.2.4.1.1.15.3,= 1 +.1.3.6.1.4.1.22420.2.4.1.1.16.1,= 2 +.1.3.6.1.4.1.22420.2.4.1.1.16.3,= 2 +.1.3.6.1.4.1.22420.2.4.1.1.17.1,= 2 +.1.3.6.1.4.1.22420.2.4.1.1.17.3,= 2 +.1.3.6.1.4.1.22420.2.4.1.1.18.1,= 2 +.1.3.6.1.4.1.22420.2.4.1.1.18.3,= 2 +.1.3.6.1.4.1.22420.2.4.1.1.19.1,= 3 +.1.3.6.1.4.1.22420.2.4.1.1.19.3,= 3 +.1.3.6.1.4.1.22420.2.4.1.1.20.1,= 4 +.1.3.6.1.4.1.22420.2.4.1.1.20.3,= 4 +.1.3.6.1.4.1.22420.2.4.1.1.21.1,"= ""00 00 00 02 12 00 0D 01 """ +.1.3.6.1.4.1.22420.2.4.1.1.21.3,"= ""00 00 00 08 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.4.2.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.4.2.1.2.3,= 3 +.1.3.6.1.4.1.22420.2.4.2.1.3.1,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.3.3,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.4.1,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.4.3,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.5.1,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.7.1,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.7.3,= 0 +.1.3.6.1.4.1.22420.2.4.2.1.8.1,"= ""-inf dBm" +.1.3.6.1.4.1.22420.2.4.2.1.8.3,"= ""-inf dBm" +.1.3.6.1.4.1.22420.2.4.2.1.9.1,"= ""-inf dBm" +.1.3.6.1.4.1.22420.2.4.2.1.9.3,"= ""-inf dBm" +.1.3.6.1.4.1.22420.2.4.3.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.4.3.1.2.3,= 3 +.1.3.6.1.4.1.22420.2.4.3.1.3.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.3.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.4.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.4.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.5.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.7.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.7.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.8.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.9.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.9.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.11.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.12.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.12.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.13.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.14.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.15.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.15.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.17.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.17.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.19.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.19.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.20.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.20.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.21.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.21.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.22.3,= 0 +.1.3.6.1.4.1.22420.2.4.3.1.23.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.23.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.24.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.24.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.25.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.25.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.26.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.26.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.27.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.27.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.28.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.28.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.29.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.29.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.30.1,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.3.1.30.3,"= ""2D 69 6E 00 20 64 42 6D 0A """ +.1.3.6.1.4.1.22420.2.4.4.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.4.4.1.2.3,= 3 +.1.3.6.1.4.1.22420.2.4.4.1.3.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.3.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.4.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.4.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.5.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.5.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.6.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.6.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.7.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.7.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.8.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.8.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.9.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.9.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.10.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.10.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.11.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.11.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.12.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.12.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.13.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.13.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.14.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.14.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.15.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.15.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.16.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.16.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.17.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.17.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.18.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.18.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.19.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.19.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.20.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.20.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.21.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.21.3,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.22.1,= 2 +.1.3.6.1.4.1.22420.2.4.4.1.22.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.2.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.2.3,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.2.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.3.1,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.3.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.3.3,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.3.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.4.1,= 10000 +.1.3.6.1.4.1.22420.2.5.1.1.4.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.4.3,= 10000 +.1.3.6.1.4.1.22420.2.5.1.1.4.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.5.1,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.5.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.5.3,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.5.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.6.1,= 10000 +.1.3.6.1.4.1.22420.2.5.1.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.6.3,= 10000 +.1.3.6.1.4.1.22420.2.5.1.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.7.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.7.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.7.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.7.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.8.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.8.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.8.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.9.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.9.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.9.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.9.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.12.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.12.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.12.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.12.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.13.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.13.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.13.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.17.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.17.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.17.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.17.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.18.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.18.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.23.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.23.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.23.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.23.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.24.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.24.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.24.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.24.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.28.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.28.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.28.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.28.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.29.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.29.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.29.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.29.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.34.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.34.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.34.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.34.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.35.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.35.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.35.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.35.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.39.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.39.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.39.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.39.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.40.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.40.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.40.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.40.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.45.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.45.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.45.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.45.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.46.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.46.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.46.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.46.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.50.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.50.2,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.50.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.50.4,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.51.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.51.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.51.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.51.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.55.1,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.55.2,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.55.3,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.55.4,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.56.1,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.56.2,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.56.3,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.56.4,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.57.1,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.57.2,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.57.3,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.57.4,"= ""00 00 01 01 00 00 00 00 """ +.1.3.6.1.4.1.22420.2.5.1.1.58.1,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.58.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.58.3,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.58.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.59.1,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.59.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.59.3,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.59.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.92.1,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.92.2,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.92.3,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.92.4,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.93.1,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.93.2,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.93.3,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.93.4,"= """"" +.1.3.6.1.4.1.22420.2.5.1.1.94.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.94.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.94.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.94.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.98.1,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.98.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.98.3,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.98.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.99.1,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.99.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.99.3,= 1 +.1.3.6.1.4.1.22420.2.5.1.1.99.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.100.1,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.100.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.100.3,= 2 +.1.3.6.1.4.1.22420.2.5.1.1.100.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.101.1,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.101.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.101.3,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.101.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.102.1,= 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.102.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.102.3,= 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.102.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.103.1,= 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.103.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.103.3,= 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.103.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.106.1,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.106.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.106.3,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.106.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.107.1,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.107.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.107.3,= 60 +.1.3.6.1.4.1.22420.2.5.1.1.107.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.4,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.1,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.2,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.3,= 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.4,= 0 +.1.3.6.1.4.1.22420.2.5.2.1.1.1,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.1.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.1.3,= 3 +.1.3.6.1.4.1.22420.2.5.2.1.1.4,= 4 +.1.3.6.1.4.1.22420.2.5.2.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.2.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.2.3,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.2.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.3.1,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.3.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.3.3,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.3.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.1,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.2,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.3,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.4,= 2 +.1.3.6.1.4.1.22420.2.5.2.1.12.1,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.5.2.1.12.3,= 1 +.1.3.6.1.4.1.22420.2.5.2.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.5.2.1.13.1,"= ""00:15:AD:65:F4:35""" +.1.3.6.1.4.1.22420.2.5.2.1.13.2,"= ""00:15:AD:65:F2:A5""" +.1.3.6.1.4.1.22420.2.5.2.1.13.3,"= ""00:15:AD:65:F4:15""" +.1.3.6.1.4.1.22420.2.5.2.1.13.4,"= ""00:15:AD:65:F2:A5""" +.1.3.6.1.4.1.22420.2.5.4.1.1.1,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.1.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.1.3,= 3 +.1.3.6.1.4.1.22420.2.5.4.1.1.4,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.2.1,"= ""PAA_Site573_VL2216""" +.1.3.6.1.4.1.22420.2.5.4.1.2.2,"= ""PAA_site573_2216_PNAP""" +.1.3.6.1.4.1.22420.2.5.4.1.2.3,"= ""PAA_Site573_VL2217""" +.1.3.6.1.4.1.22420.2.5.4.1.2.4,"= ""PAA_site573_2217_PNAP""" +.1.3.6.1.4.1.22420.2.5.4.1.3.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.3.2,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.3.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.3.4,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.4.1,= 66 +.1.3.6.1.4.1.22420.2.5.4.1.4.2,= 66 +.1.3.6.1.4.1.22420.2.5.4.1.4.3,= 66 +.1.3.6.1.4.1.22420.2.5.4.1.4.4,= 66 +.1.3.6.1.4.1.22420.2.5.4.1.5.1,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.5.2,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.5.3,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.5.4,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.6.1,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.6.2,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.6.3,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.6.4,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.7.1,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.7.2,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.7.3,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.7.4,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.8.1,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.8.2,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.8.3,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.8.4,= 1000 +.1.3.6.1.4.1.22420.2.5.4.1.9.1,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.9.2,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.9.3,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.9.4,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.10.1,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.10.2,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.10.3,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.10.4,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.11.1,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.11.2,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.11.3,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.11.4,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.12.1,= 2000 +.1.3.6.1.4.1.22420.2.5.4.1.12.2,= 2000 +.1.3.6.1.4.1.22420.2.5.4.1.12.3,= 2000 +.1.3.6.1.4.1.22420.2.5.4.1.12.4,= 2000 +.1.3.6.1.4.1.22420.2.5.4.1.13.1,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.13.2,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.13.3,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.13.4,= 60000 +.1.3.6.1.4.1.22420.2.5.4.1.14.1,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.14.2,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.14.3,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.14.4,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.15.1,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.15.2,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.15.3,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.15.4,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.16.1,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.16.2,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.16.3,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.16.4,= 100000 +.1.3.6.1.4.1.22420.2.5.4.1.17.1,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.17.2,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.17.3,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.17.4,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.18.1,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.18.2,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.18.3,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.18.4,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.19.1,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.19.2,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.19.3,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.19.4,= 10000 +.1.3.6.1.4.1.22420.2.5.4.1.20.1,"= ""EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.5.4.1.20.2,"= ""EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.5.4.1.20.3,"= ""EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.5.4.1.20.4,"= ""EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.5.4.1.21.1,"= ""00 15 AD 65 F4 35 """ +.1.3.6.1.4.1.22420.2.5.4.1.21.2,"= ""00 15 AD 65 F2 A5 """ +.1.3.6.1.4.1.22420.2.5.4.1.21.3,"= ""00 15 AD 65 F4 15 """ +.1.3.6.1.4.1.22420.2.5.4.1.21.4,"= ""00 15 AD 65 F2 A5 """ +.1.3.6.1.4.1.22420.2.5.4.1.22.1,= 35068 +.1.3.6.1.4.1.22420.2.5.4.1.22.2,= 35068 +.1.3.6.1.4.1.22420.2.5.4.1.22.3,= 35068 +.1.3.6.1.4.1.22420.2.5.4.1.22.4,= 35068 +.1.3.6.1.4.1.22420.2.5.4.1.23.1,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.23.2,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.23.3,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.23.4,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.24.1,= 2216 +.1.3.6.1.4.1.22420.2.5.4.1.24.2,= 2216 +.1.3.6.1.4.1.22420.2.5.4.1.24.3,= 2217 +.1.3.6.1.4.1.22420.2.5.4.1.24.4,= 2217 +.1.3.6.1.4.1.22420.2.5.4.1.25.1,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.25.2,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.25.3,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.25.4,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.26.1,= 2573 +.1.3.6.1.4.1.22420.2.5.4.1.26.2,= 2573 +.1.3.6.1.4.1.22420.2.5.4.1.26.3,= 3573 +.1.3.6.1.4.1.22420.2.5.4.1.26.4,= 3573 +.1.3.6.1.4.1.22420.2.5.4.1.27.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.27.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.27.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.27.4,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.4,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.29.1,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.29.2,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.29.3,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.29.4,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.30.1,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.30.2,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.30.3,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.30.4,= 4 +.1.3.6.1.4.1.22420.2.5.4.1.31.1,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.31.2,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.31.3,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.31.4,= 50000 +.1.3.6.1.4.1.22420.2.5.4.1.32.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.32.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.32.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.32.4,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.33.1,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.33.2,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.33.3,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.33.4,= 1 +.1.3.6.1.4.1.22420.2.5.4.1.34.1,= 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.34.2,= 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.34.3,= 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.34.4,= 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.35.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.35.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.35.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.35.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.37.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.37.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.37.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.37.4,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.38.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.38.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.38.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.38.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.40.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.40.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.40.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.40.4,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.41.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.41.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.41.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.41.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.43.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.43.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.43.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.43.4,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.44.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.44.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.44.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.44.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.1,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.2,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.3,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.4,= 2 +.1.3.6.1.4.1.22420.2.5.4.1.46.1,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.46.2,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.46.3,= 0 +.1.3.6.1.4.1.22420.2.5.4.1.46.4,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755427,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755428,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755429,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755430,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755431,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755432,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755433,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755434,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755435,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755436,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755437,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755438,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755439,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755440,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755441,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755427,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755428,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755429,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755430,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755431,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755432,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755433,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755434,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755435,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755436,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755437,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755438,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755439,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755440,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755441,= 3 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755427,= 1755427 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755428,= 1755428 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755429,= 1755429 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755430,= 1755430 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755431,= 1755431 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755432,= 1755432 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755433,= 1755433 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755434,= 1755434 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755435,= 1755435 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755436,= 1755436 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755437,= 1755437 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755438,= 1755438 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755439,= 1755439 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755440,= 1755440 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755441,= 1755441 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755427,= 1755427 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755428,= 1755428 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755429,= 1755429 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755430,= 1755430 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755431,= 1755431 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755432,= 1755432 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755433,= 1755433 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755434,= 1755434 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755435,= 1755435 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755436,= 1755436 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755437,= 1755437 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755438,= 1755438 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755439,= 1755439 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755440,= 1755440 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755441,= 1755441 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755427,"= ""07 B5 05 03 0F 27 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755428,"= ""07 B5 05 03 0F 28 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755429,"= ""07 B5 05 03 0F 29 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755430,"= ""07 B5 05 03 0F 2A 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755431,"= ""07 B5 05 03 0F 2B 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755432,"= ""07 B5 05 03 0F 2C 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755433,"= ""07 B5 05 03 0F 2D 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755434,"= ""07 B5 05 03 0F 2E 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755435,"= ""07 B5 05 03 0F 2F 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755436,"= ""07 B5 05 03 0F 30 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755437,"= ""07 B5 05 03 0F 31 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755438,"= ""07 B5 05 03 0F 32 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755439,"= ""07 B5 05 03 0F 33 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755440,"= ""07 B5 05 03 0F 34 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755441,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755427,"= ""07 B5 05 03 0F 27 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755428,"= ""07 B5 05 03 0F 28 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755429,"= ""07 B5 05 03 0F 29 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755430,"= ""07 B5 05 03 0F 2A 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755431,"= ""07 B5 05 03 0F 2B 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755432,"= ""07 B5 05 03 0F 2C 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755433,"= ""07 B5 05 03 0F 2D 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755434,"= ""07 B5 05 03 0F 2E 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755435,"= ""07 B5 05 03 0F 2F 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755436,"= ""07 B5 05 03 0F 30 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755437,"= ""07 B5 05 03 0F 31 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755438,"= ""07 B5 05 03 0F 32 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755439,"= ""07 B5 05 03 0F 33 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755440,"= ""07 B5 05 03 0F 34 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755441,"= ""07 B5 05 03 0F 35 00 00 2D 07 00 """ +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755427,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755428,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755429,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755430,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755431,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755432,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755433,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755434,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755435,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755436,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755437,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755438,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755439,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755440,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755441,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755427,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755428,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755429,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755430,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755431,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755432,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755433,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755434,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755435,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755436,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755437,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755438,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755439,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755440,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755441,= 1 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755427,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755428,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755429,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755430,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755431,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755432,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755433,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755434,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755435,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755436,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755437,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755438,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755439,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755440,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755441,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755427,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755428,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755429,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755430,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755431,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755432,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755433,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755434,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755435,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755436,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755437,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755438,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755439,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755440,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755441,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755427,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755428,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755429,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755430,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755431,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755432,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755433,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755434,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755435,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755436,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755437,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755438,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755439,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755440,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755441,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755427,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755428,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755429,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755430,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755431,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755432,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755433,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755434,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755435,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755436,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755437,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755438,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755439,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755440,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755441,= 10000 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755427,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755428,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755429,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755430,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755431,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755432,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755433,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755434,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755435,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755436,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755437,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755438,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755439,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755440,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755441,= 2 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755427,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755428,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755429,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755430,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755431,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755432,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755433,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755434,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755435,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755436,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755437,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755438,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755439,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755440,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755441,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755427,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755428,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755429,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755430,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755431,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755432,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755433,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755434,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755435,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755436,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755437,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755438,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755439,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755440,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755441,= 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755427,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755428,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755429,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755430,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755431,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755432,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755433,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755434,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755435,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755436,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755437,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755438,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755439,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755440,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755441,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755427,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755428,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755429,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755430,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755431,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755432,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755433,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755434,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755435,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755436,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755437,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755438,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755439,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755440,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755441,= 60 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755441,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755427,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755428,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755429,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755430,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755431,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755432,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755433,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755434,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755435,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755436,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755437,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755438,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755439,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755440,= 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755441,= 0 +.1.3.6.1.4.1.22420.2.6.1.1.2.1,"= ""150Mb_Reg""" +.1.3.6.1.4.1.22420.2.6.1.1.3.1,= 154000 +.1.3.6.1.4.1.22420.2.6.1.1.4.1,= 8 +.1.3.6.1.4.1.22420.2.6.1.1.5.1,= 40000 +.1.3.6.1.4.1.22420.2.6.1.1.6.1,= 8 +.1.3.6.1.4.1.22420.2.6.1.1.7.1,= 1 +.1.3.6.1.4.1.22420.2.6.1.1.8.1,= 2 +.1.3.6.1.4.1.22420.2.6.1.1.9.1,= 1 +.1.3.6.1.4.1.22420.2.6.1.1.10.1,= 1 +.1.3.6.1.4.1.22420.2.6.1.1.11.1,= 165000 +.1.3.6.1.4.1.22420.2.6.1.1.12.1,= 40000 +.1.3.6.1.4.1.22420.2.6.2.1.2.1,= 2716569892 +.1.3.6.1.4.1.22420.2.6.2.1.3.1,= 5 +.1.3.6.1.4.1.22420.2.6.2.1.4.1,= 24191406372 +.1.3.6.1.4.1.22420.2.6.2.1.5.1,= 24075872 +.1.3.6.1.4.1.22420.2.6.2.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.7.1,= 24075872 +.1.3.6.1.4.1.22420.2.6.2.1.8.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.9.1,= 1327175847 +.1.3.6.1.4.1.22420.2.6.2.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.11.1,= 1327175847 +.1.3.6.1.4.1.22420.2.6.2.1.12.1,= 1167711 +.1.3.6.1.4.1.22420.2.6.2.1.13.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.14.1,= 1167711 +.1.3.6.1.4.1.22420.2.6.2.1.15.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.16.1,= 15105527127 +.1.3.6.1.4.1.22420.2.6.2.1.17.1,= 16295758 +.1.3.6.1.4.1.22420.2.6.2.1.18.1,= 9085879245 +.1.3.6.1.4.1.22420.2.6.2.1.19.1,= 7780114 +.1.3.6.1.4.1.22420.2.6.2.1.20.1,= 1327175847 +.1.3.6.1.4.1.22420.2.6.2.1.21.1,= 1167711 +.1.3.6.1.4.1.22420.2.6.2.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.23.1,= 0 +.1.3.6.1.4.1.22420.2.6.2.1.24.1,= 0 +.1.3.6.1.4.1.22420.2.6.5.1.1.0,= 28 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.51,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.52,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.53,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.54,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.55,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.56,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.1,"= ""8P0D-8P0D""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.2,"= ""8P0D-7P1D""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.3,"= ""8P0D-6P2D""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.4,"= ""8P0D-5P3D""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.51,"= ""*EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.52,"= ""*ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.53,"= ""*EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.54,"= ""*ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.55,"= ""*LAG-1""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.56,"= ""*LAG-2""" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.51,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.52,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.53,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.54,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.55,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.56,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.1,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.4,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.51,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.52,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.53,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.54,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.55,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.56,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.1,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.4,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.51,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.52,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.53,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.54,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.55,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.56,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.4,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.2,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.4,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.0,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.2,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.4,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.0,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.2,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.3,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.4,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.5,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.6,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.7,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.1,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.3,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.4,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.5,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.6,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.7,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.8,= 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.1,= 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.2,= 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.3,= 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.4,= 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.5,= 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.6,= 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.7,= 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.8,= 7 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.1,"= ""EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.2,"= ""ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.3,"= ""EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.4,"= ""ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.5,"= ""Management""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.6,"= ""LAG-1""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.7,"= ""LAG-2""" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.1,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.2,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.3,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.4,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.5,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.6,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.7,"= """"" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.1,"= ""00 15 AD 47 3E 61 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.2,"= ""00 15 AD 47 3E 62 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.3,"= ""00 15 AD 47 3E 63 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.4,"= ""00 15 AD 47 3E 64 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.5,"= ""00 15 AD 47 3E 65 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.6,"= ""00 15 AD 47 3E 61 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.7,"= ""00 15 AD 47 3E 63 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.1,= .1.3.6.1.4.1.22420.1.1.10.1.1.1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.2,= .1.3.6.1.4.1.22420.1.1.10.1.1.2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.3,= .1.3.6.1.4.1.22420.1.1.10.1.1.3 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.4,= .1.3.6.1.4.1.22420.1.1.10.1.1.4 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.5,= .1.3.6.1.4.1.22420.1.1.10.1.1.5 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.6,= .1.3.6.1.4.1.22420.1.1.10.1.1.6 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.7,= .1.3.6.1.4.1.22420.1.1.10.1.1.7 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.2,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.3,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.4,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.6,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.7,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.1,= 4096 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.2,= 4096 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.3,= 2000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.4,= 4096 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.5,= 2000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.6,= 10240 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.7,= 10240 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.2,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.3,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.4,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.6,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.7,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.1,= 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.2,= 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.3,= 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.4,= 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.5,= 100 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.6,= 10000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.7,= 10000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.2,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.3,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.4,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.6,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.7,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.2,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.3,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.4,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.6,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.7,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.2,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.3,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.4,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.6,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.7,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.1,"= ""00 00 00 E0 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.2,"= ""00 00 00 EA """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.3,"= ""00 00 00 EA """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.4,"= ""00 00 00 E0 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.5,"= ""00 00 00 CA """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.6,"= ""00 00 00 E0 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.7,"= ""00 00 00 E0 """ +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.2,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.3,= 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.4,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.1,= 1000 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.5,= 100 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.1,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.2,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.3,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.4,"= ""00 00 00 E0 """ +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.5,"= ""00 00 00 CF """ +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.6,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.7,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.2,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.3,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.4,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.6,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.7,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.1,"= ""00 00 02 """ +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.2,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.3,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.4,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.5,"= ""00 00 80 """ +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.6,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.7,"= """"" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.1,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.1,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.2,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.3,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.4,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.5,= 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.6,= 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.7,= 2 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.1,"= ""FF FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.2,"= ""FF FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.3,"= ""FF FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.4,"= ""FF FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.5,"= ""FF FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.6,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.7,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.1,= 15250077610 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.2,= 110445216 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.3,= 12089036710 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.4,= 354824130 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.5,= 1389916831 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.1,= 15250077610 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.2,= 110445216 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.3,= 12089036710 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.4,= 354824130 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.5,= 1389916831 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.1,= 20489450 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.3,= 12156384 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.5,= 8738407 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.1,= 1327125 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.2,= 751328 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.3,= 1854514 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.4,= 2381370 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.5,= 6 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.1,= 64 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.3,= 24 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.5,= 558852 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.1,= 20489655 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.5,= 8739318 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.3,= 3630757 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.5,= 763909 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.1,= 10311905 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.3,= 774602 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.5,= 6697154 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.1,= 1829023 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.2,= 751328 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.3,= 2010683 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.4,= 2381370 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.5,= 835749 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.1,= 2878 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.3,= 3635 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.5,= 765806 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.1,= 23328 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.3,= 2148 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.5,= 110624 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.1,= 9649475 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.3,= 7589097 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.5,= 53576 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.1,= 30 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.5,= 70447 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.1,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.2,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.3,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.4,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.5,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.6,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.7,"= ""7F FF FF FF """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.1,= 12813326425 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.2,= 135053161 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.3,= 15078973313 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.4,= 314336220 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.5,= 132731521314 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.1,= 12813326425 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.2,= 135053161 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.3,= 15078973313 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.4,= 314336220 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.5,= 132731521314 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.1,= 12685439 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.3,= 13188103 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.5,= 6717361 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.1,= 1333629 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.2,= 755094 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.3,= 1854490 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.4,= 2381335 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.5,= 1059020007 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.1,= 786060 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.2,= 35 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.3,= 64 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.5,= 291437231 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.3,= 3292 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.1,= 13471464 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.5,= 1121596659 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.1,= 976276 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.2,= 42 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.3,= 2010989 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.5,= 86506700 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.1,= 4299190 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.2,= 23 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.3,= 524707 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.5,= 1211571089 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.1,= 1491555 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.2,= 755029 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.3,= 2361587 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.4,= 2381335 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.5,= 37333757 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.1,= 3686 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.2,= 35 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.3,= 3003 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.5,= 16931363 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.1,= 2165 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.3,= 24786 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.5,= 2365546 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.1,= 836135 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.3,= 10120877 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.5,= 2436877 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.1,= 7196121 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.5,= 29267 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.5,= 2 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.1,"= ""E0 """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.2,"= ""E0 """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.3,"= ""E0 """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.4,"= ""E0 """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.5,"= ""E0 """ +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.6,"= """"" +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.7,"= """"" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.1,"= ""EVEN_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.2,"= ""ODD_VLAN_UPLINK""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.3,"= ""EVEN_VLAN_DOWNLIN""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.4,"= ""ODD_VLAN_DOWNLINK""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.5,"= ""Management""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.6,"= ""LAG-1""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.7,"= ""LAG-2""" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.1,= 21816639 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.2,= 751328 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.3,= 14010922 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.4,= 2381370 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.5,= 9297715 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.1,= 14805128 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.2,= 755129 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.3,= 15045949 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.4,= 2381335 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.5,= 1357175081 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.1,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.1,= 15250077610 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.2,= 110445216 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.3,= 12089036710 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.4,= 354824130 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.5,= 1389962972 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.1,= 12813326425 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.2,= 135053161 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.3,= 15078973313 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.4,= 314336220 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.5,= 132731573180 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.6,= 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.7,= 0 +.1.3.6.1.4.1.22420.2.9.1.4.1.0,= 11 +.1.3.6.1.4.1.22420.2.11.1.1.4.0,= 0 +.1.3.6.1.4.1.22420.2.11.1.1.5.0,= 0 +.1.3.6.1.4.1.22420.2.14.1.1.1.0,= 294 +.1.3.6.1.4.1.22420.2.14.1.1.2.0,= 101 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.1,= .1.3.6.1.4.1.22420.2.2.3 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.2,= .1.3.6.1.4.1.22420.2.2.4 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.3,= .1.3.6.1.4.1.22420.2.1.10 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.4,= .1.3.6.1.4.1.22420.2.1.11 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.5,= .1.3.6.1.4.1.22420.2.9.1.1.1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.6,= .1.3.6.1.4.1.22420.2.3.1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.7,= .1.3.6.1.4.1.22420.2.6.1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.1,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.2,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.3,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.4,= 2 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.5,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.6,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.7,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.1,"= ""Transaction Identifier for acdSmapL2FilterTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.2,"= ""Transaction Identifier for acdSmapIPv4FilterTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.3,"= ""Transaction Identifier for acdAlarmCfgTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.4,"= ""Transaction Identifier for acdAlarmStatusTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.5,"= ""Transaction Identifier for acdPortConfigTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.6,"= ""Transaction Identifier for acdPolicyTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.7,"= ""Transaction Identifier for acdRegulatorTable""" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.1,= 2 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.2,= 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.3,= 247 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.4,= 101 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.5,= 11 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.6,= 5 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.7,= 28 +.1.3.6.1.4.1.22420.2.14.1.3.2.0,= 25213 +.1.3.6.1.4.1.22420.2.21.1.1.1.2.1,"= ""PORT-1-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.2,"= ""PORT-1-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.3,"= ""PORT-1-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.4,"= ""PORT-1-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.5,"= ""PORT-1-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.6,"= ""PORT-1-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.7,"= ""PORT-2-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.8,"= ""PORT-2-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.9,"= ""PORT-2-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.10,"= ""PORT-2-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.11,"= ""PORT-2-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.12,"= ""PORT-2-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.13,"= ""PORT-3-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.14,"= ""PORT-3-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.15,"= ""PORT-3-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.16,"= ""PORT-3-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.17,"= ""PORT-3-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.18,"= ""PORT-3-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.19,"= ""PORT-4-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.20,"= ""PORT-4-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.21,"= ""PORT-4-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.22,"= ""PORT-4-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.23,"= ""PORT-4-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.24,"= ""PORT-4-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.25,"= ""LAG-1-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.26,"= ""LAG-1-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.27,"= ""LAG-1-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.28,"= ""LAG-1-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.29,"= ""LAG-1-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.30,"= ""LAG-1-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.31,"= ""LAG-2-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.32,"= ""LAG-2-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.33,"= ""LAG-2-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.34,"= ""LAG-2-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.35,"= ""LAG-2-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.36,"= ""LAG-2-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.37,"= ""USR-1""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.38,"= ""USR-2""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.39,"= ""USR-3""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.40,"= ""USR-4""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.41,"= ""USR-5""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.42,"= ""USR-6""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.43,"= ""USR-7""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.44,"= ""USR-8""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.45,"= ""USR-9""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.46,"= ""USR-10""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.47,"= ""USR-11""" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.48,"= ""USR-12""" +.1.3.6.1.4.1.22420.2.21.1.1.1.3.1,= 7014911 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.13,= 9214906 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.1,= 7308889290 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.13,= 7509661926 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.1,= 3019843 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.13,= 3663974 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.1,= 3125030629 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.13,= 4257941434 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.1,= 1429687 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.13,= 10441 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.1,= 2165339780 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.13,= 15588278 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.1,= 1063300 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.13,= 53507 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.1,= 1610461395 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.13,= 79915650 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.1,= 3700 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.13,= 2127 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.1,= 5602774 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.13,= 3177738 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.1,= 2769 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.13,= 11285 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.1,= 4193588 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.13,= 16857358 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.1,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.13,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.1,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.13,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.1,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.13,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.1,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.13,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.1,= 12527741 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.13,= 12942828 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.1,= 14209721094 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.13,= 11863107288 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.1,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.13,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.48,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.1,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.2,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.3,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.4,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.5,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.6,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.7,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.8,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.9,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.10,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.11,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.12,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.13,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.14,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.15,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.16,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.17,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.18,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.19,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.20,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.21,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.22,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.23,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.24,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.25,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.26,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.27,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.28,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.29,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.30,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.31,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.32,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.33,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.34,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.35,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.36,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.37,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.38,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.39,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.40,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.41,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.42,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.43,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.44,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.45,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.46,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.47,= 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.48,= 0 +.1.3.111.2.802.1.1.8.1.5.1.0,= 9 +.1.3.111.2.802.1.1.8.1.5.2.1.2.1,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.2,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.3,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.4,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.5,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.6,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.7,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.8,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.3.1,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 30 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.2,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 31 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.3,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 32 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.4,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 33 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.5,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 34 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.6,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 35 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.7,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 36 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.3.8,"= ""59 2E 31 37 33 31 20 6C 65 76 65 6C 20 37 00 00" +.1.3.111.2.802.1.1.8.1.5.2.1.4.1,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.4.2,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.4.3,= 2 +.1.3.111.2.802.1.1.8.1.5.2.1.4.4,= 3 +.1.3.111.2.802.1.1.8.1.5.2.1.4.5,= 4 +.1.3.111.2.802.1.1.8.1.5.2.1.4.6,= 5 +.1.3.111.2.802.1.1.8.1.5.2.1.4.7,= 6 +.1.3.111.2.802.1.1.8.1.5.2.1.4.8,= 7 +.1.3.111.2.802.1.1.8.1.5.2.1.5.1,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.2,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.3,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.4,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.5,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.6,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.7,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.8,= 0 +.1.3.111.2.802.1.1.8.1.5.2.1.6.1,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.2,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.3,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.4,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.5,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.6,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.7,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.8,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.1,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.2,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.3,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.4,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.5,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.6,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.7,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.8,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.1,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.2,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.3,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.4,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.5,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.6,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.7,= 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.8,= 1 +.1.3.111.2.802.1.1.13.1.1.9.1.2.1,"= ""01 80 C2 00 00 0E """ +.1.3.111.2.802.1.1.13.1.2.1.0,= 15:18:20:13.08 +.1.3.111.2.802.1.1.13.1.2.2.0,= 28 +.1.3.111.2.802.1.1.13.1.2.3.0,= 27 +.1.3.111.2.802.1.1.13.1.2.4.0,= 0 +.1.3.111.2.802.1.1.13.1.2.5.0,= 27 +.1.3.111.2.802.1.1.13.1.2.6.1.3.1.1,= 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.2.1,= 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.3.1,= 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.4.1,= 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.1.1,= 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.2.1,= 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.3.1,= 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.4.1,= 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.1.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.2.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.3.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.4.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.1.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.2.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.3.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.4.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.5.1.1,= 1333527 +.1.3.111.2.802.1.1.13.1.2.7.1.5.2.1,= 754988 +.1.3.111.2.802.1.1.13.1.2.7.1.5.3.1,= 1854347 +.1.3.111.2.802.1.1.13.1.2.7.1.5.4.1,= 2381333 +.1.3.111.2.802.1.1.13.1.2.7.1.5.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.1.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.2.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.3.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.4.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.1.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.2.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.3.1,= 12 +.1.3.111.2.802.1.1.13.1.2.7.1.7.4.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.5.1,= 0 +.1.3.111.2.802.1.1.13.1.2.7.1.8.1.1,= 12 +.1.3.111.2.802.1.1.13.1.2.7.1.8.2.1,= 12 +.1.3.111.2.802.1.1.13.1.2.7.1.8.3.1,= 2 +.1.3.111.2.802.1.1.13.1.2.7.1.8.4.1,= 1 +.1.3.111.2.802.1.1.13.1.2.7.1.8.5.1,= 0 +.1.3.111.2.802.1.1.13.1.4.1.1.5.105317634.1.1.2,= 4 +.1.3.111.2.802.1.1.13.1.4.1.1.6.105317634.1.1.2,"= ""9C E1 76 13 80 D9 """ +.1.3.111.2.802.1.1.13.1.4.1.1.7.105317634.1.1.2,= 5 +.1.3.111.2.802.1.1.13.1.4.1.1.8.105317634.1.1.2,"= ""GigabitEthernet0/0/0/0""" +.1.3.111.2.802.1.1.13.1.4.1.1.9.105317634.1.1.2,"= """"" +.1.3.111.2.802.1.1.13.1.4.1.1.10.105317634.1.1.2,"= ""LNBT-NCS-55A2-001.gilarivertel.""" +.1.3.111.2.802.1.1.13.1.4.1.1.11.105317634.1.1.2,"= "" 7.5.2, NCS-5500""" +.1.3.111.2.802.1.1.13.1.4.1.1.14.105317634.1.1.2,= 2 +.1.3.111.2.802.1.1.13.1.4.1.1.15.105317634.1.1.2,= 2 +.1.3.111.2.802.1.1.13.1.4.2.1.3.105317634.1.1.2.1.4.10.10.20.160,= 2 +.1.3.111.2.802.1.1.13.1.4.2.1.3.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54,= 2 +.1.3.111.2.802.1.1.13.1.4.2.1.4.105317634.1.1.2.1.4.10.10.20.160,= 68 +.1.3.111.2.802.1.1.13.1.4.2.1.4.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54,= 68 +.1.3.111.2.802.1.1.13.1.4.2.1.5.105317634.1.1.2.1.4.10.10.20.160,= .0.0.0 +.1.3.111.2.802.1.1.13.1.4.2.1.5.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54,= .0.0.0 diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_walk.tree.json b/walks/10-13-60-102_2026-02-27_11-23-07_walk.tree.json new file mode 100644 index 0000000..3527291 --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-23-07_walk.tree.json @@ -0,0 +1,43641 @@ +{ + "1": { + "3": { + "6": { + "1": { + "2": { + "1": { + "1": { + "1": { + "0": "= AMN-1000-GT-S" + }, + "2": { + "0": "= .1.3.6.1.4.1.22420.1.1" + }, + "3": { + "0": "= 0:0:41:41.00" + }, + "4": { + "0": "= root" + }, + "5": { + "0": "= LABNID-NID12-DC-MTSO-Pri.alluvion.net" + }, + "6": { + "0": "= Unknown" + }, + "7": { + "0": "= 127" + }, + "8": { + "0": "= 0:0:00:00.32" + }, + "9": { + "1": { + "2": { + "1": "= .1.3.6.1.4.1.22420.2.1", + "2": "= .1.3.6.1.4.1.22420.2.2", + "3": "= .1.3.6.1.4.1.22420.2.3", + "4": "= .1.3.6.1.4.1.22420.2.4", + "5": "= .1.3.6.1.4.1.22420.2.5", + "6": "= .1.3.6.1.4.1.22420.2.6", + "7": "= .1.3.6.1.4.1.22420.2.7", + "8": "= .1.3.6.1.4.1.22420.2.8", + "9": "= .1.3.6.1.4.1.22420.2.9", + "10": "= .1.3.6.1.4.1.22420.2.10", + "11": "= .1.3.6.1.4.1.22420.2.11", + "12": "= .1.3.6.1.4.1.22420.2.12", + "13": "= .1.3.6.1.6.3.1", + "14": "= .1.3.6.1.2.1.49", + "15": "= .1.3.6.1.2.1.4", + "16": "= .1.3.6.1.2.1.50", + "17": "= .1.3.6.1.6.3.16.2.2.1", + "18": "= .1.3.6.1.6.3.13.3.1.3", + "19": "= .1.3.6.1.2.1.92" + }, + "3": { + "1": "= The management information definitions for the ACD-ALARM-MIB.", + "2": "= The management information definitions for the ACD-FILTER-MIB.", + "3": "= The management information definitions for the ACD-POLICY-MIB.", + "4": "= The management information definitions for the ACD-SFP-MIB.", + "5": "= The management information definitions for the ACD-PAA-MIB.", + "6": "= The management information definitions for the ACD-REGULATOR-MIB.", + "7": "= The management information definitions for the ACD-CFM-MIB.", + "8": "= The management information definitions for the ACD-SMAP-MIB.", + "9": "= The management information definitions for the ACD-PORT-MIB.", + "10": "= The management information definitions for the ACD-SHAPER-MIB.", + "11": "= The management information definitions for the ACD-DISCOVER-MIB.", + "12": "= The management information definitions for the ACD-SA-MIB.", + "13": "= The MIB module for SNMPv2 entities", + "14": "= The MIB module for managing TCP implementations", + "15": "= The MIB module for managing IP and ICMP implementations", + "16": "= The MIB module for managing UDP implementations", + "17": "= View-based Access Control Model for SNMP.", + "18": "= The MIB modules for managing SNMP Notification, plus filtering.", + "19": "= The MIB module for logging SNMP Notifications." + }, + "4": { + "1": "= 0:0:00:00.10", + "2": "= 0:0:00:00.10", + "3": "= 0:0:00:00.10", + "4": "= 0:0:00:00.10", + "5": "= 0:0:00:00.10", + "6": "= 0:0:00:00.10", + "7": "= 0:0:00:00.10", + "8": "= 0:0:00:00.10", + "9": "= 0:0:00:00.10", + "10": "= 0:0:00:00.10", + "11": "= 0:0:00:00.10", + "12": "= 0:0:00:00.10", + "13": "= 0:0:00:00.13", + "14": "= 0:0:00:00.13", + "15": "= 0:0:00:00.13", + "16": "= 0:0:00:00.13", + "17": "= 0:0:00:00.13", + "18": "= 0:0:00:00.15", + "19": "= 0:0:00:00.32" + } + } + } + }, + "2": { + "1": { + "0": "= 8" + }, + "2": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "1003": "= 1003" + }, + "2": { + "1": "= EVEN_VLAN_UPLINK", + "2": "= ODD_VLAN_UPLINK", + "3": "= EVEN_VLAN_DOWNLIN", + "4": "= ODD_VLAN_DOWNLINK", + "5": "= Management", + "6": "= LAG-1", + "7": "= LAG-2", + "1003": "= VLAN_MGMT" + }, + "3": { + "1": "= ethernetCsmacd", + "2": "= ethernetCsmacd", + "3": "= ethernetCsmacd", + "4": "= ethernetCsmacd", + "5": "= ethernetCsmacd", + "6": "= ethernetCsmacd", + "7": "= ethernetCsmacd", + "1003": "= ethernetCsmacd" + }, + "4": { + "1": "= 4096", + "2": "= 4096", + "3": "= 2000", + "4": "= 4096", + "5": "= 2000", + "6": "= 10240", + "7": "= 10240", + "1003": "= 2000" + }, + "5": { + "1": "= 1000000000", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 100000000", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "6": { + "1": "= 0:15:ad:47:3e:61", + "2": "= 0:15:ad:47:3e:62", + "3": "= 0:15:ad:47:3e:63", + "4": "= 0:15:ad:47:3e:64", + "5": "= 0:15:ad:47:3e:65", + "6": "= 0:15:ad:47:3e:61", + "7": "= 0:15:ad:47:3e:63", + "1003": "= 0:15:ad:47:3e:65" + }, + "7": { + "1": "= up", + "2": "= up", + "3": "= up", + "4": "= up", + "5": "= up", + "6": "= up", + "7": "= up", + "1003": "= up" + }, + "8": { + "1": "= up", + "2": "= down", + "3": "= down", + "4": "= down", + "5": "= up", + "6": "= down", + "7": "= down", + "1003": "= up" + }, + "9": { + "1": "= 0:0:00:00.00", + "2": "= 0:0:00:00.00", + "3": "= 0:0:00:00.00", + "4": "= 0:0:00:00.00", + "5": "= 0:0:00:00.00", + "6": "= 0:0:00:00.00", + "7": "= 0:0:00:00.00", + "1003": "= 0:0:00:00.00" + }, + "10": { + "1": "= 4223389593", + "2": "= 135053161", + "3": "= 2194071425", + "4": "= 314336220", + "5": "= 3877078151", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "11": { + "1": "= 12685439", + "2": "= 0", + "3": "= 13188103", + "4": "= 0", + "5": "= 6684985", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "12": { + "1": "= 2119675", + "2": "= 755129", + "3": "= 1854554", + "4": "= 2381335", + "5": "= 1350437934", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "14": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "15": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "16": { + "1": "= 2365165170", + "2": "= 110445216", + "3": "= 3499102118", + "4": "= 354824130", + "5": "= 1386639353", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "17": { + "1": "= 20489370", + "2": "= 0", + "3": "= 12156384", + "4": "= 0", + "5": "= 8706162", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "18": { + "1": "= 1327175", + "2": "= 751328", + "3": "= 1854538", + "4": "= 2381370", + "5": "= 558852", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "19": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "20": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "21": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "22": { + "1": "= .0.0", + "2": "= .0.0", + "3": "= .0.0", + "4": "= .0.0", + "5": "= .0.0", + "6": "= .0.0", + "7": "= .0.0", + "1003": "= .0.0" + } + } + } + }, + "4": { + "1": { + "0": "= notForwarding" + }, + "2": { + "0": "= 64" + }, + "3": { + "0": "= 11758115" + }, + "4": { + "0": "= 0" + }, + "5": { + "0": "= 25342" + }, + "6": { + "0": "= 0" + }, + "7": { + "0": "= 1346100" + }, + "8": { + "0": "= 0" + }, + "9": { + "0": "= 10386667" + }, + "10": { + "0": "= 24102802" + }, + "11": { + "0": "= 0" + }, + "12": { + "0": "= 0" + }, + "13": { + "0": "= 30 seconds" + }, + "14": { + "0": "= 10" + }, + "15": { + "0": "= 4" + }, + "16": { + "0": "= 0" + }, + "17": { + "0": "= 8526" + }, + "18": { + "0": "= 0" + }, + "19": { + "0": "= 17052" + }, + "20": { + "1": { + "1": { + "10": { + "13": { + "60": { + "102": "= 10.13.60.102" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 127.0.0.1" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 192.168.1.254" + } + } + } + }, + "2": { + "10": { + "13": { + "60": { + "102": "= 15" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 1" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 10" + } + } + } + }, + "3": { + "10": { + "13": { + "60": { + "102": "= 255.255.255.0" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 255.0.0.0" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 255.255.255.0" + } + } + } + }, + "4": { + "10": { + "13": { + "60": { + "102": "= 1" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 0" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 1" + } + } + } + } + } + }, + "21": { + "1": { + "1": { + "0": { + "0": { + "0": { + "0": "= 0.0.0.0" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 10.13.60.0" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 127.0.0.0" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 192.168.1.0" + } + } + } + }, + "2": { + "0": { + "0": { + "0": { + "0": "= 15" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 15" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 1" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 10" + } + } + } + }, + "3": { + "0": { + "0": { + "0": { + "0": "= 1" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 0" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 0" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 0" + } + } + } + }, + "7": { + "0": { + "0": { + "0": { + "0": "= 10.13.60.1" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 0.0.0.0" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 0.0.0.0" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 0.0.0.0" + } + } + } + }, + "8": { + "0": { + "0": { + "0": { + "0": "= 4" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 3" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 3" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 3" + } + } + } + }, + "9": { + "0": { + "0": { + "0": { + "0": "= 2" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 2" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 2" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 2" + } + } + } + }, + "11": { + "0": { + "0": { + "0": { + "0": "= 0.0.0.0" + } + } + }, + "10": { + "13": { + "60": { + "0": "= 255.255.255.0" + } + } + }, + "127": { + "0": { + "0": { + "0": "= 255.0.0.0" + } + } + }, + "192": { + "168": { + "1": { + "0": "= 255.255.255.0" + } + } + } + }, + "13": { + "0": { + "0": { + "0": { + "0": "= .0.0" + } + } + }, + "10": { + "13": { + "60": { + "0": "= .0.0" + } + } + }, + "127": { + "0": { + "0": { + "0": "= .0.0" + } + } + }, + "192": { + "168": { + "1": { + "0": "= .0.0" + } + } + } + } + } + }, + "22": { + "1": { + "1": { + "15": { + "10": { + "13": { + "60": { + "1": "= 15" + } + } + } + } + }, + "2": { + "15": { + "10": { + "13": { + "60": { + "1": "= b4:c:25:e0:40:6a" + } + } + } + } + }, + "3": { + "15": { + "10": { + "13": { + "60": { + "1": "= 10.13.60.1" + } + } + } + } + }, + "4": { + "15": { + "10": { + "13": { + "60": { + "1": "= dynamic" + } + } + } + } + } + } + }, + "23": { + "0": "= 0" + }, + "24": { + "4": { + "1": { + "1": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 0.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 10.13.60.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 127.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 192.168.1.0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 0.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 255.255.255.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 255.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 255.255.255.0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "3": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 10.13.60.1" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0.0.0.0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "5": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 15" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 15" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 10" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "6": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= remote" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "7": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "9": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= .0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= .0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= .0.0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= .0.0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "11": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "12": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "13": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "14": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "15": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "10": { + "13": { + "60": { + "1": "= active" + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "255": { + "255": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "6": { + "0": "= 5" + }, + "7": { + "1": { + "7": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= 15" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 15" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 10" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 5" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "8": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= remote" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "9": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= local" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "11": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "12": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= 0" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= 256" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "13": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "14": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "16": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= -1" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "17": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "0": { + "0": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= active" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "13": { + "60": { + "0": { + "24": { + "1": { + "15": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + }, + "127": { + "0": { + "0": { + "0": { + "8": { + "1": { + "1": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + }, + "192": { + "168": { + "1": { + "0": { + "24": { + "1": { + "10": { + "1": { + "4": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "2": { + "16": { + "255": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "8": { + "1": { + "5": { + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": "= active" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "25": { + "0": "= notForwarding" + }, + "26": { + "0": "= 64" + }, + "31": { + "1": { + "1": { + "3": { + "1": "= 11757840", + "2": "= 155258538" + }, + "4": { + "1": "= 11757840", + "2": "= 155258538" + }, + "6": { + "1": "= 0", + "2": "= 0" + }, + "7": { + "1": "= 0", + "2": "= 0" + }, + "9": { + "1": "= 25342", + "2": "= 0" + }, + "10": { + "1": "= 1346100", + "2": "= 0" + }, + "12": { + "1": "= 0", + "2": "= 0" + }, + "13": { + "1": "= 0", + "2": "= 0" + }, + "14": { + "1": "= 10", + "2": "= 0" + }, + "15": { + "1": "= 4", + "2": "= 0" + }, + "16": { + "1": "= 0", + "2": "= 0" + }, + "17": { + "1": "= 0", + "2": "= 5081439" + }, + "18": { + "1": "= 10386392", + "2": "= 44484" + }, + "19": { + "1": "= 10386392", + "2": "= 44484" + }, + "20": { + "1": "= 24102520", + "2": "= 6" + }, + "21": { + "1": "= 24102520", + "2": "= 6" + }, + "22": { + "1": "= 0", + "2": "= 0" + }, + "24": { + "1": "= 0", + "2": "= 0" + }, + "25": { + "1": "= 0", + "2": "= 0" + }, + "28": { + "1": "= 0", + "2": "= 0" + }, + "29": { + "1": "= 17052", + "2": "= 0" + }, + "46": { + "1": "= 0:0:00:00.00", + "2": "= 0:0:00:00.00" + }, + "47": { + "1": "= 30000 milli-seconds", + "2": "= 30000 milli-seconds" + } + } + } + }, + "34": { + "1": { + "3": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= 15" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 1" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 10" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= 1" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= 10" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "4": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= unicast" + } + } + }, + "127": { + "0": { + "0": { + "1": "= unicast" + } + } + }, + "192": { + "168": { + "1": { + "254": "= unicast" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= unicast" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= unicast" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "5": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= .1.3.6.1.2.1.4.32.1.5.15.1.4.10.13.60.0.24" + } + } + }, + "127": { + "0": { + "0": { + "1": "= .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8" + } + } + }, + "192": { + "168": { + "1": { + "254": "= .1.3.6.1.2.1.4.32.1.5.10.1.4.192.168.1.0.24" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= .1.3.6.1.2.1.4.32.1.5.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "6": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= manual" + } + } + }, + "127": { + "0": { + "0": { + "1": "= manual" + } + } + }, + "192": { + "168": { + "1": { + "254": "= manual" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= manual" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= linklayer" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "7": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= preferred" + } + } + }, + "127": { + "0": { + "0": { + "1": "= preferred" + } + } + }, + "192": { + "168": { + "1": { + "254": "= preferred" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= preferred" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= preferred" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "8": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= 0:0:00:00.00" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 0:0:00:00.00" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 0:0:00:00.00" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= 0:0:00:00.00" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= 0:0:00:00.00" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "9": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= 0:0:00:00.00" + } + } + }, + "127": { + "0": { + "0": { + "1": "= 0:0:00:00.00" + } + } + }, + "192": { + "168": { + "1": { + "254": "= 0:0:00:00.00" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= 0:0:00:00.00" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= 0:0:00:00.00" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "10": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= active" + } + } + }, + "127": { + "0": { + "0": { + "1": "= active" + } + } + }, + "192": { + "168": { + "1": { + "254": "= active" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= active" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= active" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "11": { + "1": { + "4": { + "10": { + "13": { + "60": { + "102": "= volatile" + } + } + }, + "127": { + "0": { + "0": { + "1": "= volatile" + } + } + }, + "192": { + "168": { + "1": { + "254": "= volatile" + } + } + } + } + }, + "2": { + "16": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "1": "= volatile" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "254": { + "128": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "2": { + "21": { + "173": { + "255": { + "254": { + "71": { + "62": { + "101": "= volatile" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "35": { + "1": { + "4": { + "15": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= b4:c:25:e0:40:6a" + } + } + } + } + } + } + }, + "6": { + "15": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= dynamic" + } + } + } + } + } + } + }, + "7": { + "15": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= reachable" + } + } + } + } + } + } + }, + "8": { + "15": { + "1": { + "4": { + "10": { + "13": { + "60": { + "1": "= active" + } + } + } + } + } + } + } + } + } + }, + "10": { + "7": { + "2": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "2": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "3": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "7": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "8": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "9": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "10": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "17": { + "1": "= .0.0.0", + "2": "= .0.0.0", + "3": "= .0.0.0", + "4": "= .0.0.0", + "5": "= .0.0.0", + "6": "= .0.0.0", + "7": "= .0.0.0" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "19": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 2", + "7": "= 2" + }, + "20": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2" + }, + "21": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3" + } + } + }, + "10": { + "1": { + "1": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4", + "5": "= 4", + "6": "= 4", + "7": "= 4" + }, + "2": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4", + "5": "= 4", + "6": "= 4", + "7": "= 4" + }, + "3": { + "1": "= 0", + "2": "= 0", + "3": "= 3292", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 3292", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + } + } + }, + "11": { + "1": { + "1": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "2": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "3": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + } + } + } + } + }, + "11": { + "1": { + "0": "= 67874" + }, + "2": { + "0": "= 67874" + }, + "3": { + "0": "= 0" + }, + "4": { + "0": "= 0" + }, + "5": { + "0": "= 133" + }, + "6": { + "0": "= 0" + }, + "8": { + "0": "= 0" + }, + "9": { + "0": "= 0" + }, + "10": { + "0": "= 0" + }, + "11": { + "0": "= 0" + }, + "12": { + "0": "= 0" + }, + "13": { + "0": "= 68062" + }, + "14": { + "0": "= 0" + }, + "15": { + "0": "= 11" + }, + "16": { + "0": "= 67859" + }, + "17": { + "0": "= 0" + }, + "18": { + "0": "= 0" + }, + "19": { + "0": "= 0" + }, + "20": { + "0": "= 0" + }, + "21": { + "0": "= 0" + }, + "22": { + "0": "= 0" + }, + "24": { + "0": "= 0" + }, + "25": { + "0": "= 0" + }, + "26": { + "0": "= 0" + }, + "27": { + "0": "= 0" + }, + "28": { + "0": "= 67898" + }, + "29": { + "0": "= 0" + }, + "30": { + "0": "= enabled" + }, + "31": { + "0": "= 0" + }, + "32": { + "0": "= 0" + } + }, + "16": { + "1": { + "1": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4" + }, + "2": { + "1": "= .1.3.6.1.2.1.2.2.1.1.1", + "2": "= .1.3.6.1.2.1.2.2.1.1.2", + "3": "= .1.3.6.1.2.1.2.2.1.1.3", + "4": "= .1.3.6.1.2.1.2.2.1.1.4" + }, + "3": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "4": { + "1": "= 4223389753", + "2": "= 135053161", + "3": "= 2194071425", + "4": "= 314336220" + }, + "5": { + "1": "= 14805115", + "2": "= 755129", + "3": "= 15045949", + "4": "= 2381335" + }, + "6": { + "1": "= 786060", + "2": "= 35", + "3": "= 64", + "4": "= 0" + }, + "7": { + "1": "= 1333616", + "2": "= 755094", + "3": "= 1854490", + "4": "= 2381335" + }, + "8": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "9": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "10": { + "1": "= 7196121", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "12": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "14": { + "1": "= 976276", + "2": "= 42", + "3": "= 2010989", + "4": "= 0" + }, + "15": { + "1": "= 4299190", + "2": "= 23", + "3": "= 524707", + "4": "= 0" + }, + "16": { + "1": "= 1491542", + "2": "= 755029", + "3": "= 2361587", + "4": "= 2381335" + }, + "17": { + "1": "= 3686", + "2": "= 35", + "3": "= 3003", + "4": "= 0" + }, + "18": { + "1": "= 2165", + "2": "= 0", + "3": "= 24786", + "4": "= 0" + }, + "19": { + "1": "= 836135", + "2": "= 0", + "3": "= 10120877", + "4": "= 0" + }, + "20": { + "1": "= \"system\"", + "2": "= \"system\"", + "3": "= \"system\"", + "4": "= \"system\"" + }, + "21": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1" + } + } + }, + "4": { + "1": { + "1": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "2": { + "1": "= 0:0:41:52.73", + "2": "= 0:0:41:52.73", + "3": "= 0:0:41:52.73", + "4": "= 0:0:41:52.73" + } + } + }, + "7": { + "1": { + "1": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "2": { + "1": "= 14805115", + "2": "= 755129", + "3": "= 15045949", + "4": "= 2381335" + }, + "3": { + "1": "= 2", + "2": "= 0", + "3": "= 3", + "4": "= 0" + }, + "4": { + "1": "= 12813324345", + "2": "= 135053161", + "3": "= 15078973313", + "4": "= 314336220" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "6": { + "1": "= 976276", + "2": "= 42", + "3": "= 2010989", + "4": "= 0" + }, + "7": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "8": { + "1": "= 4299190", + "2": "= 23", + "3": "= 524707", + "4": "= 0" + }, + "9": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "10": { + "1": "= 1491542", + "2": "= 755029", + "3": "= 2361587", + "4": "= 2381335" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "12": { + "1": "= 3686", + "2": "= 35", + "3": "= 3003", + "4": "= 0" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "14": { + "1": "= 2165", + "2": "= 0", + "3": "= 24786", + "4": "= 0" + }, + "15": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "16": { + "1": "= 836135", + "2": "= 0", + "3": "= 10120877", + "4": "= 0" + } + } + } + }, + "2": { + "1": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "8": "= 8" + }, + "2": { + "1": "= .1.3.6.1.2.1.2.2.1.1.1", + "2": "= .1.3.6.1.2.1.2.2.1.1.1", + "3": "= .1.3.6.1.2.1.2.2.1.1.2", + "4": "= .1.3.6.1.2.1.2.2.1.1.2", + "5": "= .1.3.6.1.2.1.2.2.1.1.3", + "6": "= .1.3.6.1.2.1.2.2.1.1.3", + "7": "= .1.3.6.1.2.1.2.2.1.1.4", + "8": "= .1.3.6.1.2.1.2.2.1.1.4" + }, + "3": { + "1": "= 60", + "2": "= 48", + "3": "= 60", + "4": "= 48", + "5": "= 60", + "6": "= 48", + "7": "= 60", + "8": "= 48" + }, + "4": { + "1": "= 60", + "2": "= 48", + "3": "= 60", + "4": "= 48", + "5": "= 60", + "6": "= 48", + "7": "= 60", + "8": "= 48" + }, + "5": { + "1": "= 30", + "2": "= 1800", + "3": "= 30", + "4": "= 1800", + "5": "= 30", + "6": "= 1800", + "7": "= 30", + "8": "= 1800" + }, + "6": { + "1": "= \"system\"", + "2": "= \"system\"", + "3": "= \"system\"", + "4": "= \"system\"", + "5": "= \"system\"", + "6": "= \"system\"", + "7": "= \"system\"", + "8": "= \"system\"" + }, + "7": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1" + } + } + }, + "2": { + "1": { + "1": { + "1": { + "1": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1" + }, + "2": { + "1": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2" + }, + "3": { + "1": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3", + "28": "= 3", + "29": "= 3", + "30": "= 3", + "31": "= 3", + "32": "= 3", + "33": "= 3", + "34": "= 3", + "35": "= 3", + "36": "= 3", + "37": "= 3", + "38": "= 3", + "39": "= 3", + "40": "= 3", + "41": "= 3", + "42": "= 3", + "43": "= 3", + "44": "= 3", + "45": "= 3", + "46": "= 3", + "47": "= 3", + "48": "= 3", + "49": "= 3", + "50": "= 3", + "51": "= 3", + "52": "= 3", + "53": "= 3", + "54": "= 3", + "55": "= 3", + "56": "= 3", + "57": "= 3", + "58": "= 3", + "59": "= 3", + "60": "= 3", + "61": "= 3", + "62": "= 3", + "63": "= 3", + "64": "= 3", + "65": "= 3", + "66": "= 3", + "67": "= 3", + "68": "= 3", + "69": "= 3", + "70": "= 3", + "71": "= 3", + "72": "= 3", + "73": "= 3", + "74": "= 3", + "75": "= 3", + "76": "= 3", + "77": "= 3", + "78": "= 3", + "79": "= 3", + "80": "= 3", + "81": "= 3", + "82": "= 3", + "83": "= 3" + }, + "4": { + "1": "= 4", + "24": "= 4", + "25": "= 4", + "26": "= 4", + "27": "= 4", + "28": "= 4", + "29": "= 4", + "30": "= 4", + "31": "= 4", + "32": "= 4", + "33": "= 4", + "34": "= 4", + "35": "= 4", + "36": "= 4", + "37": "= 4", + "38": "= 4", + "39": "= 4", + "40": "= 4", + "41": "= 4", + "42": "= 4", + "43": "= 4", + "44": "= 4", + "45": "= 4", + "46": "= 4", + "47": "= 4", + "48": "= 4", + "49": "= 4", + "50": "= 4", + "51": "= 4", + "52": "= 4", + "53": "= 4", + "54": "= 4", + "55": "= 4", + "56": "= 4", + "57": "= 4", + "58": "= 4", + "59": "= 4", + "60": "= 4", + "61": "= 4", + "62": "= 4", + "63": "= 4", + "64": "= 4", + "65": "= 4", + "66": "= 4", + "67": "= 4", + "68": "= 4", + "69": "= 4", + "70": "= 4", + "71": "= 4", + "72": "= 4", + "73": "= 4", + "74": "= 4", + "75": "= 4", + "76": "= 4", + "77": "= 4", + "78": "= 4", + "79": "= 4", + "80": "= 4", + "81": "= 4", + "82": "= 4", + "83": "= 4" + } + }, + "2": { + "1": { + "1": "= 1", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83" + }, + "2": { + "1": "= 1", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83" + }, + "3": { + "1": "= 1", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83" + }, + "4": { + "1": "= 1", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83" + } + }, + "3": { + "1": { + "1": "= 0:0:30:00.31", + "24": "= 0:0:12:00.31", + "25": "= 0:0:12:30.31", + "26": "= 0:0:13:00.31", + "27": "= 0:0:13:30.31", + "28": "= 0:0:14:00.31", + "29": "= 0:0:14:30.31", + "30": "= 0:0:15:00.31", + "31": "= 0:0:15:30.31", + "32": "= 0:0:16:00.31", + "33": "= 0:0:16:30.31", + "34": "= 0:0:17:00.31", + "35": "= 0:0:17:30.31", + "36": "= 0:0:18:00.31", + "37": "= 0:0:18:30.31", + "38": "= 0:0:19:00.31", + "39": "= 0:0:19:30.31", + "40": "= 0:0:20:00.31", + "41": "= 0:0:20:30.31", + "42": "= 0:0:21:00.31", + "43": "= 0:0:21:30.31", + "44": "= 0:0:22:00.31", + "45": "= 0:0:22:30.31", + "46": "= 0:0:23:00.31", + "47": "= 0:0:23:30.31", + "48": "= 0:0:24:00.31", + "49": "= 0:0:24:30.31", + "50": "= 0:0:25:00.31", + "51": "= 0:0:25:30.31", + "52": "= 0:0:26:00.31", + "53": "= 0:0:26:30.31", + "54": "= 0:0:27:00.31", + "55": "= 0:0:27:30.31", + "56": "= 0:0:28:00.31", + "57": "= 0:0:28:30.31", + "58": "= 0:0:29:00.31", + "59": "= 0:0:29:30.31", + "60": "= 0:0:30:00.31", + "61": "= 0:0:30:30.31", + "62": "= 0:0:31:00.31", + "63": "= 0:0:31:30.31", + "64": "= 0:0:32:00.31", + "65": "= 0:0:32:30.31", + "66": "= 0:0:33:00.31", + "67": "= 0:0:33:30.31", + "68": "= 0:0:34:00.31", + "69": "= 0:0:34:30.31", + "70": "= 0:0:35:00.31", + "71": "= 0:0:35:30.31", + "72": "= 0:0:36:00.31", + "73": "= 0:0:36:30.32", + "74": "= 0:0:37:00.32", + "75": "= 0:0:37:30.32", + "76": "= 0:0:38:00.32", + "77": "= 0:0:38:30.32", + "78": "= 0:0:39:00.32", + "79": "= 0:0:39:30.32", + "80": "= 0:0:40:00.32", + "81": "= 0:0:40:30.32", + "82": "= 0:0:41:00.32", + "83": "= 0:0:41:30.32" + }, + "2": { + "1": "= 0:0:30:00.31", + "24": "= 0:0:12:00.31", + "25": "= 0:0:12:30.31", + "26": "= 0:0:13:00.31", + "27": "= 0:0:13:30.31", + "28": "= 0:0:14:00.31", + "29": "= 0:0:14:30.31", + "30": "= 0:0:15:00.31", + "31": "= 0:0:15:30.31", + "32": "= 0:0:16:00.31", + "33": "= 0:0:16:30.31", + "34": "= 0:0:17:00.31", + "35": "= 0:0:17:30.31", + "36": "= 0:0:18:00.31", + "37": "= 0:0:18:30.31", + "38": "= 0:0:19:00.31", + "39": "= 0:0:19:30.31", + "40": "= 0:0:20:00.31", + "41": "= 0:0:20:30.31", + "42": "= 0:0:21:00.31", + "43": "= 0:0:21:30.31", + "44": "= 0:0:22:00.31", + "45": "= 0:0:22:30.31", + "46": "= 0:0:23:00.31", + "47": "= 0:0:23:30.31", + "48": "= 0:0:24:00.31", + "49": "= 0:0:24:30.31", + "50": "= 0:0:25:00.31", + "51": "= 0:0:25:30.31", + "52": "= 0:0:26:00.31", + "53": "= 0:0:26:30.31", + "54": "= 0:0:27:00.31", + "55": "= 0:0:27:30.31", + "56": "= 0:0:28:00.31", + "57": "= 0:0:28:30.31", + "58": "= 0:0:29:00.31", + "59": "= 0:0:29:30.31", + "60": "= 0:0:30:00.31", + "61": "= 0:0:30:30.31", + "62": "= 0:0:31:00.31", + "63": "= 0:0:31:30.31", + "64": "= 0:0:32:00.31", + "65": "= 0:0:32:30.31", + "66": "= 0:0:33:00.31", + "67": "= 0:0:33:30.31", + "68": "= 0:0:34:00.31", + "69": "= 0:0:34:30.31", + "70": "= 0:0:35:00.31", + "71": "= 0:0:35:30.31", + "72": "= 0:0:36:00.32", + "73": "= 0:0:36:30.32", + "74": "= 0:0:37:00.32", + "75": "= 0:0:37:30.32", + "76": "= 0:0:38:00.32", + "77": "= 0:0:38:30.32", + "78": "= 0:0:39:00.32", + "79": "= 0:0:39:30.32", + "80": "= 0:0:40:00.32", + "81": "= 0:0:40:30.32", + "82": "= 0:0:41:00.32", + "83": "= 0:0:41:30.32" + }, + "3": { + "1": "= 0:0:30:00.31", + "24": "= 0:0:12:00.31", + "25": "= 0:0:12:30.31", + "26": "= 0:0:13:00.31", + "27": "= 0:0:13:30.31", + "28": "= 0:0:14:00.31", + "29": "= 0:0:14:30.31", + "30": "= 0:0:15:00.31", + "31": "= 0:0:15:30.31", + "32": "= 0:0:16:00.31", + "33": "= 0:0:16:30.31", + "34": "= 0:0:17:00.31", + "35": "= 0:0:17:30.31", + "36": "= 0:0:18:00.31", + "37": "= 0:0:18:30.31", + "38": "= 0:0:19:00.31", + "39": "= 0:0:19:30.31", + "40": "= 0:0:20:00.31", + "41": "= 0:0:20:30.31", + "42": "= 0:0:21:00.31", + "43": "= 0:0:21:30.31", + "44": "= 0:0:22:00.31", + "45": "= 0:0:22:30.31", + "46": "= 0:0:23:00.31", + "47": "= 0:0:23:30.31", + "48": "= 0:0:24:00.31", + "49": "= 0:0:24:30.31", + "50": "= 0:0:25:00.31", + "51": "= 0:0:25:30.31", + "52": "= 0:0:26:00.31", + "53": "= 0:0:26:30.31", + "54": "= 0:0:27:00.31", + "55": "= 0:0:27:30.31", + "56": "= 0:0:28:00.31", + "57": "= 0:0:28:30.31", + "58": "= 0:0:29:00.31", + "59": "= 0:0:29:30.31", + "60": "= 0:0:30:00.31", + "61": "= 0:0:30:30.31", + "62": "= 0:0:31:00.31", + "63": "= 0:0:31:30.31", + "64": "= 0:0:32:00.31", + "65": "= 0:0:32:30.31", + "66": "= 0:0:33:00.31", + "67": "= 0:0:33:30.31", + "68": "= 0:0:34:00.31", + "69": "= 0:0:34:30.31", + "70": "= 0:0:35:00.32", + "71": "= 0:0:35:30.32", + "72": "= 0:0:36:00.32", + "73": "= 0:0:36:30.32", + "74": "= 0:0:37:00.32", + "75": "= 0:0:37:30.32", + "76": "= 0:0:38:00.32", + "77": "= 0:0:38:30.32", + "78": "= 0:0:39:00.32", + "79": "= 0:0:39:30.32", + "80": "= 0:0:40:00.32", + "81": "= 0:0:40:30.32", + "82": "= 0:0:41:00.32", + "83": "= 0:0:41:30.32" + }, + "4": { + "1": "= 0:0:30:00.31", + "24": "= 0:0:12:00.31", + "25": "= 0:0:12:30.31", + "26": "= 0:0:13:00.31", + "27": "= 0:0:13:30.31", + "28": "= 0:0:14:00.31", + "29": "= 0:0:14:30.31", + "30": "= 0:0:15:00.31", + "31": "= 0:0:15:30.31", + "32": "= 0:0:16:00.31", + "33": "= 0:0:16:30.31", + "34": "= 0:0:17:00.31", + "35": "= 0:0:17:30.31", + "36": "= 0:0:18:00.31", + "37": "= 0:0:18:30.31", + "38": "= 0:0:19:00.31", + "39": "= 0:0:19:30.31", + "40": "= 0:0:20:00.31", + "41": "= 0:0:20:30.31", + "42": "= 0:0:21:00.31", + "43": "= 0:0:21:30.31", + "44": "= 0:0:22:00.31", + "45": "= 0:0:22:30.31", + "46": "= 0:0:23:00.31", + "47": "= 0:0:23:30.31", + "48": "= 0:0:24:00.31", + "49": "= 0:0:24:30.31", + "50": "= 0:0:25:00.31", + "51": "= 0:0:25:30.31", + "52": "= 0:0:26:00.31", + "53": "= 0:0:26:30.31", + "54": "= 0:0:27:00.31", + "55": "= 0:0:27:30.31", + "56": "= 0:0:28:00.31", + "57": "= 0:0:28:30.31", + "58": "= 0:0:29:00.31", + "59": "= 0:0:29:30.31", + "60": "= 0:0:30:00.31", + "61": "= 0:0:30:30.31", + "62": "= 0:0:31:00.31", + "63": "= 0:0:31:30.31", + "64": "= 0:0:32:00.31", + "65": "= 0:0:32:30.31", + "66": "= 0:0:33:00.31", + "67": "= 0:0:33:30.31", + "68": "= 0:0:34:00.32", + "69": "= 0:0:34:30.32", + "70": "= 0:0:35:00.32", + "71": "= 0:0:35:30.32", + "72": "= 0:0:36:00.32", + "73": "= 0:0:36:30.32", + "74": "= 0:0:37:00.32", + "75": "= 0:0:37:30.32", + "76": "= 0:0:38:00.32", + "77": "= 0:0:38:30.32", + "78": "= 0:0:39:00.32", + "79": "= 0:0:39:30.32", + "80": "= 0:0:40:00.32", + "81": "= 0:0:40:30.32", + "82": "= 0:0:41:00.32", + "83": "= 0:0:41:30.32" + } + }, + "4": { + "1": { + "1": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0" + }, + "2": { + "1": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "5": { + "1": { + "1": "= 9600", + "25": "= 160", + "26": "= 160", + "27": "= 160", + "28": "= 160", + "29": "= 160", + "30": "= 160", + "31": "= 160", + "32": "= 160", + "33": "= 160", + "34": "= 160", + "35": "= 160", + "36": "= 160", + "37": "= 160", + "38": "= 160", + "39": "= 160", + "40": "= 160", + "41": "= 160", + "42": "= 160", + "43": "= 160", + "44": "= 160", + "45": "= 160", + "46": "= 160", + "47": "= 160", + "48": "= 160", + "49": "= 160", + "50": "= 160", + "51": "= 160", + "52": "= 160", + "53": "= 160", + "54": "= 160", + "55": "= 160", + "56": "= 160", + "57": "= 160", + "58": "= 160", + "59": "= 160", + "60": "= 160", + "61": "= 160", + "62": "= 160", + "63": "= 160", + "64": "= 160", + "65": "= 160", + "66": "= 160", + "67": "= 160", + "68": "= 160", + "69": "= 160", + "70": "= 160", + "71": "= 160", + "72": "= 160", + "73": "= 160", + "74": "= 160", + "75": "= 160", + "76": "= 160", + "77": "= 160", + "78": "= 160", + "79": "= 160", + "80": "= 160", + "81": "= 160", + "82": "= 160", + "83": "= 160", + "84": "= 160" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "6": { + "1": { + "1": "= 60", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "7": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "8": { + "1": { + "1": "= 60", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "9": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "10": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "11": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "12": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "13": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "4": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + } + }, + "14": { + "1": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "2": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0" + }, + "3": { + "1": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0" + }, + "4": { + "1": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0" + } + }, + "15": { + "1": { + "1": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0" + }, + "2": { + "1": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0" + }, + "3": { + "1": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0" + }, + "4": { + "1": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0" + } + } + } + }, + "6": { + "1": { + "1": { + "1": { + "61": "= 0" + }, + "2": { + "62": "= 0" + }, + "3": { + "63": "= 0" + }, + "4": { + "64": "= 0" + }, + "5": { + "65": "= 0" + }, + "6": { + "66": "= 0" + }, + "7": { + "67": "= 0" + }, + "8": { + "68": "= 0" + }, + "9": { + "69": "= 0" + }, + "10": { + "70": "= 0" + }, + "11": { + "71": "= 0" + }, + "12": { + "72": "= 0" + }, + "13": { + "73": "= 0" + }, + "14": { + "74": "= 0" + }, + "15": { + "75": "= 0" + }, + "16": { + "76": "= 0" + }, + "17": { + "77": "= 0" + }, + "18": { + "78": "= 0" + }, + "19": { + "79": "= 0" + }, + "20": { + "80": "= 0" + }, + "21": { + "81": "= 0" + }, + "22": { + "82": "= 0" + }, + "23": { + "83": "= 0" + }, + "24": { + "84": "= 0" + }, + "25": { + "85": "= 0" + }, + "26": { + "26": "= 0" + }, + "27": { + "27": "= 0" + }, + "28": { + "28": "= 0" + }, + "29": { + "29": "= 0" + }, + "30": { + "30": "= 0" + }, + "31": { + "31": "= 0" + }, + "32": { + "32": "= 0" + }, + "33": { + "33": "= 0" + }, + "34": { + "34": "= 0" + }, + "35": { + "35": "= 0" + }, + "36": { + "36": "= 0" + }, + "37": { + "37": "= 0" + }, + "38": { + "38": "= 0" + }, + "39": { + "39": "= 0" + }, + "40": { + "40": "= 0" + }, + "41": { + "41": "= 0" + }, + "42": { + "42": "= 0" + }, + "43": { + "43": "= 0" + }, + "44": { + "44": "= 0" + }, + "45": { + "45": "= 0" + }, + "46": { + "46": "= 0" + }, + "47": { + "47": "= 0" + }, + "48": { + "48": "= 0" + }, + "49": { + "49": "= 0" + }, + "50": { + "50": "= 0" + }, + "51": { + "51": "= 0" + }, + "52": { + "52": "= 0" + }, + "53": { + "53": "= 0" + }, + "54": { + "54": "= 0" + }, + "55": { + "55": "= 0" + }, + "56": { + "56": "= 0" + }, + "57": { + "57": "= 0" + }, + "58": { + "58": "= 0" + }, + "59": { + "59": "= 0" + }, + "60": { + "60": "= 0" + }, + "61": { + "1": "= 0" + }, + "62": { + "61": "= 0" + }, + "63": { + "62": "= 0" + }, + "64": { + "63": "= 0" + }, + "65": { + "64": "= 0" + }, + "66": { + "65": "= 0" + }, + "67": { + "66": "= 0" + }, + "68": { + "67": "= 0" + }, + "69": { + "68": "= 0" + }, + "70": { + "69": "= 0" + }, + "71": { + "70": "= 0" + }, + "72": { + "71": "= 0" + }, + "73": { + "72": "= 0" + }, + "74": { + "73": "= 0" + }, + "75": { + "74": "= 0" + }, + "76": { + "75": "= 0" + }, + "77": { + "76": "= 0" + }, + "78": { + "77": "= 0" + }, + "79": { + "78": "= 0" + }, + "80": { + "79": "= 0" + }, + "81": { + "80": "= 0" + }, + "82": { + "81": "= 0" + }, + "83": { + "82": "= 0" + }, + "84": { + "83": "= 0" + }, + "85": { + "84": "= 0" + }, + "86": { + "85": "= 0" + }, + "87": { + "26": "= 0" + }, + "88": { + "27": "= 0" + }, + "89": { + "28": "= 0" + }, + "90": { + "29": "= 0" + }, + "91": { + "30": "= 0" + }, + "92": { + "31": "= 0" + }, + "93": { + "32": "= 0" + }, + "94": { + "33": "= 0" + }, + "95": { + "34": "= 0" + }, + "96": { + "35": "= 0" + }, + "97": { + "36": "= 0" + }, + "98": { + "37": "= 0" + }, + "99": { + "38": "= 0" + }, + "100": { + "39": "= 0" + }, + "101": { + "40": "= 0" + }, + "102": { + "41": "= 0" + }, + "103": { + "42": "= 0" + }, + "104": { + "43": "= 0" + }, + "105": { + "44": "= 0" + }, + "106": { + "45": "= 0" + }, + "107": { + "46": "= 0" + }, + "108": { + "47": "= 0" + }, + "109": { + "48": "= 0" + }, + "110": { + "49": "= 0" + }, + "111": { + "50": "= 0" + }, + "112": { + "51": "= 0" + }, + "113": { + "52": "= 0" + }, + "114": { + "53": "= 0" + }, + "115": { + "54": "= 0" + }, + "116": { + "55": "= 0" + }, + "117": { + "56": "= 0" + }, + "118": { + "57": "= 0" + }, + "119": { + "58": "= 0" + }, + "120": { + "59": "= 0" + }, + "121": { + "60": "= 0" + }, + "122": { + "1": "= 0" + }, + "123": { + "61": "= 0" + }, + "124": { + "62": "= 0" + }, + "125": { + "63": "= 0" + }, + "126": { + "64": "= 0" + }, + "127": { + "65": "= 0" + }, + "128": { + "66": "= 0" + }, + "129": { + "67": "= 0" + }, + "130": { + "68": "= 0" + }, + "131": { + "69": "= 0" + }, + "132": { + "70": "= 0" + }, + "133": { + "71": "= 0" + }, + "134": { + "72": "= 0" + }, + "135": { + "73": "= 0" + }, + "136": { + "74": "= 0" + }, + "137": { + "75": "= 0" + }, + "138": { + "76": "= 0" + }, + "139": { + "77": "= 0" + }, + "140": { + "78": "= 0" + }, + "141": { + "79": "= 0" + }, + "142": { + "80": "= 0" + }, + "143": { + "81": "= 0" + }, + "144": { + "82": "= 0" + }, + "145": { + "83": "= 0" + }, + "146": { + "84": "= 0" + }, + "147": { + "85": "= 0" + }, + "148": { + "26": "= 0" + }, + "149": { + "27": "= 0" + }, + "150": { + "28": "= 0" + }, + "151": { + "29": "= 0" + }, + "152": { + "30": "= 0" + }, + "153": { + "31": "= 0" + }, + "154": { + "32": "= 0" + }, + "155": { + "33": "= 0" + }, + "156": { + "34": "= 0" + }, + "157": { + "35": "= 0" + }, + "158": { + "36": "= 0" + }, + "159": { + "37": "= 0" + }, + "160": { + "38": "= 0" + }, + "161": { + "39": "= 0" + }, + "162": { + "40": "= 0" + }, + "163": { + "41": "= 0" + }, + "164": { + "42": "= 0" + }, + "165": { + "43": "= 0" + }, + "166": { + "44": "= 0" + }, + "167": { + "45": "= 0" + }, + "168": { + "46": "= 0" + }, + "169": { + "47": "= 0" + }, + "170": { + "48": "= 0" + }, + "171": { + "49": "= 0" + }, + "172": { + "50": "= 0" + }, + "173": { + "51": "= 0" + }, + "174": { + "52": "= 0" + }, + "175": { + "53": "= 0" + }, + "176": { + "54": "= 0" + }, + "177": { + "55": "= 0" + }, + "178": { + "56": "= 0" + }, + "179": { + "57": "= 0" + }, + "180": { + "58": "= 0" + }, + "181": { + "59": "= 0" + }, + "182": { + "60": "= 0" + }, + "183": { + "1": "= 0" + }, + "184": { + "61": "= 0" + }, + "185": { + "62": "= 0" + }, + "186": { + "63": "= 0" + }, + "187": { + "64": "= 0" + }, + "188": { + "65": "= 0" + }, + "189": { + "66": "= 0" + }, + "190": { + "67": "= 0" + }, + "191": { + "68": "= 0" + }, + "192": { + "69": "= 0" + }, + "193": { + "70": "= 0" + }, + "194": { + "71": "= 0" + }, + "195": { + "72": "= 0" + }, + "196": { + "73": "= 0" + }, + "197": { + "74": "= 0" + }, + "198": { + "75": "= 0" + }, + "199": { + "76": "= 0" + }, + "200": { + "77": "= 0" + }, + "201": { + "78": "= 0" + }, + "202": { + "79": "= 0" + }, + "203": { + "80": "= 0" + }, + "204": { + "81": "= 0" + }, + "205": { + "82": "= 0" + }, + "206": { + "83": "= 0" + }, + "207": { + "84": "= 0" + }, + "208": { + "85": "= 0" + }, + "209": { + "26": "= 0" + }, + "210": { + "27": "= 0" + }, + "211": { + "28": "= 0" + }, + "212": { + "29": "= 0" + }, + "213": { + "30": "= 0" + }, + "214": { + "31": "= 0" + }, + "215": { + "32": "= 0" + }, + "216": { + "33": "= 0" + }, + "217": { + "34": "= 0" + }, + "218": { + "35": "= 0" + }, + "219": { + "36": "= 0" + }, + "220": { + "37": "= 0" + }, + "221": { + "38": "= 0" + }, + "222": { + "39": "= 0" + }, + "223": { + "40": "= 0" + }, + "224": { + "41": "= 0" + }, + "225": { + "42": "= 0" + }, + "226": { + "43": "= 0" + }, + "227": { + "44": "= 0" + }, + "228": { + "45": "= 0" + }, + "229": { + "46": "= 0" + }, + "230": { + "47": "= 0" + }, + "231": { + "48": "= 0" + }, + "232": { + "49": "= 0" + }, + "233": { + "50": "= 0" + }, + "234": { + "51": "= 0" + }, + "235": { + "52": "= 0" + }, + "236": { + "53": "= 0" + }, + "237": { + "54": "= 0" + }, + "238": { + "55": "= 0" + }, + "239": { + "56": "= 0" + }, + "240": { + "57": "= 0" + }, + "241": { + "58": "= 0" + }, + "242": { + "59": "= 0" + }, + "243": { + "60": "= 0" + }, + "244": { + "1": "= 0" + } + }, + "2": { + "1": { + "61": "= 1" + }, + "2": { + "62": "= 1" + }, + "3": { + "63": "= 1" + }, + "4": { + "64": "= 1" + }, + "5": { + "65": "= 1" + }, + "6": { + "66": "= 1" + }, + "7": { + "67": "= 1" + }, + "8": { + "68": "= 1" + }, + "9": { + "69": "= 1" + }, + "10": { + "70": "= 1" + }, + "11": { + "71": "= 1" + }, + "12": { + "72": "= 1" + }, + "13": { + "73": "= 1" + }, + "14": { + "74": "= 1" + }, + "15": { + "75": "= 1" + }, + "16": { + "76": "= 1" + }, + "17": { + "77": "= 1" + }, + "18": { + "78": "= 1" + }, + "19": { + "79": "= 1" + }, + "20": { + "80": "= 1" + }, + "21": { + "81": "= 1" + }, + "22": { + "82": "= 1" + }, + "23": { + "83": "= 1" + }, + "24": { + "84": "= 1" + }, + "25": { + "85": "= 1" + }, + "26": { + "26": "= 1" + }, + "27": { + "27": "= 1" + }, + "28": { + "28": "= 1" + }, + "29": { + "29": "= 1" + }, + "30": { + "30": "= 1" + }, + "31": { + "31": "= 1" + }, + "32": { + "32": "= 1" + }, + "33": { + "33": "= 1" + }, + "34": { + "34": "= 1" + }, + "35": { + "35": "= 1" + }, + "36": { + "36": "= 1" + }, + "37": { + "37": "= 1" + }, + "38": { + "38": "= 1" + }, + "39": { + "39": "= 1" + }, + "40": { + "40": "= 1" + }, + "41": { + "41": "= 1" + }, + "42": { + "42": "= 1" + }, + "43": { + "43": "= 1" + }, + "44": { + "44": "= 1" + }, + "45": { + "45": "= 1" + }, + "46": { + "46": "= 1" + }, + "47": { + "47": "= 1" + }, + "48": { + "48": "= 1" + }, + "49": { + "49": "= 1" + }, + "50": { + "50": "= 1" + }, + "51": { + "51": "= 1" + }, + "52": { + "52": "= 1" + }, + "53": { + "53": "= 1" + }, + "54": { + "54": "= 1" + }, + "55": { + "55": "= 1" + }, + "56": { + "56": "= 1" + }, + "57": { + "57": "= 1" + }, + "58": { + "58": "= 1" + }, + "59": { + "59": "= 1" + }, + "60": { + "60": "= 1" + }, + "61": { + "1": "= 60" + }, + "62": { + "61": "= 0" + }, + "63": { + "62": "= 0" + }, + "64": { + "63": "= 0" + }, + "65": { + "64": "= 0" + }, + "66": { + "65": "= 0" + }, + "67": { + "66": "= 0" + }, + "68": { + "67": "= 0" + }, + "69": { + "68": "= 0" + }, + "70": { + "69": "= 0" + }, + "71": { + "70": "= 0" + }, + "72": { + "71": "= 0" + }, + "73": { + "72": "= 0" + }, + "74": { + "73": "= 0" + }, + "75": { + "74": "= 0" + }, + "76": { + "75": "= 0" + }, + "77": { + "76": "= 0" + }, + "78": { + "77": "= 0" + }, + "79": { + "78": "= 0" + }, + "80": { + "79": "= 0" + }, + "81": { + "80": "= 0" + }, + "82": { + "81": "= 0" + }, + "83": { + "82": "= 0" + }, + "84": { + "83": "= 0" + }, + "85": { + "84": "= 0" + }, + "86": { + "85": "= 0" + }, + "87": { + "26": "= 0" + }, + "88": { + "27": "= 0" + }, + "89": { + "28": "= 0" + }, + "90": { + "29": "= 0" + }, + "91": { + "30": "= 0" + }, + "92": { + "31": "= 0" + }, + "93": { + "32": "= 0" + }, + "94": { + "33": "= 0" + }, + "95": { + "34": "= 0" + }, + "96": { + "35": "= 0" + }, + "97": { + "36": "= 0" + }, + "98": { + "37": "= 0" + }, + "99": { + "38": "= 0" + }, + "100": { + "39": "= 0" + }, + "101": { + "40": "= 0" + }, + "102": { + "41": "= 0" + }, + "103": { + "42": "= 0" + }, + "104": { + "43": "= 0" + }, + "105": { + "44": "= 0" + }, + "106": { + "45": "= 0" + }, + "107": { + "46": "= 0" + }, + "108": { + "47": "= 0" + }, + "109": { + "48": "= 0" + }, + "110": { + "49": "= 0" + }, + "111": { + "50": "= 0" + }, + "112": { + "51": "= 0" + }, + "113": { + "52": "= 0" + }, + "114": { + "53": "= 0" + }, + "115": { + "54": "= 0" + }, + "116": { + "55": "= 0" + }, + "117": { + "56": "= 0" + }, + "118": { + "57": "= 0" + }, + "119": { + "58": "= 0" + }, + "120": { + "59": "= 0" + }, + "121": { + "60": "= 0" + }, + "122": { + "1": "= 0" + }, + "123": { + "61": "= 0" + }, + "124": { + "62": "= 0" + }, + "125": { + "63": "= 0" + }, + "126": { + "64": "= 0" + }, + "127": { + "65": "= 0" + }, + "128": { + "66": "= 0" + }, + "129": { + "67": "= 0" + }, + "130": { + "68": "= 0" + }, + "131": { + "69": "= 0" + }, + "132": { + "70": "= 0" + }, + "133": { + "71": "= 0" + }, + "134": { + "72": "= 0" + }, + "135": { + "73": "= 0" + }, + "136": { + "74": "= 0" + }, + "137": { + "75": "= 0" + }, + "138": { + "76": "= 0" + }, + "139": { + "77": "= 0" + }, + "140": { + "78": "= 0" + }, + "141": { + "79": "= 0" + }, + "142": { + "80": "= 0" + }, + "143": { + "81": "= 0" + }, + "144": { + "82": "= 0" + }, + "145": { + "83": "= 0" + }, + "146": { + "84": "= 0" + }, + "147": { + "85": "= 0" + }, + "148": { + "26": "= 0" + }, + "149": { + "27": "= 0" + }, + "150": { + "28": "= 0" + }, + "151": { + "29": "= 0" + }, + "152": { + "30": "= 0" + }, + "153": { + "31": "= 0" + }, + "154": { + "32": "= 0" + }, + "155": { + "33": "= 0" + }, + "156": { + "34": "= 0" + }, + "157": { + "35": "= 0" + }, + "158": { + "36": "= 0" + }, + "159": { + "37": "= 0" + }, + "160": { + "38": "= 0" + }, + "161": { + "39": "= 0" + }, + "162": { + "40": "= 0" + }, + "163": { + "41": "= 0" + }, + "164": { + "42": "= 0" + }, + "165": { + "43": "= 0" + }, + "166": { + "44": "= 0" + }, + "167": { + "45": "= 0" + }, + "168": { + "46": "= 0" + }, + "169": { + "47": "= 0" + }, + "170": { + "48": "= 0" + }, + "171": { + "49": "= 0" + }, + "172": { + "50": "= 0" + }, + "173": { + "51": "= 0" + }, + "174": { + "52": "= 0" + }, + "175": { + "53": "= 0" + }, + "176": { + "54": "= 0" + }, + "177": { + "55": "= 0" + }, + "178": { + "56": "= 0" + }, + "179": { + "57": "= 0" + }, + "180": { + "58": "= 0" + }, + "181": { + "59": "= 0" + }, + "182": { + "60": "= 0" + }, + "183": { + "1": "= 0" + }, + "184": { + "61": "= 0" + }, + "185": { + "62": "= 0" + }, + "186": { + "63": "= 0" + }, + "187": { + "64": "= 0" + }, + "188": { + "65": "= 0" + }, + "189": { + "66": "= 0" + }, + "190": { + "67": "= 0" + }, + "191": { + "68": "= 0" + }, + "192": { + "69": "= 0" + }, + "193": { + "70": "= 0" + }, + "194": { + "71": "= 0" + }, + "195": { + "72": "= 0" + }, + "196": { + "73": "= 0" + }, + "197": { + "74": "= 0" + }, + "198": { + "75": "= 0" + }, + "199": { + "76": "= 0" + }, + "200": { + "77": "= 0" + }, + "201": { + "78": "= 0" + }, + "202": { + "79": "= 0" + }, + "203": { + "80": "= 0" + }, + "204": { + "81": "= 0" + }, + "205": { + "82": "= 0" + }, + "206": { + "83": "= 0" + }, + "207": { + "84": "= 0" + }, + "208": { + "85": "= 0" + }, + "209": { + "26": "= 0" + }, + "210": { + "27": "= 0" + }, + "211": { + "28": "= 0" + }, + "212": { + "29": "= 0" + }, + "213": { + "30": "= 0" + }, + "214": { + "31": "= 0" + }, + "215": { + "32": "= 0" + }, + "216": { + "33": "= 0" + }, + "217": { + "34": "= 0" + }, + "218": { + "35": "= 0" + }, + "219": { + "36": "= 0" + }, + "220": { + "37": "= 0" + }, + "221": { + "38": "= 0" + }, + "222": { + "39": "= 0" + }, + "223": { + "40": "= 0" + }, + "224": { + "41": "= 0" + }, + "225": { + "42": "= 0" + }, + "226": { + "43": "= 0" + }, + "227": { + "44": "= 0" + }, + "228": { + "45": "= 0" + }, + "229": { + "46": "= 0" + }, + "230": { + "47": "= 0" + }, + "231": { + "48": "= 0" + }, + "232": { + "49": "= 0" + }, + "233": { + "50": "= 0" + }, + "234": { + "51": "= 0" + }, + "235": { + "52": "= 0" + }, + "236": { + "53": "= 0" + }, + "237": { + "54": "= 0" + }, + "238": { + "55": "= 0" + }, + "239": { + "56": "= 0" + }, + "240": { + "57": "= 0" + }, + "241": { + "58": "= 0" + }, + "242": { + "59": "= 0" + }, + "243": { + "60": "= 0" + }, + "244": { + "1": "= 0" + } + }, + "3": { + "1": { + "61": "= 0" + }, + "2": { + "62": "= 0" + }, + "3": { + "63": "= 0" + }, + "4": { + "64": "= 0" + }, + "5": { + "65": "= 0" + }, + "6": { + "66": "= 0" + }, + "7": { + "67": "= 0" + }, + "8": { + "68": "= 0" + }, + "9": { + "69": "= 0" + }, + "10": { + "70": "= 0" + }, + "11": { + "71": "= 0" + }, + "12": { + "72": "= 0" + }, + "13": { + "73": "= 0" + }, + "14": { + "74": "= 0" + }, + "15": { + "75": "= 0" + }, + "16": { + "76": "= 0" + }, + "17": { + "77": "= 0" + }, + "18": { + "78": "= 0" + }, + "19": { + "79": "= 0" + }, + "20": { + "80": "= 0" + }, + "21": { + "81": "= 0" + }, + "22": { + "82": "= 0" + }, + "23": { + "83": "= 0" + }, + "24": { + "84": "= 0" + }, + "25": { + "85": "= 0" + }, + "26": { + "26": "= 0" + }, + "27": { + "27": "= 0" + }, + "28": { + "28": "= 0" + }, + "29": { + "29": "= 0" + }, + "30": { + "30": "= 0" + }, + "31": { + "31": "= 0" + }, + "32": { + "32": "= 0" + }, + "33": { + "33": "= 0" + }, + "34": { + "34": "= 0" + }, + "35": { + "35": "= 0" + }, + "36": { + "36": "= 0" + }, + "37": { + "37": "= 0" + }, + "38": { + "38": "= 0" + }, + "39": { + "39": "= 0" + }, + "40": { + "40": "= 0" + }, + "41": { + "41": "= 0" + }, + "42": { + "42": "= 0" + }, + "43": { + "43": "= 0" + }, + "44": { + "44": "= 0" + }, + "45": { + "45": "= 0" + }, + "46": { + "46": "= 0" + }, + "47": { + "47": "= 0" + }, + "48": { + "48": "= 0" + }, + "49": { + "49": "= 0" + }, + "50": { + "50": "= 0" + }, + "51": { + "51": "= 0" + }, + "52": { + "52": "= 0" + }, + "53": { + "53": "= 0" + }, + "54": { + "54": "= 0" + }, + "55": { + "55": "= 0" + }, + "56": { + "56": "= 0" + }, + "57": { + "57": "= 0" + }, + "58": { + "58": "= 0" + }, + "59": { + "59": "= 0" + }, + "60": { + "60": "= 0" + }, + "61": { + "1": "= 0" + }, + "62": { + "61": "= 0" + }, + "63": { + "62": "= 0" + }, + "64": { + "63": "= 0" + }, + "65": { + "64": "= 0" + }, + "66": { + "65": "= 0" + }, + "67": { + "66": "= 0" + }, + "68": { + "67": "= 0" + }, + "69": { + "68": "= 0" + }, + "70": { + "69": "= 0" + }, + "71": { + "70": "= 0" + }, + "72": { + "71": "= 0" + }, + "73": { + "72": "= 0" + }, + "74": { + "73": "= 0" + }, + "75": { + "74": "= 0" + }, + "76": { + "75": "= 0" + }, + "77": { + "76": "= 0" + }, + "78": { + "77": "= 0" + }, + "79": { + "78": "= 0" + }, + "80": { + "79": "= 0" + }, + "81": { + "80": "= 0" + }, + "82": { + "81": "= 0" + }, + "83": { + "82": "= 0" + }, + "84": { + "83": "= 0" + }, + "85": { + "84": "= 0" + }, + "86": { + "85": "= 0" + }, + "87": { + "26": "= 0" + }, + "88": { + "27": "= 0" + }, + "89": { + "28": "= 0" + }, + "90": { + "29": "= 0" + }, + "91": { + "30": "= 0" + }, + "92": { + "31": "= 0" + }, + "93": { + "32": "= 0" + }, + "94": { + "33": "= 0" + }, + "95": { + "34": "= 0" + }, + "96": { + "35": "= 0" + }, + "97": { + "36": "= 0" + }, + "98": { + "37": "= 0" + }, + "99": { + "38": "= 0" + }, + "100": { + "39": "= 0" + }, + "101": { + "40": "= 0" + }, + "102": { + "41": "= 0" + }, + "103": { + "42": "= 0" + }, + "104": { + "43": "= 0" + }, + "105": { + "44": "= 0" + }, + "106": { + "45": "= 0" + }, + "107": { + "46": "= 0" + }, + "108": { + "47": "= 0" + }, + "109": { + "48": "= 0" + }, + "110": { + "49": "= 0" + }, + "111": { + "50": "= 0" + }, + "112": { + "51": "= 0" + }, + "113": { + "52": "= 0" + }, + "114": { + "53": "= 0" + }, + "115": { + "54": "= 0" + }, + "116": { + "55": "= 0" + }, + "117": { + "56": "= 0" + }, + "118": { + "57": "= 0" + }, + "119": { + "58": "= 0" + }, + "120": { + "59": "= 0" + }, + "121": { + "60": "= 0" + }, + "122": { + "1": "= 0" + }, + "123": { + "61": "= 0" + }, + "124": { + "62": "= 0" + }, + "125": { + "63": "= 0" + }, + "126": { + "64": "= 0" + }, + "127": { + "65": "= 0" + }, + "128": { + "66": "= 0" + }, + "129": { + "67": "= 0" + }, + "130": { + "68": "= 0" + }, + "131": { + "69": "= 0" + }, + "132": { + "70": "= 0" + }, + "133": { + "71": "= 0" + }, + "134": { + "72": "= 0" + }, + "135": { + "73": "= 0" + }, + "136": { + "74": "= 0" + }, + "137": { + "75": "= 0" + }, + "138": { + "76": "= 0" + }, + "139": { + "77": "= 0" + }, + "140": { + "78": "= 0" + }, + "141": { + "79": "= 0" + }, + "142": { + "80": "= 0" + }, + "143": { + "81": "= 0" + }, + "144": { + "82": "= 0" + }, + "145": { + "83": "= 0" + }, + "146": { + "84": "= 0" + }, + "147": { + "85": "= 0" + }, + "148": { + "26": "= 0" + }, + "149": { + "27": "= 0" + }, + "150": { + "28": "= 0" + }, + "151": { + "29": "= 0" + }, + "152": { + "30": "= 0" + }, + "153": { + "31": "= 0" + }, + "154": { + "32": "= 0" + }, + "155": { + "33": "= 0" + }, + "156": { + "34": "= 0" + }, + "157": { + "35": "= 0" + }, + "158": { + "36": "= 0" + }, + "159": { + "37": "= 0" + }, + "160": { + "38": "= 0" + }, + "161": { + "39": "= 0" + }, + "162": { + "40": "= 0" + }, + "163": { + "41": "= 0" + }, + "164": { + "42": "= 0" + }, + "165": { + "43": "= 0" + }, + "166": { + "44": "= 0" + }, + "167": { + "45": "= 0" + }, + "168": { + "46": "= 0" + }, + "169": { + "47": "= 0" + }, + "170": { + "48": "= 0" + }, + "171": { + "49": "= 0" + }, + "172": { + "50": "= 0" + }, + "173": { + "51": "= 0" + }, + "174": { + "52": "= 0" + }, + "175": { + "53": "= 0" + }, + "176": { + "54": "= 0" + }, + "177": { + "55": "= 0" + }, + "178": { + "56": "= 0" + }, + "179": { + "57": "= 0" + }, + "180": { + "58": "= 0" + }, + "181": { + "59": "= 0" + }, + "182": { + "60": "= 0" + }, + "183": { + "1": "= 0" + }, + "184": { + "61": "= 0" + }, + "185": { + "62": "= 0" + }, + "186": { + "63": "= 0" + }, + "187": { + "64": "= 0" + }, + "188": { + "65": "= 0" + }, + "189": { + "66": "= 0" + }, + "190": { + "67": "= 0" + }, + "191": { + "68": "= 0" + }, + "192": { + "69": "= 0" + }, + "193": { + "70": "= 0" + }, + "194": { + "71": "= 0" + }, + "195": { + "72": "= 0" + }, + "196": { + "73": "= 0" + }, + "197": { + "74": "= 0" + }, + "198": { + "75": "= 0" + }, + "199": { + "76": "= 0" + }, + "200": { + "77": "= 0" + }, + "201": { + "78": "= 0" + }, + "202": { + "79": "= 0" + }, + "203": { + "80": "= 0" + }, + "204": { + "81": "= 0" + }, + "205": { + "82": "= 0" + }, + "206": { + "83": "= 0" + }, + "207": { + "84": "= 0" + }, + "208": { + "85": "= 0" + }, + "209": { + "26": "= 0" + }, + "210": { + "27": "= 0" + }, + "211": { + "28": "= 0" + }, + "212": { + "29": "= 0" + }, + "213": { + "30": "= 0" + }, + "214": { + "31": "= 0" + }, + "215": { + "32": "= 0" + }, + "216": { + "33": "= 0" + }, + "217": { + "34": "= 0" + }, + "218": { + "35": "= 0" + }, + "219": { + "36": "= 0" + }, + "220": { + "37": "= 0" + }, + "221": { + "38": "= 0" + }, + "222": { + "39": "= 0" + }, + "223": { + "40": "= 0" + }, + "224": { + "41": "= 0" + }, + "225": { + "42": "= 0" + }, + "226": { + "43": "= 0" + }, + "227": { + "44": "= 0" + }, + "228": { + "45": "= 0" + }, + "229": { + "46": "= 0" + }, + "230": { + "47": "= 0" + }, + "231": { + "48": "= 0" + }, + "232": { + "49": "= 0" + }, + "233": { + "50": "= 0" + }, + "234": { + "51": "= 0" + }, + "235": { + "52": "= 0" + }, + "236": { + "53": "= 0" + }, + "237": { + "54": "= 0" + }, + "238": { + "55": "= 0" + }, + "239": { + "56": "= 0" + }, + "240": { + "57": "= 0" + }, + "241": { + "58": "= 0" + }, + "242": { + "59": "= 0" + }, + "243": { + "60": "= 0" + }, + "244": { + "1": "= 0" + } + }, + "4": { + "1": { + "61": "= 160" + }, + "2": { + "62": "= 160" + }, + "3": { + "63": "= 160" + }, + "4": { + "64": "= 160" + }, + "5": { + "65": "= 160" + }, + "6": { + "66": "= 160" + }, + "7": { + "67": "= 160" + }, + "8": { + "68": "= 160" + }, + "9": { + "69": "= 160" + }, + "10": { + "70": "= 160" + }, + "11": { + "71": "= 160" + }, + "12": { + "72": "= 160" + }, + "13": { + "73": "= 160" + }, + "14": { + "74": "= 160" + }, + "15": { + "75": "= 160" + }, + "16": { + "76": "= 160" + }, + "17": { + "77": "= 160" + }, + "18": { + "78": "= 160" + }, + "19": { + "79": "= 160" + }, + "20": { + "80": "= 160" + }, + "21": { + "81": "= 160" + }, + "22": { + "82": "= 160" + }, + "23": { + "83": "= 160" + }, + "24": { + "84": "= 160" + }, + "25": { + "85": "= 160" + }, + "26": { + "26": "= 160" + }, + "27": { + "27": "= 160" + }, + "28": { + "28": "= 160" + }, + "29": { + "29": "= 160" + }, + "30": { + "30": "= 160" + }, + "31": { + "31": "= 160" + }, + "32": { + "32": "= 160" + }, + "33": { + "33": "= 160" + }, + "34": { + "34": "= 160" + }, + "35": { + "35": "= 160" + }, + "36": { + "36": "= 160" + }, + "37": { + "37": "= 160" + }, + "38": { + "38": "= 160" + }, + "39": { + "39": "= 160" + }, + "40": { + "40": "= 160" + }, + "41": { + "41": "= 160" + }, + "42": { + "42": "= 160" + }, + "43": { + "43": "= 160" + }, + "44": { + "44": "= 160" + }, + "45": { + "45": "= 160" + }, + "46": { + "46": "= 160" + }, + "47": { + "47": "= 160" + }, + "48": { + "48": "= 160" + }, + "49": { + "49": "= 160" + }, + "50": { + "50": "= 160" + }, + "51": { + "51": "= 160" + }, + "52": { + "52": "= 160" + }, + "53": { + "53": "= 160" + }, + "54": { + "54": "= 160" + }, + "55": { + "55": "= 160" + }, + "56": { + "56": "= 160" + }, + "57": { + "57": "= 160" + }, + "58": { + "58": "= 160" + }, + "59": { + "59": "= 160" + }, + "60": { + "60": "= 160" + }, + "61": { + "1": "= 9600" + }, + "62": { + "61": "= 0" + }, + "63": { + "62": "= 0" + }, + "64": { + "63": "= 0" + }, + "65": { + "64": "= 0" + }, + "66": { + "65": "= 0" + }, + "67": { + "66": "= 0" + }, + "68": { + "67": "= 0" + }, + "69": { + "68": "= 0" + }, + "70": { + "69": "= 0" + }, + "71": { + "70": "= 0" + }, + "72": { + "71": "= 0" + }, + "73": { + "72": "= 0" + }, + "74": { + "73": "= 0" + }, + "75": { + "74": "= 0" + }, + "76": { + "75": "= 0" + }, + "77": { + "76": "= 0" + }, + "78": { + "77": "= 0" + }, + "79": { + "78": "= 0" + }, + "80": { + "79": "= 0" + }, + "81": { + "80": "= 0" + }, + "82": { + "81": "= 0" + }, + "83": { + "82": "= 0" + }, + "84": { + "83": "= 0" + }, + "85": { + "84": "= 0" + }, + "86": { + "85": "= 0" + }, + "87": { + "26": "= 0" + }, + "88": { + "27": "= 0" + }, + "89": { + "28": "= 0" + }, + "90": { + "29": "= 0" + }, + "91": { + "30": "= 0" + }, + "92": { + "31": "= 0" + }, + "93": { + "32": "= 0" + }, + "94": { + "33": "= 0" + }, + "95": { + "34": "= 0" + }, + "96": { + "35": "= 0" + }, + "97": { + "36": "= 0" + }, + "98": { + "37": "= 0" + }, + "99": { + "38": "= 0" + }, + "100": { + "39": "= 0" + }, + "101": { + "40": "= 0" + }, + "102": { + "41": "= 0" + }, + "103": { + "42": "= 0" + }, + "104": { + "43": "= 0" + }, + "105": { + "44": "= 0" + }, + "106": { + "45": "= 0" + }, + "107": { + "46": "= 0" + }, + "108": { + "47": "= 0" + }, + "109": { + "48": "= 0" + }, + "110": { + "49": "= 0" + }, + "111": { + "50": "= 0" + }, + "112": { + "51": "= 0" + }, + "113": { + "52": "= 0" + }, + "114": { + "53": "= 0" + }, + "115": { + "54": "= 0" + }, + "116": { + "55": "= 0" + }, + "117": { + "56": "= 0" + }, + "118": { + "57": "= 0" + }, + "119": { + "58": "= 0" + }, + "120": { + "59": "= 0" + }, + "121": { + "60": "= 0" + }, + "122": { + "1": "= 0" + }, + "123": { + "61": "= 0" + }, + "124": { + "62": "= 0" + }, + "125": { + "63": "= 0" + }, + "126": { + "64": "= 0" + }, + "127": { + "65": "= 0" + }, + "128": { + "66": "= 0" + }, + "129": { + "67": "= 0" + }, + "130": { + "68": "= 0" + }, + "131": { + "69": "= 0" + }, + "132": { + "70": "= 0" + }, + "133": { + "71": "= 0" + }, + "134": { + "72": "= 0" + }, + "135": { + "73": "= 0" + }, + "136": { + "74": "= 0" + }, + "137": { + "75": "= 0" + }, + "138": { + "76": "= 0" + }, + "139": { + "77": "= 0" + }, + "140": { + "78": "= 0" + }, + "141": { + "79": "= 0" + }, + "142": { + "80": "= 0" + }, + "143": { + "81": "= 0" + }, + "144": { + "82": "= 0" + }, + "145": { + "83": "= 0" + }, + "146": { + "84": "= 0" + }, + "147": { + "85": "= 0" + }, + "148": { + "26": "= 0" + }, + "149": { + "27": "= 0" + }, + "150": { + "28": "= 0" + }, + "151": { + "29": "= 0" + }, + "152": { + "30": "= 0" + }, + "153": { + "31": "= 0" + }, + "154": { + "32": "= 0" + }, + "155": { + "33": "= 0" + }, + "156": { + "34": "= 0" + }, + "157": { + "35": "= 0" + }, + "158": { + "36": "= 0" + }, + "159": { + "37": "= 0" + }, + "160": { + "38": "= 0" + }, + "161": { + "39": "= 0" + }, + "162": { + "40": "= 0" + }, + "163": { + "41": "= 0" + }, + "164": { + "42": "= 0" + }, + "165": { + "43": "= 0" + }, + "166": { + "44": "= 0" + }, + "167": { + "45": "= 0" + }, + "168": { + "46": "= 0" + }, + "169": { + "47": "= 0" + }, + "170": { + "48": "= 0" + }, + "171": { + "49": "= 0" + }, + "172": { + "50": "= 0" + }, + "173": { + "51": "= 0" + }, + "174": { + "52": "= 0" + }, + "175": { + "53": "= 0" + }, + "176": { + "54": "= 0" + }, + "177": { + "55": "= 0" + }, + "178": { + "56": "= 0" + }, + "179": { + "57": "= 0" + }, + "180": { + "58": "= 0" + }, + "181": { + "59": "= 0" + }, + "182": { + "60": "= 0" + }, + "183": { + "1": "= 0" + }, + "184": { + "61": "= 0" + }, + "185": { + "62": "= 0" + }, + "186": { + "63": "= 0" + }, + "187": { + "64": "= 0" + }, + "188": { + "65": "= 0" + }, + "189": { + "66": "= 0" + }, + "190": { + "67": "= 0" + }, + "191": { + "68": "= 0" + }, + "192": { + "69": "= 0" + }, + "193": { + "70": "= 0" + }, + "194": { + "71": "= 0" + }, + "195": { + "72": "= 0" + }, + "196": { + "73": "= 0" + }, + "197": { + "74": "= 0" + }, + "198": { + "75": "= 0" + }, + "199": { + "76": "= 0" + }, + "200": { + "77": "= 0" + }, + "201": { + "78": "= 0" + }, + "202": { + "79": "= 0" + }, + "203": { + "80": "= 0" + }, + "204": { + "81": "= 0" + }, + "205": { + "82": "= 0" + }, + "206": { + "83": "= 0" + }, + "207": { + "84": "= 0" + }, + "208": { + "85": "= 0" + }, + "209": { + "26": "= 0" + }, + "210": { + "27": "= 0" + }, + "211": { + "28": "= 0" + }, + "212": { + "29": "= 0" + }, + "213": { + "30": "= 0" + }, + "214": { + "31": "= 0" + }, + "215": { + "32": "= 0" + }, + "216": { + "33": "= 0" + }, + "217": { + "34": "= 0" + }, + "218": { + "35": "= 0" + }, + "219": { + "36": "= 0" + }, + "220": { + "37": "= 0" + }, + "221": { + "38": "= 0" + }, + "222": { + "39": "= 0" + }, + "223": { + "40": "= 0" + }, + "224": { + "41": "= 0" + }, + "225": { + "42": "= 0" + }, + "226": { + "43": "= 0" + }, + "227": { + "44": "= 0" + }, + "228": { + "45": "= 0" + }, + "229": { + "46": "= 0" + }, + "230": { + "47": "= 0" + }, + "231": { + "48": "= 0" + }, + "232": { + "49": "= 0" + }, + "233": { + "50": "= 0" + }, + "234": { + "51": "= 0" + }, + "235": { + "52": "= 0" + }, + "236": { + "53": "= 0" + }, + "237": { + "54": "= 0" + }, + "238": { + "55": "= 0" + }, + "239": { + "56": "= 0" + }, + "240": { + "57": "= 0" + }, + "241": { + "58": "= 0" + }, + "242": { + "59": "= 0" + }, + "243": { + "60": "= 0" + }, + "244": { + "1": "= 0" + } + } + } + } + } + }, + "26": { + "2": { + "2": { + "1": { + "2": { + "1": { + "1": { + "1": "= 14" + } + }, + "2": { + "1": { + "1": "= 14" + } + }, + "3": { + "1": { + "1": "= 14" + } + }, + "4": { + "1": { + "1": "= 14" + } + }, + "5": { + "1": { + "1": "= 2" + } + }, + "6": { + "1": { + "1": "= 2" + } + }, + "7": { + "1": { + "1": "= 2" + } + } + } + } + } + }, + "5": { + "1": { + "1": { + "1": { + "1": { + "1": "= 1" + }, + "2": { + "1": "= 1" + }, + "3": { + "1": "= 1" + }, + "4": { + "1": "= 1" + }, + "5": { + "1": "= 1" + }, + "6": { + "1": "= 2" + }, + "7": { + "1": "= 2" + } + }, + "2": { + "1": { + "1": "= 2" + }, + "2": { + "1": "= 2" + }, + "3": { + "1": "= 2" + }, + "4": { + "1": "= 2" + }, + "5": { + "1": "= 1" + }, + "6": { + "1": "= 2" + }, + "7": { + "1": "= 2" + } + }, + "4": { + "1": { + "1": "= 2" + }, + "2": { + "1": "= 2" + }, + "3": { + "1": "= 2" + }, + "4": { + "1": "= 2" + }, + "5": { + "1": "= 3" + }, + "6": { + "1": "= 2" + }, + "7": { + "1": "= 2" + } + }, + "5": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + }, + "6": { + "1": "= 0" + }, + "7": { + "1": "= 0" + } + }, + "6": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + }, + "6": { + "1": "= 0" + }, + "7": { + "1": "= 0" + } + }, + "7": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + }, + "6": { + "1": "= 0" + }, + "7": { + "1": "= 0" + } + }, + "8": { + "1": { + "1": "= 2" + }, + "2": { + "1": "= 2" + }, + "3": { + "1": "= 2" + }, + "4": { + "1": "= 2" + }, + "5": { + "1": "= 2" + }, + "6": { + "1": "= 2" + }, + "7": { + "1": "= 2" + } + }, + "9": { + "1": { + "1": "= \"00 C2 \"" + }, + "2": { + "1": "= \"24 C2 \"" + }, + "3": { + "1": "= \"24 C2 \"" + }, + "4": { + "1": "= \"00 C2 \"" + }, + "5": { + "1": "= \"24 C0 \"" + }, + "6": { + "1": "= \"00 C2 \"" + }, + "7": { + "1": "= \"00 C2 \"" + } + }, + "10": { + "1": { + "1": "= \"00 C1 \"" + }, + "2": { + "1": "= \"24 C1 \"" + }, + "3": { + "1": "= \"24 C1 \"" + }, + "4": { + "1": "= \"00 C1 \"" + }, + "5": { + "1": "= \"24 C0 \"" + }, + "6": { + "1": "= \"00 C1 \"" + }, + "7": { + "1": "= \"00 C1 \"" + } + }, + "11": { + "1": { + "1": "= \"\"" + }, + "2": { + "1": "= \"\"" + }, + "3": { + "1": "= \"\"" + }, + "4": { + "1": "= \"00 C1 \"" + }, + "5": { + "1": "= \"6C C0 \"" + }, + "6": { + "1": "= \"\"" + }, + "7": { + "1": "= \"\"" + } + }, + "12": { + "1": { + "1": "= 1" + }, + "2": { + "1": "= 1" + }, + "3": { + "1": "= 1" + }, + "4": { + "1": "= 1" + }, + "5": { + "1": "= 1" + }, + "6": { + "1": "= 1" + }, + "7": { + "1": "= 1" + } + }, + "13": { + "1": { + "1": "= 1" + }, + "2": { + "1": "= 1" + }, + "3": { + "1": "= 1" + }, + "4": { + "1": "= 1" + }, + "5": { + "1": "= 1" + }, + "6": { + "1": "= 1" + }, + "7": { + "1": "= 1" + } + } + } + } + } + }, + "31": { + "1": { + "1": { + "1": { + "1": { + "1": "= EVEN_VLAN_UPLINK", + "2": "= ODD_VLAN_UPLINK", + "3": "= EVEN_VLAN_DOWNLIN", + "4": "= ODD_VLAN_DOWNLINK", + "5": "= Management", + "6": "= LAG-1", + "7": "= LAG-2", + "1003": "= VLAN_MGMT" + }, + "2": { + "1": "= 1333618", + "2": "= 755094", + "3": "= 1854490", + "4": "= 2381335", + "5": "= 1059008058", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "3": { + "1": "= 786060", + "2": "= 35", + "3": "= 64", + "4": "= 0", + "5": "= 291433787", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "4": { + "1": "= 1327114", + "2": "= 751328", + "3": "= 1854514", + "4": "= 2381370", + "5": "= 6", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "5": { + "1": "= 64", + "2": "= 0", + "3": "= 24", + "4": "= 0", + "5": "= 558851", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "6": { + "1": "= 12813324665", + "2": "= 135053161", + "3": "= 15078973313", + "4": "= 314336220", + "5": "= 132727052162", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "7": { + "1": "= 12685439", + "2": "= 0", + "3": "= 13188103", + "4": "= 0", + "5": "= 6690176", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "8": { + "1": "= 1333618", + "2": "= 755094", + "3": "= 1854490", + "4": "= 2381335", + "5": "= 1059008058", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "9": { + "1": "= 786060", + "2": "= 35", + "3": "= 64", + "4": "= 0", + "5": "= 291433787", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "10": { + "1": "= 15250068986", + "2": "= 110445216", + "3": "= 12089036710", + "4": "= 354824130", + "5": "= 1387157336", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "11": { + "1": "= 20489384", + "2": "= 0", + "3": "= 12156384", + "4": "= 0", + "5": "= 8711365", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "12": { + "1": "= 1327114", + "2": "= 751328", + "3": "= 1854514", + "4": "= 2381370", + "5": "= 6", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "13": { + "1": "= 64", + "2": "= 0", + "3": "= 24", + "4": "= 0", + "5": "= 558851", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "15": { + "1": "= 1000", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 100", + "6": "= 0", + "7": "= 0", + "1003": "= 0" + }, + "16": { + "1": "= false", + "2": "= false", + "3": "= false", + "4": "= false", + "5": "= false", + "6": "= false", + "7": "= false", + "1003": "= false" + }, + "17": { + "1": "= true", + "2": "= true", + "3": "= true", + "4": "= true", + "5": "= true", + "6": "= true", + "7": "= true", + "1003": "= true" + }, + "18": { + "1": "=", + "2": "=", + "3": "=", + "4": "=", + "5": "=", + "6": "=", + "7": "=", + "1003": "=" + }, + "19": { + "1": "= 0:0:00:00.00", + "2": "= 0:0:00:00.00", + "3": "= 0:0:00:00.00", + "4": "= 0:0:00:00.00", + "5": "= 0:0:00:00.00", + "6": "= 0:0:00:00.00", + "7": "= 0:0:00:00.00", + "1003": "= 0:0:00:00.00" + } + } + }, + "5": { + "0": "= 0:0:00:00.00" + } + } + }, + "55": { + "1": { + "1": { + "0": "= notForwarding" + }, + "2": { + "0": "= 64" + }, + "3": { + "0": "= 2" + }, + "5": { + "1": { + "2": { + "1": "= lo", + "10": "= eth5" + }, + "3": { + "1": "= .0.0", + "10": "= .0.0" + }, + "4": { + "1": "= 16436 octets", + "10": "= 1500 octets" + }, + "8": { + "1": "=", + "10": "= 0:15:ad:47:3e:65" + }, + "9": { + "1": "= up", + "10": "= up" + }, + "10": { + "1": "= up", + "10": "= up" + } + } + } + } + } + } + }, + "4": { + "1": { + "22420": { + "1": { + "1": { + "1": { + "0": "= \"AMN-1000-GT-S\"" + }, + "2": { + "0": "= \"00:15:AD:47:3E:60\"" + }, + "3": { + "0": "= \"NID12-DC-MTSO-Pri\"" + }, + "4": { + "0": "= \"AMT_7.9.1_23673\"" + }, + "5": { + "0": "= \"619-2179:20:23:14\"" + }, + "6": { + "0": "= \"G419-2495\"" + }, + "7": { + "0": "= \"Dry-contact Input\"" + }, + "10": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5" + }, + "2": { + "1": "= \"SFP-1\"", + "2": "= \"SFP-2\"", + "3": "= \"SFP-3\"", + "4": "= \"SFP-4\"", + "5": "= \"Management\"" + }, + "3": { + "1": "= 14", + "2": "= 14", + "3": "= 14", + "4": "= 14", + "5": "= 2" + }, + "4": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2" + } + } + }, + "11": { + "1": { + "1": { + "2": "= 2", + "3": "= 3" + }, + "2": { + "2": "= \"Feed A\"", + "3": "= \"Feed B\"" + }, + "3": { + "2": "= 2", + "3": "= 2" + }, + "4": { + "2": "= 1", + "3": "= 2" + } + } + }, + "12": { + "1": { + "2": { + "1": "= 44", + "2": "= 34" + }, + "3": { + "1": "= 85", + "2": "= 85" + }, + "4": { + "1": "= 2", + "2": "= 2" + }, + "5": { + "1": "= 90", + "2": "= 90" + }, + "6": { + "1": "= 2", + "2": "= 2" + }, + "7": { + "1": "= \"Sensor 1\"", + "2": "= \"Sensor 2\"" + } + } + }, + "20": { + "0": "= 12" + }, + "21": { + "0": "= 14" + }, + "22": { + "0": "= 15" + }, + "23": { + "0": "= 15" + }, + "24": { + "0": "= 5" + }, + "25": { + "0": "= 90350370" + } + } + }, + "2": { + "1": { + "1": { + "0": "= 2500" + }, + "2": { + "0": "= 10000" + }, + "3": { + "0": "= 1" + }, + "4": { + "0": "= 1" + }, + "5": { + "0": "= 1" + }, + "6": { + "0": "= 1" + }, + "10": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "8": "= 8", + "9": "= 9", + "10": "= 10", + "11": "= 11", + "12": "= 12", + "13": "= 13", + "14": "= 14", + "15": "= 15", + "16": "= 16", + "17": "= 17", + "18": "= 18", + "19": "= 19", + "20": "= 20", + "21": "= 21", + "22": "= 22", + "23": "= 23", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83", + "84": "= 84", + "85": "= 85", + "86": "= 86", + "87": "= 87", + "88": "= 88", + "89": "= 89", + "90": "= 90", + "91": "= 91", + "92": "= 92", + "93": "= 93", + "94": "= 94", + "95": "= 95", + "96": "= 96", + "97": "= 97", + "98": "= 98", + "99": "= 99", + "100": "= 100", + "101": "= 101", + "102": "= 102", + "103": "= 103", + "104": "= 104", + "105": "= 105", + "106": "= 106", + "107": "= 107", + "108": "= 108", + "109": "= 109", + "110": "= 110", + "111": "= 111", + "112": "= 112", + "113": "= 113", + "114": "= 114", + "115": "= 115", + "116": "= 116", + "117": "= 117", + "118": "= 118", + "119": "= 119", + "120": "= 120", + "121": "= 121", + "122": "= 122", + "123": "= 123", + "124": "= 124", + "125": "= 125", + "126": "= 126", + "127": "= 127", + "128": "= 128", + "129": "= 129", + "130": "= 130", + "131": "= 131", + "132": "= 132", + "133": "= 133", + "134": "= 134", + "135": "= 135", + "136": "= 136", + "137": "= 137", + "138": "= 138", + "139": "= 139", + "140": "= 140", + "141": "= 141", + "142": "= 142", + "143": "= 143", + "144": "= 144", + "145": "= 145", + "146": "= 146", + "147": "= 147", + "148": "= 148", + "149": "= 149", + "150": "= 150", + "151": "= 151", + "152": "= 152", + "153": "= 153", + "154": "= 154", + "155": "= 155", + "156": "= 156", + "157": "= 157", + "158": "= 158", + "159": "= 159", + "160": "= 160", + "161": "= 161", + "162": "= 162", + "163": "= 163", + "164": "= 164", + "165": "= 165", + "166": "= 166", + "167": "= 167", + "168": "= 168", + "169": "= 169", + "170": "= 170", + "171": "= 171", + "172": "= 172", + "173": "= 173", + "174": "= 174", + "175": "= 175", + "176": "= 176", + "177": "= 177", + "178": "= 178", + "179": "= 179", + "180": "= 180", + "181": "= 181", + "182": "= 182", + "183": "= 183", + "184": "= 184", + "185": "= 185", + "186": "= 186", + "187": "= 187", + "188": "= 188", + "189": "= 189", + "190": "= 190", + "191": "= 191", + "192": "= 192", + "193": "= 193", + "194": "= 194", + "195": "= 195", + "196": "= 196", + "197": "= 197", + "198": "= 198", + "199": "= 199", + "200": "= 200", + "201": "= 201", + "202": "= 202", + "203": "= 203", + "204": "= 204", + "205": "= 205", + "206": "= 206", + "207": "= 207", + "208": "= 208", + "209": "= 209", + "210": "= 210", + "211": "= 211", + "212": "= 212", + "213": "= 213", + "214": "= 214", + "215": "= 215", + "216": "= 216", + "217": "= 217", + "218": "= 218" + }, + "2": { + "1": "= 8000001", + "2": "= 8000002", + "3": "= 8000004", + "4": "= 8000005", + "5": "= 8000101", + "6": "= 8000102", + "7": "= 8000040", + "8": "= 8000041", + "9": "= 8000140", + "10": "= 8000141", + "11": "= 2000101", + "12": "= 2000102", + "13": "= 2000103", + "14": "= 2000104", + "15": "= 2000105", + "16": "= 2000106", + "17": "= 2000107", + "18": "= 2000108", + "19": "= 2000109", + "20": "= 2000110", + "21": "= 2000111", + "22": "= 2000112", + "23": "= 2000113", + "24": "= 2000114", + "25": "= 2000115", + "26": "= 2000116", + "27": "= 2000117", + "28": "= 2000118", + "29": "= 2000119", + "30": "= 2000120", + "31": "= 2000121", + "32": "= 2000201", + "33": "= 2000202", + "34": "= 2000203", + "35": "= 2000204", + "36": "= 2000205", + "37": "= 2000206", + "38": "= 2000207", + "39": "= 2000208", + "40": "= 2000209", + "41": "= 2000210", + "42": "= 2000211", + "43": "= 2000212", + "44": "= 2000213", + "45": "= 2000214", + "46": "= 2000215", + "47": "= 2000216", + "48": "= 2000217", + "49": "= 2000218", + "50": "= 2000219", + "51": "= 2000220", + "52": "= 2000221", + "53": "= 2000301", + "54": "= 2000302", + "55": "= 2000303", + "56": "= 2000304", + "57": "= 2000305", + "58": "= 2000306", + "59": "= 2000307", + "60": "= 2000308", + "61": "= 2000309", + "62": "= 2000310", + "63": "= 2000311", + "64": "= 2000312", + "65": "= 2000313", + "66": "= 2000314", + "67": "= 2000315", + "68": "= 2000316", + "69": "= 2000317", + "70": "= 2000318", + "71": "= 2000319", + "72": "= 2000320", + "73": "= 2000321", + "74": "= 2000401", + "75": "= 2000402", + "76": "= 2000403", + "77": "= 2000404", + "78": "= 2000405", + "79": "= 2000406", + "80": "= 2000407", + "81": "= 2000408", + "82": "= 2000409", + "83": "= 2000410", + "84": "= 2000411", + "85": "= 2000412", + "86": "= 2000413", + "87": "= 2000414", + "88": "= 2000415", + "89": "= 2000416", + "90": "= 2000417", + "91": "= 2000418", + "92": "= 2000419", + "93": "= 2000420", + "94": "= 2000421", + "95": "= 1000101", + "96": "= 1000102", + "97": "= 1000104", + "98": "= 1000107", + "99": "= 1000201", + "100": "= 1000202", + "101": "= 1000204", + "102": "= 1000207", + "103": "= 1000301", + "104": "= 1000302", + "105": "= 1000304", + "106": "= 1000307", + "107": "= 1000401", + "108": "= 1000402", + "109": "= 1000404", + "110": "= 1000407", + "111": "= 1000501", + "112": "= 1000601", + "113": "= 1000602", + "114": "= 1000604", + "115": "= 1000603", + "116": "= 1000701", + "117": "= 1000702", + "118": "= 1000704", + "119": "= 1000703", + "120": "= 8000006", + "121": "= 8000007", + "122": "= 8000080", + "123": "= 7000101", + "124": "= 7000102", + "125": "= 7000106", + "126": "= 7000108", + "127": "= 7000104", + "128": "= 7000105", + "129": "= 7000107", + "130": "= 18000101", + "131": "= 18000102", + "132": "= 3000101", + "133": "= 3000102", + "134": "= 3000103", + "135": "= 3000104", + "136": "= 3000105", + "137": "= 3000106", + "138": "= 3000107", + "139": "= 3000108", + "140": "= 3000109", + "141": "= 3000110", + "142": "= 3000111", + "143": "= 3000112", + "144": "= 3000113", + "145": "= 3000114", + "146": "= 3000115", + "147": "= 3000201", + "148": "= 3000202", + "149": "= 3000203", + "150": "= 3000204", + "151": "= 3000205", + "152": "= 3000206", + "153": "= 3000207", + "154": "= 3000208", + "155": "= 3000209", + "156": "= 3000210", + "157": "= 3000211", + "158": "= 3000212", + "159": "= 3000213", + "160": "= 3000214", + "161": "= 3000215", + "162": "= 3000301", + "163": "= 3000302", + "164": "= 3000303", + "165": "= 3000304", + "166": "= 3000305", + "167": "= 3000306", + "168": "= 3000307", + "169": "= 3000308", + "170": "= 3000309", + "171": "= 3000310", + "172": "= 3000311", + "173": "= 3000312", + "174": "= 3000313", + "175": "= 3000314", + "176": "= 3000315", + "177": "= 3000401", + "178": "= 3000402", + "179": "= 3000403", + "180": "= 3000404", + "181": "= 3000405", + "182": "= 3000406", + "183": "= 3000407", + "184": "= 3000408", + "185": "= 3000409", + "186": "= 3000410", + "187": "= 3000411", + "188": "= 3000412", + "189": "= 3000413", + "190": "= 3000414", + "191": "= 3000415", + "192": "= 7000401", + "193": "= 7000412", + "194": "= 7000404", + "195": "= 7000411", + "196": "= 7000403", + "197": "= 7000410", + "198": "= 7000402", + "199": "= 7000414", + "200": "= 7000406", + "201": "= 7000413", + "202": "= 7000405", + "203": "= 7000417", + "204": "= 7000409", + "205": "= 7000415", + "206": "= 7000407", + "207": "= 7000416", + "208": "= 7000408", + "209": "= 7000421", + "210": "= 7000420", + "211": "= 7000423", + "212": "= 7000422", + "213": "= 7000425", + "214": "= 7000424", + "215": "= 7000428", + "216": "= 7000429", + "217": "= 19000101", + "218": "= 19000102" + }, + "3": { + "1": "= \"First overheat threshold\"", + "2": "= \"Second overheat threshold\"", + "3": "= \"No power supply on feed A\"", + "4": "= \"No power supply on feed B\"", + "5": "= \"First overheat threshold\"", + "6": "= \"Second overheat threshold\"", + "7": "= \"Fan 1 slow\"", + "8": "= \"Fan 1 failure\"", + "9": "= \"Fan 2 slow\"", + "10": "= \"Fan 2 failure\"", + "11": "= \"SFP-1 temperature high alarm\"", + "12": "= \"SFP-1 temperature low alarm\"", + "13": "= \"SFP-1 temperature high warning\"", + "14": "= \"SFP-1 temperature low warning\"", + "15": "= \"SFP-1 supply voltage high alarm\"", + "16": "= \"SFP-1 supply voltage low alarm\"", + "17": "= \"SFP-1 supply voltage high warning\"", + "18": "= \"SFP-1 supply voltage low warning\"", + "19": "= \"SFP-1 laser bias current high alarm\"", + "20": "= \"SFP-1 laser bias current low alarm\"", + "21": "= \"SFP-1 laser bias current high warning\"", + "22": "= \"SFP-1 laser bias current low warning\"", + "23": "= \"SFP-1 transmit power high alarm\"", + "24": "= \"SFP-1 transmit power low alarm\"", + "25": "= \"SFP-1 transmit power high warning\"", + "26": "= \"SFP-1 transmit power low warning\"", + "27": "= \"SFP-1 receive power high alarm\"", + "28": "= \"SFP-1 receive power low alarm\"", + "29": "= \"SFP-1 receive power high warning\"", + "30": "= \"SFP-1 receive power low warning\"", + "31": "= \"SFP-1 not present\"", + "32": "= \"SFP-2 temperature high alarm\"", + "33": "= \"SFP-2 temperature low alarm\"", + "34": "= \"SFP-2 temperature high warning\"", + "35": "= \"SFP-2 temperature low warning\"", + "36": "= \"SFP-2 supply voltage high alarm\"", + "37": "= \"SFP-2 supply voltage low alarm\"", + "38": "= \"SFP-2 supply voltage high warning\"", + "39": "= \"SFP-2 supply voltage low warning\"", + "40": "= \"SFP-2 laser bias current high alarm\"", + "41": "= \"SFP-2 laser bias current low alarm\"", + "42": "= \"SFP-2 laser bias current high warning\"", + "43": "= \"SFP-2 laser bias current low warning\"", + "44": "= \"SFP-2 transmit power high alarm\"", + "45": "= \"SFP-2 transmit power low alarm\"", + "46": "= \"SFP-2 transmit power high warning\"", + "47": "= \"SFP-2 transmit power low warning\"", + "48": "= \"SFP-2 receive power high alarm\"", + "49": "= \"SFP-2 receive power low alarm\"", + "50": "= \"SFP-2 receive power high warning\"", + "51": "= \"SFP-2 receive power low warning\"", + "52": "= \"SFP-2 not present\"", + "53": "= \"SFP-3 temperature high alarm\"", + "54": "= \"SFP-3 temperature low alarm\"", + "55": "= \"SFP-3 temperature high warning\"", + "56": "= \"SFP-3 temperature low warning\"", + "57": "= \"SFP-3 supply voltage high alarm\"", + "58": "= \"SFP-3 supply voltage low alarm\"", + "59": "= \"SFP-3 supply voltage high warning\"", + "60": "= \"SFP-3 supply voltage low warning\"", + "61": "= \"SFP-3 laser bias current high alarm\"", + "62": "= \"SFP-3 laser bias current low alarm\"", + "63": "= \"SFP-3 laser bias current high warning\"", + "64": "= \"SFP-3 laser bias current low warning\"", + "65": "= \"SFP-3 transmit power high alarm\"", + "66": "= \"SFP-3 transmit power low alarm\"", + "67": "= \"SFP-3 transmit power high warning\"", + "68": "= \"SFP-3 transmit power low warning\"", + "69": "= \"SFP-3 receive power high alarm\"", + "70": "= \"SFP-3 receive power low alarm\"", + "71": "= \"SFP-3 receive power high warning\"", + "72": "= \"SFP-3 receive power low warning\"", + "73": "= \"SFP-3 not present\"", + "74": "= \"SFP-4 temperature high alarm\"", + "75": "= \"SFP-4 temperature low alarm\"", + "76": "= \"SFP-4 temperature high warning\"", + "77": "= \"SFP-4 temperature low warning\"", + "78": "= \"SFP-4 supply voltage high alarm\"", + "79": "= \"SFP-4 supply voltage low alarm\"", + "80": "= \"SFP-4 supply voltage high warning\"", + "81": "= \"SFP-4 supply voltage low warning\"", + "82": "= \"SFP-4 laser bias current high alarm\"", + "83": "= \"SFP-4 laser bias current low alarm\"", + "84": "= \"SFP-4 laser bias current high warning\"", + "85": "= \"SFP-4 laser bias current low warning\"", + "86": "= \"SFP-4 transmit power high alarm\"", + "87": "= \"SFP-4 transmit power low alarm\"", + "88": "= \"SFP-4 transmit power high warning\"", + "89": "= \"SFP-4 transmit power low warning\"", + "90": "= \"SFP-4 receive power high alarm\"", + "91": "= \"SFP-4 receive power low alarm\"", + "92": "= \"SFP-4 receive power high warning\"", + "93": "= \"SFP-4 receive power low warning\"", + "94": "= \"SFP-4 not present\"", + "95": "= \"Link down on EVEN_VLAN_UPLINK port\"", + "96": "= \"Loopback on port EVEN_VLAN_UPLINK\"", + "97": "= \"Fault propagation caused link down on port EVEN_VLAN_UPLINK\"", + "98": "= \"SA caused link down on port EVEN_VLAN_UPLINK\"", + "99": "= \"Link down on ODD_VLAN_UPLINK port\"", + "100": "= \"Loopback on port ODD_VLAN_UPLINK\"", + "101": "= \"Fault propagation caused link down on port ODD_VLAN_UPLINK\"", + "102": "= \"SA caused link down on port ODD_VLAN_UPLINK\"", + "103": "= \"Link down on EVEN_VLAN_DOWNLIN port\"", + "104": "= \"Loopback on port EVEN_VLAN_DOWNLIN\"", + "105": "= \"Fault propagation caused link down on port EVEN_VLAN_DOWNLIN\"", + "106": "= \"SA caused link down on port EVEN_VLAN_DOWNLIN\"", + "107": "= \"Link down on ODD_VLAN_DOWNLINK port\"", + "108": "= \"Loopback on port ODD_VLAN_DOWNLINK\"", + "109": "= \"Fault propagation caused link down on port ODD_VLAN_DOWNLINK\"", + "110": "= \"SA caused link down on port ODD_VLAN_DOWNLINK\"", + "111": "= \"Link down on Management port\"", + "112": "= \"Link down on LAG-1 port\"", + "113": "= \"Loopback on port LAG-1\"", + "114": "= \"Fault propagation caused link down on port LAG-1\"", + "115": "= \"Sub-port speed mismatch on port LAG-1\"", + "116": "= \"Link down on LAG-2 port\"", + "117": "= \"Loopback on port LAG-2\"", + "118": "= \"Fault propagation caused link down on port LAG-2\"", + "119": "= \"Sub-port speed mismatch on port LAG-2\"", + "120": "= \"Input 1 Active\"", + "121": "= \"Input 2 Active\"", + "122": "= \"Troubleshooting tool is running\"", + "123": "= \"NTP client lost server communication\"", + "124": "= \"NTP Time-of-day synchronization - May affect one-way delay measurements\"", + "125": "= \"NTP client used interface without timestamp capability\"", + "126": "= \"Remote NTP server used an interface without timestamp capability\"", + "127": "= \"PTP client failure communication with server\"", + "128": "= \"PTP Time-of-day synchronization - May affect one-way delay measurements\"", + "129": "= \"PTP client used interface without timestamp capability\"", + "130": "= \"Inventory entries list is almost full\"", + "131": "= \"Inventory entries list is full\"", + "132": "= \"PAA_Site573_VL2216 PAA_CC_ALERT\"", + "133": "= \"PAA_Site573_VL2216 PAA_PL_ALERT\"", + "134": "= \"PAA_Site573_VL2216 PAA_OW_DELAY_ALERT\"", + "135": "= \"PAA_Site573_VL2216 PAA_OW_AVG_DELAY_ALERT\"", + "136": "= \"PAA_Site573_VL2216 PAA_OW_DV_ALERT\"", + "137": "= \"PAA_Site573_VL2216 PAA_OW_AVG_DV_ALERT\"", + "138": "= \"PAA_Site573_VL2216 PAA_TW_DELAY_ALERT\"", + "139": "= \"PAA_Site573_VL2216 PAA_TW_AVG_DELAY_ALERT\"", + "140": "= \"PAA_Site573_VL2216 PAA_TW_DV_ALERT\"", + "141": "= \"PAA_Site573_VL2216 PAA_TW_AVG_DV_ALERT\"", + "142": "= \"PAA_Site573_VL2216 PAA_VLAN1_ID_ALERT\"", + "143": "= \"PAA_Site573_VL2216 PAA_VLAN2_ID_ALERT\"", + "144": "= \"PAA_Site573_VL2216 PAA_VLAN1_PRIO_ALERT\"", + "145": "= \"PAA_Site573_VL2216 PAA_VLAN2_PRIO_ALERT\"", + "146": "= \"PAA_Site573_VL2216 PAA_DSCP_ALERT\"", + "147": "= \"PAA_site573_2216_PNAP PAA_CC_ALERT\"", + "148": "= \"PAA_site573_2216_PNAP PAA_PL_ALERT\"", + "149": "= \"PAA_site573_2216_PNAP PAA_OW_DELAY_ALERT\"", + "150": "= \"PAA_site573_2216_PNAP PAA_OW_AVG_DELAY_ALERT\"", + "151": "= \"PAA_site573_2216_PNAP PAA_OW_DV_ALERT\"", + "152": "= \"PAA_site573_2216_PNAP PAA_OW_AVG_DV_ALERT\"", + "153": "= \"PAA_site573_2216_PNAP PAA_TW_DELAY_ALERT\"", + "154": "= \"PAA_site573_2216_PNAP PAA_TW_AVG_DELAY_ALERT\"", + "155": "= \"PAA_site573_2216_PNAP PAA_TW_DV_ALERT\"", + "156": "= \"PAA_site573_2216_PNAP PAA_TW_AVG_DV_ALERT\"", + "157": "= \"PAA_site573_2216_PNAP PAA_VLAN1_ID_ALERT\"", + "158": "= \"PAA_site573_2216_PNAP PAA_VLAN2_ID_ALERT\"", + "159": "= \"PAA_site573_2216_PNAP PAA_VLAN1_PRIO_ALERT\"", + "160": "= \"PAA_site573_2216_PNAP PAA_VLAN2_PRIO_ALERT\"", + "161": "= \"PAA_site573_2216_PNAP PAA_DSCP_ALERT\"", + "162": "= \"PAA_Site573_VL2217 PAA_CC_ALERT\"", + "163": "= \"PAA_Site573_VL2217 PAA_PL_ALERT\"", + "164": "= \"PAA_Site573_VL2217 PAA_OW_DELAY_ALERT\"", + "165": "= \"PAA_Site573_VL2217 PAA_OW_AVG_DELAY_ALERT\"", + "166": "= \"PAA_Site573_VL2217 PAA_OW_DV_ALERT\"", + "167": "= \"PAA_Site573_VL2217 PAA_OW_AVG_DV_ALERT\"", + "168": "= \"PAA_Site573_VL2217 PAA_TW_DELAY_ALERT\"", + "169": "= \"PAA_Site573_VL2217 PAA_TW_AVG_DELAY_ALERT\"", + "170": "= \"PAA_Site573_VL2217 PAA_TW_DV_ALERT\"", + "171": "= \"PAA_Site573_VL2217 PAA_TW_AVG_DV_ALERT\"", + "172": "= \"PAA_Site573_VL2217 PAA_VLAN1_ID_ALERT\"", + "173": "= \"PAA_Site573_VL2217 PAA_VLAN2_ID_ALERT\"", + "174": "= \"PAA_Site573_VL2217 PAA_VLAN1_PRIO_ALERT\"", + "175": "= \"PAA_Site573_VL2217 PAA_VLAN2_PRIO_ALERT\"", + "176": "= \"PAA_Site573_VL2217 PAA_DSCP_ALERT\"", + "177": "= \"PAA_site573_2217_PNAP PAA_CC_ALERT\"", + "178": "= \"PAA_site573_2217_PNAP PAA_PL_ALERT\"", + "179": "= \"PAA_site573_2217_PNAP PAA_OW_DELAY_ALERT\"", + "180": "= \"PAA_site573_2217_PNAP PAA_OW_AVG_DELAY_ALERT\"", + "181": "= \"PAA_site573_2217_PNAP PAA_OW_DV_ALERT\"", + "182": "= \"PAA_site573_2217_PNAP PAA_OW_AVG_DV_ALERT\"", + "183": "= \"PAA_site573_2217_PNAP PAA_TW_DELAY_ALERT\"", + "184": "= \"PAA_site573_2217_PNAP PAA_TW_AVG_DELAY_ALERT\"", + "185": "= \"PAA_site573_2217_PNAP PAA_TW_DV_ALERT\"", + "186": "= \"PAA_site573_2217_PNAP PAA_TW_AVG_DV_ALERT\"", + "187": "= \"PAA_site573_2217_PNAP PAA_VLAN1_ID_ALERT\"", + "188": "= \"PAA_site573_2217_PNAP PAA_VLAN2_ID_ALERT\"", + "189": "= \"PAA_site573_2217_PNAP PAA_VLAN1_PRIO_ALERT\"", + "190": "= \"PAA_site573_2217_PNAP PAA_VLAN2_PRIO_ALERT\"", + "191": "= \"PAA_site573_2217_PNAP PAA_DSCP_ALERT\"", + "192": "= \"VCAgent communication failure with Vision EMS\"", + "193": "= \"VCAgent High Resolution PAA statistics buffer full\"", + "194": "= \"VCAgent High Resolution PAA instances validation\"", + "195": "= \"VCAgent High Resolution Regulator statistics buffer full\"", + "196": "= \"VCAgent High Resolution Regulator instances validation\"", + "197": "= \"VCAgent High Resolution Policy statistics buffer full\"", + "198": "= \"VCAgent High Resolution Policy instances validation\"", + "199": "= \"VCAgent High Resolution SOAM DMM statistics buffer full\"", + "200": "= \"VCAgent High Resolution SOAM DMM instances validation\"", + "201": "= \"VCAgent High Resolution SOAM PL statistics buffer full\"", + "202": "= \"VCAgent High Resolution SOAM PL instances validation\"", + "203": "= \"VCAgent High Resolution SOAM SLM statistics buffer full\"", + "204": "= \"VCAgent High Resolution SOAM SLM instances validation\"", + "205": "= \"VCAgent High Resolution SOAM SA statistics buffer full\"", + "206": "= \"VCAgent High Resolution SOAM SA instances validation\"", + "207": "= \"VCAgent High Resolution SOAM SA Metrics statistics buffer full\"", + "208": "= \"VCAgent High Resolution SOAM SA Metrics instances validation\"", + "209": "= \"VCAgent High Resolution TWAMP statistics buffer full\"", + "210": "= \"VCAgent High Resolution TWAMP instances validation\"", + "211": "= \"VCAgent High Resolution Shaper statistics buffer full\"", + "212": "= \"VCAgent High Resolution Shaper instances validation\"", + "213": "= \"VCAgent High Resolution Port statistics buffer full\"", + "214": "= \"VCAgent High Resolution Port instances validation\"", + "215": "= \"VCAgent High Resolution SFP statistics buffer full\"", + "216": "= \"VCAgent High Resolution System Health statistics buffer full\"", + "217": "= \"One or more certificates is about to expire\"", + "218": "= \"One or more certificates has expired\"" + }, + "4": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 2", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 2", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1" + }, + "5": { + "1": "= 2", + "2": "= 3", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 3", + "7": "= 2", + "8": "= 3", + "9": "= 2", + "10": "= 3", + "11": "= 2", + "12": "= 2", + "13": "= 0", + "14": "= 0", + "15": "= 2", + "16": "= 2", + "17": "= 0", + "18": "= 0", + "19": "= 2", + "20": "= 2", + "21": "= 0", + "22": "= 0", + "23": "= 2", + "24": "= 2", + "25": "= 0", + "26": "= 0", + "27": "= 2", + "28": "= 2", + "29": "= 0", + "30": "= 0", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 0", + "35": "= 0", + "36": "= 2", + "37": "= 2", + "38": "= 0", + "39": "= 0", + "40": "= 2", + "41": "= 2", + "42": "= 0", + "43": "= 0", + "44": "= 2", + "45": "= 2", + "46": "= 0", + "47": "= 0", + "48": "= 2", + "49": "= 2", + "50": "= 0", + "51": "= 0", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 0", + "56": "= 0", + "57": "= 2", + "58": "= 2", + "59": "= 0", + "60": "= 0", + "61": "= 2", + "62": "= 2", + "63": "= 0", + "64": "= 0", + "65": "= 2", + "66": "= 2", + "67": "= 0", + "68": "= 0", + "69": "= 2", + "70": "= 2", + "71": "= 0", + "72": "= 0", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 0", + "77": "= 0", + "78": "= 2", + "79": "= 2", + "80": "= 0", + "81": "= 0", + "82": "= 2", + "83": "= 2", + "84": "= 0", + "85": "= 0", + "86": "= 2", + "87": "= 2", + "88": "= 0", + "89": "= 0", + "90": "= 2", + "91": "= 2", + "92": "= 0", + "93": "= 0", + "94": "= 2", + "95": "= 2", + "96": "= 0", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 0", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 0", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 0", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 0", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 0", + "118": "= 2", + "119": "= 2", + "120": "= 0", + "121": "= 0", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 1", + "131": "= 2", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 2", + "193": "= 2", + "194": "= 1", + "195": "= 2", + "196": "= 1", + "197": "= 2", + "198": "= 1", + "199": "= 2", + "200": "= 1", + "201": "= 2", + "202": "= 1", + "203": "= 2", + "204": "= 1", + "205": "= 2", + "206": "= 1", + "207": "= 2", + "208": "= 1", + "209": "= 2", + "210": "= 1", + "211": "= 2", + "212": "= 1", + "213": "= 2", + "214": "= 1", + "215": "= 2", + "216": "= 2", + "217": "= 1", + "218": "= 2" + }, + "6": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 1", + "98": "= 1", + "99": "= 2", + "100": "= 2", + "101": "= 1", + "102": "= 1", + "103": "= 2", + "104": "= 2", + "105": "= 1", + "106": "= 1", + "107": "= 2", + "108": "= 2", + "109": "= 1", + "110": "= 1", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 1", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 1", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2" + }, + "7": { + "1": "= \"8.0000.01\"", + "2": "= \"8.0000.02\"", + "3": "= \"8.0000.04\"", + "4": "= \"8.0000.05\"", + "5": "= \"8.0001.01\"", + "6": "= \"8.0001.02\"", + "7": "= \"8.0000.40\"", + "8": "= \"8.0000.41\"", + "9": "= \"8.0001.40\"", + "10": "= \"8.0001.41\"", + "11": "= \"2.0001.01\"", + "12": "= \"2.0001.02\"", + "13": "= \"2.0001.03\"", + "14": "= \"2.0001.04\"", + "15": "= \"2.0001.05\"", + "16": "= \"2.0001.06\"", + "17": "= \"2.0001.07\"", + "18": "= \"2.0001.08\"", + "19": "= \"2.0001.09\"", + "20": "= \"2.0001.10\"", + "21": "= \"2.0001.11\"", + "22": "= \"2.0001.12\"", + "23": "= \"2.0001.13\"", + "24": "= \"2.0001.14\"", + "25": "= \"2.0001.15\"", + "26": "= \"2.0001.16\"", + "27": "= \"2.0001.17\"", + "28": "= \"2.0001.18\"", + "29": "= \"2.0001.19\"", + "30": "= \"2.0001.20\"", + "31": "= \"2.0001.21\"", + "32": "= \"2.0002.01\"", + "33": "= \"2.0002.02\"", + "34": "= \"2.0002.03\"", + "35": "= \"2.0002.04\"", + "36": "= \"2.0002.05\"", + "37": "= \"2.0002.06\"", + "38": "= \"2.0002.07\"", + "39": "= \"2.0002.08\"", + "40": "= \"2.0002.09\"", + "41": "= \"2.0002.10\"", + "42": "= \"2.0002.11\"", + "43": "= \"2.0002.12\"", + "44": "= \"2.0002.13\"", + "45": "= \"2.0002.14\"", + "46": "= \"2.0002.15\"", + "47": "= \"2.0002.16\"", + "48": "= \"2.0002.17\"", + "49": "= \"2.0002.18\"", + "50": "= \"2.0002.19\"", + "51": "= \"2.0002.20\"", + "52": "= \"2.0002.21\"", + "53": "= \"2.0003.01\"", + "54": "= \"2.0003.02\"", + "55": "= \"2.0003.03\"", + "56": "= \"2.0003.04\"", + "57": "= \"2.0003.05\"", + "58": "= \"2.0003.06\"", + "59": "= \"2.0003.07\"", + "60": "= \"2.0003.08\"", + "61": "= \"2.0003.09\"", + "62": "= \"2.0003.10\"", + "63": "= \"2.0003.11\"", + "64": "= \"2.0003.12\"", + "65": "= \"2.0003.13\"", + "66": "= \"2.0003.14\"", + "67": "= \"2.0003.15\"", + "68": "= \"2.0003.16\"", + "69": "= \"2.0003.17\"", + "70": "= \"2.0003.18\"", + "71": "= \"2.0003.19\"", + "72": "= \"2.0003.20\"", + "73": "= \"2.0003.21\"", + "74": "= \"2.0004.01\"", + "75": "= \"2.0004.02\"", + "76": "= \"2.0004.03\"", + "77": "= \"2.0004.04\"", + "78": "= \"2.0004.05\"", + "79": "= \"2.0004.06\"", + "80": "= \"2.0004.07\"", + "81": "= \"2.0004.08\"", + "82": "= \"2.0004.09\"", + "83": "= \"2.0004.10\"", + "84": "= \"2.0004.11\"", + "85": "= \"2.0004.12\"", + "86": "= \"2.0004.13\"", + "87": "= \"2.0004.14\"", + "88": "= \"2.0004.15\"", + "89": "= \"2.0004.16\"", + "90": "= \"2.0004.17\"", + "91": "= \"2.0004.18\"", + "92": "= \"2.0004.19\"", + "93": "= \"2.0004.20\"", + "94": "= \"2.0004.21\"", + "95": "= \"1.0001.01\"", + "96": "= \"1.0001.02\"", + "97": "= \"1.0001.04\"", + "98": "= \"1.0001.07\"", + "99": "= \"1.0002.01\"", + "100": "= \"1.0002.02\"", + "101": "= \"1.0002.04\"", + "102": "= \"1.0002.07\"", + "103": "= \"1.0003.01\"", + "104": "= \"1.0003.02\"", + "105": "= \"1.0003.04\"", + "106": "= \"1.0003.07\"", + "107": "= \"1.0004.01\"", + "108": "= \"1.0004.02\"", + "109": "= \"1.0004.04\"", + "110": "= \"1.0004.07\"", + "111": "= \"1.0005.01\"", + "112": "= \"1.0006.01\"", + "113": "= \"1.0006.02\"", + "114": "= \"1.0006.04\"", + "115": "= \"1.0006.03\"", + "116": "= \"1.0007.01\"", + "117": "= \"1.0007.02\"", + "118": "= \"1.0007.04\"", + "119": "= \"1.0007.03\"", + "120": "= \"8.0000.06\"", + "121": "= \"8.0000.07\"", + "122": "= \"8.0000.80\"", + "123": "= \"7.0001.01\"", + "124": "= \"7.0001.02\"", + "125": "= \"7.0001.06\"", + "126": "= \"7.0001.08\"", + "127": "= \"7.0001.04\"", + "128": "= \"7.0001.05\"", + "129": "= \"7.0001.07\"", + "130": "= \"18.0001.01\"", + "131": "= \"18.0001.02\"", + "132": "= \"3.0001.01\"", + "133": "= \"3.0001.02\"", + "134": "= \"3.0001.03\"", + "135": "= \"3.0001.04\"", + "136": "= \"3.0001.05\"", + "137": "= \"3.0001.06\"", + "138": "= \"3.0001.07\"", + "139": "= \"3.0001.08\"", + "140": "= \"3.0001.09\"", + "141": "= \"3.0001.10\"", + "142": "= \"3.0001.11\"", + "143": "= \"3.0001.12\"", + "144": "= \"3.0001.13\"", + "145": "= \"3.0001.14\"", + "146": "= \"3.0001.15\"", + "147": "= \"3.0002.01\"", + "148": "= \"3.0002.02\"", + "149": "= \"3.0002.03\"", + "150": "= \"3.0002.04\"", + "151": "= \"3.0002.05\"", + "152": "= \"3.0002.06\"", + "153": "= \"3.0002.07\"", + "154": "= \"3.0002.08\"", + "155": "= \"3.0002.09\"", + "156": "= \"3.0002.10\"", + "157": "= \"3.0002.11\"", + "158": "= \"3.0002.12\"", + "159": "= \"3.0002.13\"", + "160": "= \"3.0002.14\"", + "161": "= \"3.0002.15\"", + "162": "= \"3.0003.01\"", + "163": "= \"3.0003.02\"", + "164": "= \"3.0003.03\"", + "165": "= \"3.0003.04\"", + "166": "= \"3.0003.05\"", + "167": "= \"3.0003.06\"", + "168": "= \"3.0003.07\"", + "169": "= \"3.0003.08\"", + "170": "= \"3.0003.09\"", + "171": "= \"3.0003.10\"", + "172": "= \"3.0003.11\"", + "173": "= \"3.0003.12\"", + "174": "= \"3.0003.13\"", + "175": "= \"3.0003.14\"", + "176": "= \"3.0003.15\"", + "177": "= \"3.0004.01\"", + "178": "= \"3.0004.02\"", + "179": "= \"3.0004.03\"", + "180": "= \"3.0004.04\"", + "181": "= \"3.0004.05\"", + "182": "= \"3.0004.06\"", + "183": "= \"3.0004.07\"", + "184": "= \"3.0004.08\"", + "185": "= \"3.0004.09\"", + "186": "= \"3.0004.10\"", + "187": "= \"3.0004.11\"", + "188": "= \"3.0004.12\"", + "189": "= \"3.0004.13\"", + "190": "= \"3.0004.14\"", + "191": "= \"3.0004.15\"", + "192": "= \"7.0004.01\"", + "193": "= \"7.0004.12\"", + "194": "= \"7.0004.04\"", + "195": "= \"7.0004.11\"", + "196": "= \"7.0004.03\"", + "197": "= \"7.0004.10\"", + "198": "= \"7.0004.02\"", + "199": "= \"7.0004.14\"", + "200": "= \"7.0004.06\"", + "201": "= \"7.0004.13\"", + "202": "= \"7.0004.05\"", + "203": "= \"7.0004.17\"", + "204": "= \"7.0004.09\"", + "205": "= \"7.0004.15\"", + "206": "= \"7.0004.07\"", + "207": "= \"7.0004.16\"", + "208": "= \"7.0004.08\"", + "209": "= \"7.0004.21\"", + "210": "= \"7.0004.20\"", + "211": "= \"7.0004.23\"", + "212": "= \"7.0004.22\"", + "213": "= \"7.0004.25\"", + "214": "= \"7.0004.24\"", + "215": "= \"7.0004.28\"", + "216": "= \"7.0004.29\"", + "217": "= \"19.0001.01\"", + "218": "= \"19.0001.02\"" + }, + "8": { + "1": "= \"TEMP-HIGH-WN\"", + "2": "= \"TEMP-HIGH-ALM\"", + "3": "= \"PWR-LOSS\"", + "4": "= \"PWR-LOSS\"", + "5": "= \"TEMP-HIGH-WN\"", + "6": "= \"TEMP-HIGH-ALM\"", + "7": "= \"FAN-SLOW\"", + "8": "= \"FAN-FAILURE\"", + "9": "= \"FAN-SLOW\"", + "10": "= \"FAN-FAILURE\"", + "11": "= \"TEMP-HIGH-ALM\"", + "12": "= \"TEMP-LOW-ALM\"", + "13": "= \"TEMP-HIGH-WN\"", + "14": "= \"TEMP-LOW-WN\"", + "15": "= \"VCC-HIGH-ALM\"", + "16": "= \"VCC-LOW-ALM\"", + "17": "= \"VCC-HIGH-WN\"", + "18": "= \"VCC-LOW-WN\"", + "19": "= \"LBC-HIGH-ALM\"", + "20": "= \"LBC-LOW-ALM\"", + "21": "= \"LBC-HIGH-WN\"", + "22": "= \"LBC-LOW-WN\"", + "23": "= \"TX-PWR-HIGH-ALM\"", + "24": "= \"TX-PWR-LOW-ALM\"", + "25": "= \"TX-PWR-HIGH-WN\"", + "26": "= \"TX-PWR-LOW-WN\"", + "27": "= \"RX-PWR-HIGH-ALM\"", + "28": "= \"RX-PWR-LOW-ALM\"", + "29": "= \"RX-PWR-HIGH-WN\"", + "30": "= \"RX-PWR-LOW-WN\"", + "31": "= \"MOD-NOT-PRESENT\"", + "32": "= \"TEMP-HIGH-ALM\"", + "33": "= \"TEMP-LOW-ALM\"", + "34": "= \"TEMP-HIGH-WN\"", + "35": "= \"TEMP-LOW-WN\"", + "36": "= \"VCC-HIGH-ALM\"", + "37": "= \"VCC-LOW-ALM\"", + "38": "= \"VCC-HIGH-WN\"", + "39": "= \"VCC-LOW-WN\"", + "40": "= \"LBC-HIGH-ALM\"", + "41": "= \"LBC-LOW-ALM\"", + "42": "= \"LBC-HIGH-WN\"", + "43": "= \"LBC-LOW-WN\"", + "44": "= \"TX-PWR-HIGH-ALM\"", + "45": "= \"TX-PWR-LOW-ALM\"", + "46": "= \"TX-PWR-HIGH-WN\"", + "47": "= \"TX-PWR-LOW-WN\"", + "48": "= \"RX-PWR-HIGH-ALM\"", + "49": "= \"RX-PWR-LOW-ALM\"", + "50": "= \"RX-PWR-HIGH-WN\"", + "51": "= \"RX-PWR-LOW-WN\"", + "52": "= \"MOD-NOT-PRESENT\"", + "53": "= \"TEMP-HIGH-ALM\"", + "54": "= \"TEMP-LOW-ALM\"", + "55": "= \"TEMP-HIGH-WN\"", + "56": "= \"TEMP-LOW-WN\"", + "57": "= \"VCC-HIGH-ALM\"", + "58": "= \"VCC-LOW-ALM\"", + "59": "= \"VCC-HIGH-WN\"", + "60": "= \"VCC-LOW-WN\"", + "61": "= \"LBC-HIGH-ALM\"", + "62": "= \"LBC-LOW-ALM\"", + "63": "= \"LBC-HIGH-WN\"", + "64": "= \"LBC-LOW-WN\"", + "65": "= \"TX-PWR-HIGH-ALM\"", + "66": "= \"TX-PWR-LOW-ALM\"", + "67": "= \"TX-PWR-HIGH-WN\"", + "68": "= \"TX-PWR-LOW-WN\"", + "69": "= \"RX-PWR-HIGH-ALM\"", + "70": "= \"RX-PWR-LOW-ALM\"", + "71": "= \"RX-PWR-HIGH-WN\"", + "72": "= \"RX-PWR-LOW-WN\"", + "73": "= \"MOD-NOT-PRESENT\"", + "74": "= \"TEMP-HIGH-ALM\"", + "75": "= \"TEMP-LOW-ALM\"", + "76": "= \"TEMP-HIGH-WN\"", + "77": "= \"TEMP-LOW-WN\"", + "78": "= \"VCC-HIGH-ALM\"", + "79": "= \"VCC-LOW-ALM\"", + "80": "= \"VCC-HIGH-WN\"", + "81": "= \"VCC-LOW-WN\"", + "82": "= \"LBC-HIGH-ALM\"", + "83": "= \"LBC-LOW-ALM\"", + "84": "= \"LBC-HIGH-WN\"", + "85": "= \"LBC-LOW-WN\"", + "86": "= \"TX-PWR-HIGH-ALM\"", + "87": "= \"TX-PWR-LOW-ALM\"", + "88": "= \"TX-PWR-HIGH-WN\"", + "89": "= \"TX-PWR-LOW-WN\"", + "90": "= \"RX-PWR-HIGH-ALM\"", + "91": "= \"RX-PWR-LOW-ALM\"", + "92": "= \"RX-PWR-HIGH-WN\"", + "93": "= \"RX-PWR-LOW-WN\"", + "94": "= \"MOD-NOT-PRESENT\"", + "95": "= \"LINK-DOWN\"", + "96": "= \"OAM-LOOPBACK\"", + "97": "= \"LINK-DOWN-FP\"", + "98": "= \"LINK-DOWN-SA\"", + "99": "= \"LINK-DOWN\"", + "100": "= \"OAM-LOOPBACK\"", + "101": "= \"LINK-DOWN-FP\"", + "102": "= \"LINK-DOWN-SA\"", + "103": "= \"LINK-DOWN\"", + "104": "= \"OAM-LOOPBACK\"", + "105": "= \"LINK-DOWN-FP\"", + "106": "= \"LINK-DOWN-SA\"", + "107": "= \"LINK-DOWN\"", + "108": "= \"OAM-LOOPBACK\"", + "109": "= \"LINK-DOWN-FP\"", + "110": "= \"LINK-DOWN-SA\"", + "111": "= \"LINK-DOWN\"", + "112": "= \"LINK-DOWN\"", + "113": "= \"OAM-LOOPBACK\"", + "114": "= \"LINK-DOWN-FP\"", + "115": "= \"SPEED-MISMATCH\"", + "116": "= \"LINK-DOWN\"", + "117": "= \"OAM-LOOPBACK\"", + "118": "= \"LINK-DOWN-FP\"", + "119": "= \"SPEED-MISMATCH\"", + "120": "= \"DRYCONTACT-IN1\"", + "121": "= \"DRYCONTACT-IN2\"", + "122": "= \"TOOL-DIAG-RUNNING\"", + "123": "= \"NTP-STATUS\"", + "124": "= \"NTP-LOST-SYNCH\"", + "125": "= \"NTP-CAPABILITY\"", + "126": "= \"NTP-RMT-CAPABILITY\"", + "127": "= \"PTP-STATUS\"", + "128": "= \"PTP-LOST-SYNCH\"", + "129": "= \"PTP-CAPABILITY\"", + "130": "= \"INVENTORY-ALMOST-FULL\"", + "131": "= \"INVENTORY-FULL\"", + "132": "= \"CONNECT-LOSS\"", + "133": "= \"PKT-LOSS\"", + "134": "= \"OW-DELAY\"", + "135": "= \"OW-AVG-DELAY\"", + "136": "= \"OW-DV\"", + "137": "= \"OW-AVG-DV\"", + "138": "= \"TW-DELAY\"", + "139": "= \"TW-AVG-DELAY\"", + "140": "= \"TW-DV\"", + "141": "= \"TW-AVG-DV\"", + "142": "= \"VLAN1-ID\"", + "143": "= \"VLAN2-ID\"", + "144": "= \"VLAN1-PRIO\"", + "145": "= \"VLAN2-PRIO\"", + "146": "= \"DSCP\"", + "147": "= \"CONNECT-LOSS\"", + "148": "= \"PKT-LOSS\"", + "149": "= \"OW-DELAY\"", + "150": "= \"OW-AVG-DELAY\"", + "151": "= \"OW-DV\"", + "152": "= \"OW-AVG-DV\"", + "153": "= \"TW-DELAY\"", + "154": "= \"TW-AVG-DELAY\"", + "155": "= \"TW-DV\"", + "156": "= \"TW-AVG-DV\"", + "157": "= \"VLAN1-ID\"", + "158": "= \"VLAN2-ID\"", + "159": "= \"VLAN1-PRIO\"", + "160": "= \"VLAN2-PRIO\"", + "161": "= \"DSCP\"", + "162": "= \"CONNECT-LOSS\"", + "163": "= \"PKT-LOSS\"", + "164": "= \"OW-DELAY\"", + "165": "= \"OW-AVG-DELAY\"", + "166": "= \"OW-DV\"", + "167": "= \"OW-AVG-DV\"", + "168": "= \"TW-DELAY\"", + "169": "= \"TW-AVG-DELAY\"", + "170": "= \"TW-DV\"", + "171": "= \"TW-AVG-DV\"", + "172": "= \"VLAN1-ID\"", + "173": "= \"VLAN2-ID\"", + "174": "= \"VLAN1-PRIO\"", + "175": "= \"VLAN2-PRIO\"", + "176": "= \"DSCP\"", + "177": "= \"CONNECT-LOSS\"", + "178": "= \"PKT-LOSS\"", + "179": "= \"OW-DELAY\"", + "180": "= \"OW-AVG-DELAY\"", + "181": "= \"OW-DV\"", + "182": "= \"OW-AVG-DV\"", + "183": "= \"TW-DELAY\"", + "184": "= \"TW-AVG-DELAY\"", + "185": "= \"TW-DV\"", + "186": "= \"TW-AVG-DV\"", + "187": "= \"VLAN1-ID\"", + "188": "= \"VLAN2-ID\"", + "189": "= \"VLAN1-PRIO\"", + "190": "= \"VLAN2-PRIO\"", + "191": "= \"DSCP\"", + "192": "= \"VCA-LOST-COMM\"", + "193": "= \"VCA-FULL-PAA\"", + "194": "= \"VCA-MAX-PAA\"", + "195": "= \"VCA-FULL-BWP\"", + "196": "= \"VCA-MAX-BWP\"", + "197": "= \"VCA-FULL-POL\"", + "198": "= \"VCA-MAX-POL\"", + "199": "= \"VCA-FULL-DMM\"", + "200": "= \"VCA-MAX-DMM\"", + "201": "= \"VCA-FULL-PL\"", + "202": "= \"VCA-MAX-PL\"", + "203": "= \"VCA-FULL-SLM\"", + "204": "= \"VCA-MAX-SLM\"", + "205": "= \"VCA-FULL-SA\"", + "206": "= \"VCA-MAX-SA\"", + "207": "= \"VCA-FULL-SA_M\"", + "208": "= \"VCA-MAX-SA_M\"", + "209": "= \"VCA-FULL-TWAMP\"", + "210": "= \"VCA-MAX-TWAMP\"", + "211": "= \"VCA-FULL-SHAPER-V2\"", + "212": "= \"VCA-MAX-SHAPER-V2\"", + "213": "= \"VCA-FULL-PORT\"", + "214": "= \"VCA-MAX-PORT\"", + "215": "= \"VCA-FULL-SFP\"", + "216": "= \"VCA-FULL-SYSTEM-HEALTH\"", + "217": "= \"EXPIRING\"", + "218": "= \"EXPIRED\"" + }, + "9": { + "1": "= \"ENV.TEMP\"", + "2": "= \"ENV.TEMP\"", + "3": "= \"ENV.PWR-FEEDA\"", + "4": "= \"ENV.PWR-FEEDB\"", + "5": "= \"ENV.TEMP\"", + "6": "= \"ENV.TEMP\"", + "7": "= \"ENV.FAN-SLOW\"", + "8": "= \"ENV.FAN-FAILURE\"", + "9": "= \"ENV.FAN-SLOW\"", + "10": "= \"ENV.FAN-FAILURE\"", + "11": "= \"SFP.1\"", + "12": "= \"SFP.1\"", + "13": "= \"SFP.1\"", + "14": "= \"SFP.1\"", + "15": "= \"SFP.1\"", + "16": "= \"SFP.1\"", + "17": "= \"SFP.1\"", + "18": "= \"SFP.1\"", + "19": "= \"SFP.1\"", + "20": "= \"SFP.1\"", + "21": "= \"SFP.1\"", + "22": "= \"SFP.1\"", + "23": "= \"SFP.1\"", + "24": "= \"SFP.1\"", + "25": "= \"SFP.1\"", + "26": "= \"SFP.1\"", + "27": "= \"SFP.1\"", + "28": "= \"SFP.1\"", + "29": "= \"SFP.1\"", + "30": "= \"SFP.1\"", + "31": "= \"SFP.1\"", + "32": "= \"SFP.2\"", + "33": "= \"SFP.2\"", + "34": "= \"SFP.2\"", + "35": "= \"SFP.2\"", + "36": "= \"SFP.2\"", + "37": "= \"SFP.2\"", + "38": "= \"SFP.2\"", + "39": "= \"SFP.2\"", + "40": "= \"SFP.2\"", + "41": "= \"SFP.2\"", + "42": "= \"SFP.2\"", + "43": "= \"SFP.2\"", + "44": "= \"SFP.2\"", + "45": "= \"SFP.2\"", + "46": "= \"SFP.2\"", + "47": "= \"SFP.2\"", + "48": "= \"SFP.2\"", + "49": "= \"SFP.2\"", + "50": "= \"SFP.2\"", + "51": "= \"SFP.2\"", + "52": "= \"SFP.2\"", + "53": "= \"SFP.3\"", + "54": "= \"SFP.3\"", + "55": "= \"SFP.3\"", + "56": "= \"SFP.3\"", + "57": "= \"SFP.3\"", + "58": "= \"SFP.3\"", + "59": "= \"SFP.3\"", + "60": "= \"SFP.3\"", + "61": "= \"SFP.3\"", + "62": "= \"SFP.3\"", + "63": "= \"SFP.3\"", + "64": "= \"SFP.3\"", + "65": "= \"SFP.3\"", + "66": "= \"SFP.3\"", + "67": "= \"SFP.3\"", + "68": "= \"SFP.3\"", + "69": "= \"SFP.3\"", + "70": "= \"SFP.3\"", + "71": "= \"SFP.3\"", + "72": "= \"SFP.3\"", + "73": "= \"SFP.3\"", + "74": "= \"SFP.4\"", + "75": "= \"SFP.4\"", + "76": "= \"SFP.4\"", + "77": "= \"SFP.4\"", + "78": "= \"SFP.4\"", + "79": "= \"SFP.4\"", + "80": "= \"SFP.4\"", + "81": "= \"SFP.4\"", + "82": "= \"SFP.4\"", + "83": "= \"SFP.4\"", + "84": "= \"SFP.4\"", + "85": "= \"SFP.4\"", + "86": "= \"SFP.4\"", + "87": "= \"SFP.4\"", + "88": "= \"SFP.4\"", + "89": "= \"SFP.4\"", + "90": "= \"SFP.4\"", + "91": "= \"SFP.4\"", + "92": "= \"SFP.4\"", + "93": "= \"SFP.4\"", + "94": "= \"SFP.4\"", + "95": "= \"PORT.EVEN_VLAN_UPLINK\"", + "96": "= \"PORT.EVEN_VLAN_UPLINK\"", + "97": "= \"PORT.EVEN_VLAN_UPLINK\"", + "98": "= \"PORT.EVEN_VLAN_UPLINK\"", + "99": "= \"PORT.ODD_VLAN_UPLINK\"", + "100": "= \"PORT.ODD_VLAN_UPLINK\"", + "101": "= \"PORT.ODD_VLAN_UPLINK\"", + "102": "= \"PORT.ODD_VLAN_UPLINK\"", + "103": "= \"PORT.EVEN_VLAN_DOWNLIN\"", + "104": "= \"PORT.EVEN_VLAN_DOWNLIN\"", + "105": "= \"PORT.EVEN_VLAN_DOWNLIN\"", + "106": "= \"PORT.EVEN_VLAN_DOWNLIN\"", + "107": "= \"PORT.ODD_VLAN_DOWNLINK\"", + "108": "= \"PORT.ODD_VLAN_DOWNLINK\"", + "109": "= \"PORT.ODD_VLAN_DOWNLINK\"", + "110": "= \"PORT.ODD_VLAN_DOWNLINK\"", + "111": "= \"PORT.Management\"", + "112": "= \"PORT.LAG-1\"", + "113": "= \"PORT.LAG-1\"", + "114": "= \"PORT.LAG-1\"", + "115": "= \"PORT.LAG-1\"", + "116": "= \"PORT.LAG-2\"", + "117": "= \"PORT.LAG-2\"", + "118": "= \"PORT.LAG-2\"", + "119": "= \"PORT.LAG-2\"", + "120": "= \"ENV.DRYCONTACT-IN1\"", + "121": "= \"ENV.DRYCONTACT-IN2\"", + "122": "= \"NE\"", + "123": "= \"PROTOCOL.NTP\"", + "124": "= \"PROTOCOL.NTP\"", + "125": "= \"PROTOCOL.NTP\"", + "126": "= \"PROTOCOL.NTP\"", + "127": "= \"PROTOCOL.PTP\"", + "128": "= \"PROTOCOL.PTP\"", + "129": "= \"PROTOCOL.PTP\"", + "130": "= \"INVENTORY\"", + "131": "= \"INVENTORY\"", + "132": "= \"PAA.PAA_Site573_VL2216\"", + "133": "= \"PAA.PAA_Site573_VL2216\"", + "134": "= \"PAA.PAA_Site573_VL2216\"", + "135": "= \"PAA.PAA_Site573_VL2216\"", + "136": "= \"PAA.PAA_Site573_VL2216\"", + "137": "= \"PAA.PAA_Site573_VL2216\"", + "138": "= \"PAA.PAA_Site573_VL2216\"", + "139": "= \"PAA.PAA_Site573_VL2216\"", + "140": "= \"PAA.PAA_Site573_VL2216\"", + "141": "= \"PAA.PAA_Site573_VL2216\"", + "142": "= \"PAA.PAA_Site573_VL2216\"", + "143": "= \"PAA.PAA_Site573_VL2216\"", + "144": "= \"PAA.PAA_Site573_VL2216\"", + "145": "= \"PAA.PAA_Site573_VL2216\"", + "146": "= \"PAA.PAA_Site573_VL2216\"", + "147": "= \"PAA.PAA_site573_2216_PNAP\"", + "148": "= \"PAA.PAA_site573_2216_PNAP\"", + "149": "= \"PAA.PAA_site573_2216_PNAP\"", + "150": "= \"PAA.PAA_site573_2216_PNAP\"", + "151": "= \"PAA.PAA_site573_2216_PNAP\"", + "152": "= \"PAA.PAA_site573_2216_PNAP\"", + "153": "= \"PAA.PAA_site573_2216_PNAP\"", + "154": "= \"PAA.PAA_site573_2216_PNAP\"", + "155": "= \"PAA.PAA_site573_2216_PNAP\"", + "156": "= \"PAA.PAA_site573_2216_PNAP\"", + "157": "= \"PAA.PAA_site573_2216_PNAP\"", + "158": "= \"PAA.PAA_site573_2216_PNAP\"", + "159": "= \"PAA.PAA_site573_2216_PNAP\"", + "160": "= \"PAA.PAA_site573_2216_PNAP\"", + "161": "= \"PAA.PAA_site573_2216_PNAP\"", + "162": "= \"PAA.PAA_Site573_VL2217\"", + "163": "= \"PAA.PAA_Site573_VL2217\"", + "164": "= \"PAA.PAA_Site573_VL2217\"", + "165": "= \"PAA.PAA_Site573_VL2217\"", + "166": "= \"PAA.PAA_Site573_VL2217\"", + "167": "= \"PAA.PAA_Site573_VL2217\"", + "168": "= \"PAA.PAA_Site573_VL2217\"", + "169": "= \"PAA.PAA_Site573_VL2217\"", + "170": "= \"PAA.PAA_Site573_VL2217\"", + "171": "= \"PAA.PAA_Site573_VL2217\"", + "172": "= \"PAA.PAA_Site573_VL2217\"", + "173": "= \"PAA.PAA_Site573_VL2217\"", + "174": "= \"PAA.PAA_Site573_VL2217\"", + "175": "= \"PAA.PAA_Site573_VL2217\"", + "176": "= \"PAA.PAA_Site573_VL2217\"", + "177": "= \"PAA.PAA_site573_2217_PNAP\"", + "178": "= \"PAA.PAA_site573_2217_PNAP\"", + "179": "= \"PAA.PAA_site573_2217_PNAP\"", + "180": "= \"PAA.PAA_site573_2217_PNAP\"", + "181": "= \"PAA.PAA_site573_2217_PNAP\"", + "182": "= \"PAA.PAA_site573_2217_PNAP\"", + "183": "= \"PAA.PAA_site573_2217_PNAP\"", + "184": "= \"PAA.PAA_site573_2217_PNAP\"", + "185": "= \"PAA.PAA_site573_2217_PNAP\"", + "186": "= \"PAA.PAA_site573_2217_PNAP\"", + "187": "= \"PAA.PAA_site573_2217_PNAP\"", + "188": "= \"PAA.PAA_site573_2217_PNAP\"", + "189": "= \"PAA.PAA_site573_2217_PNAP\"", + "190": "= \"PAA.PAA_site573_2217_PNAP\"", + "191": "= \"PAA.PAA_site573_2217_PNAP\"", + "192": "= \"VCAGENT\"", + "193": "= \"VCAGENT\"", + "194": "= \"VCAGENT\"", + "195": "= \"VCAGENT\"", + "196": "= \"VCAGENT\"", + "197": "= \"VCAGENT\"", + "198": "= \"VCAGENT\"", + "199": "= \"VCAGENT\"", + "200": "= \"VCAGENT\"", + "201": "= \"VCAGENT\"", + "202": "= \"VCAGENT\"", + "203": "= \"VCAGENT\"", + "204": "= \"VCAGENT\"", + "205": "= \"VCAGENT\"", + "206": "= \"VCAGENT\"", + "207": "= \"VCAGENT\"", + "208": "= \"VCAGENT\"", + "209": "= \"VCAGENT\"", + "210": "= \"VCAGENT\"", + "211": "= \"VCAGENT\"", + "212": "= \"VCAGENT\"", + "213": "= \"VCAGENT\"", + "214": "= \"VCAGENT\"", + "215": "= \"VCAGENT\"", + "216": "= \"VCAGENT\"", + "217": "= \"CERTIFICATE.EXPIRING\"", + "218": "= \"CERTIFICATE.EXPIRED\"" + }, + "10": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0" + } + } + }, + "11": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "8": "= 8", + "9": "= 9", + "10": "= 10", + "11": "= 11", + "12": "= 12", + "13": "= 13", + "14": "= 14", + "15": "= 15", + "16": "= 16", + "17": "= 17", + "18": "= 18", + "19": "= 19", + "20": "= 20", + "21": "= 21", + "22": "= 22", + "23": "= 23", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83", + "84": "= 84", + "85": "= 85", + "86": "= 86", + "87": "= 87", + "88": "= 88", + "89": "= 89", + "90": "= 90", + "91": "= 91", + "92": "= 92", + "93": "= 93", + "94": "= 94", + "95": "= 95", + "96": "= 96", + "97": "= 97", + "98": "= 98", + "99": "= 99", + "100": "= 100", + "101": "= 101", + "102": "= 102", + "103": "= 103", + "104": "= 104", + "105": "= 105", + "106": "= 106", + "107": "= 107", + "108": "= 108", + "109": "= 109", + "110": "= 110", + "111": "= 111", + "112": "= 112", + "113": "= 113", + "114": "= 114", + "115": "= 115", + "116": "= 116", + "117": "= 117", + "118": "= 118", + "119": "= 119", + "120": "= 120", + "121": "= 121", + "122": "= 122", + "123": "= 123", + "124": "= 124", + "125": "= 125", + "126": "= 126", + "127": "= 127", + "128": "= 128", + "129": "= 129", + "130": "= 130", + "131": "= 131", + "132": "= 132", + "133": "= 133", + "134": "= 134", + "135": "= 135", + "136": "= 136", + "137": "= 137", + "138": "= 138", + "139": "= 139", + "140": "= 140", + "141": "= 141", + "142": "= 142", + "143": "= 143", + "144": "= 144", + "145": "= 145", + "146": "= 146", + "147": "= 147", + "148": "= 148", + "149": "= 149", + "150": "= 150", + "151": "= 151", + "152": "= 152", + "153": "= 153", + "154": "= 154", + "155": "= 155", + "156": "= 156", + "157": "= 157", + "158": "= 158", + "159": "= 159", + "160": "= 160", + "161": "= 161", + "162": "= 162", + "163": "= 163", + "164": "= 164", + "165": "= 165", + "166": "= 166", + "167": "= 167", + "168": "= 168", + "169": "= 169", + "170": "= 170", + "171": "= 171", + "172": "= 172", + "173": "= 173", + "174": "= 174", + "175": "= 175", + "176": "= 176", + "177": "= 177", + "178": "= 178", + "179": "= 179", + "180": "= 180", + "181": "= 181", + "182": "= 182", + "183": "= 183", + "184": "= 184", + "185": "= 185", + "186": "= 186", + "187": "= 187", + "188": "= 188", + "189": "= 189", + "190": "= 190", + "191": "= 191", + "192": "= 192", + "193": "= 193", + "194": "= 194", + "195": "= 195", + "196": "= 196", + "197": "= 197", + "198": "= 198", + "199": "= 199", + "200": "= 200", + "201": "= 201", + "202": "= 202", + "203": "= 203", + "204": "= 204", + "205": "= 205", + "206": "= 206", + "207": "= 207", + "208": "= 208", + "209": "= 209", + "210": "= 210", + "211": "= 211", + "212": "= 212", + "213": "= 213", + "214": "= 214", + "215": "= 215", + "216": "= 216", + "217": "= 217", + "218": "= 218" + }, + "2": { + "1": "= 8000001", + "2": "= 8000002", + "3": "= 8000004", + "4": "= 8000005", + "5": "= 8000101", + "6": "= 8000102", + "7": "= 8000040", + "8": "= 8000041", + "9": "= 8000140", + "10": "= 8000141", + "11": "= 2000101", + "12": "= 2000102", + "13": "= 2000103", + "14": "= 2000104", + "15": "= 2000105", + "16": "= 2000106", + "17": "= 2000107", + "18": "= 2000108", + "19": "= 2000109", + "20": "= 2000110", + "21": "= 2000111", + "22": "= 2000112", + "23": "= 2000113", + "24": "= 2000114", + "25": "= 2000115", + "26": "= 2000116", + "27": "= 2000117", + "28": "= 2000118", + "29": "= 2000119", + "30": "= 2000120", + "31": "= 2000121", + "32": "= 2000201", + "33": "= 2000202", + "34": "= 2000203", + "35": "= 2000204", + "36": "= 2000205", + "37": "= 2000206", + "38": "= 2000207", + "39": "= 2000208", + "40": "= 2000209", + "41": "= 2000210", + "42": "= 2000211", + "43": "= 2000212", + "44": "= 2000213", + "45": "= 2000214", + "46": "= 2000215", + "47": "= 2000216", + "48": "= 2000217", + "49": "= 2000218", + "50": "= 2000219", + "51": "= 2000220", + "52": "= 2000221", + "53": "= 2000301", + "54": "= 2000302", + "55": "= 2000303", + "56": "= 2000304", + "57": "= 2000305", + "58": "= 2000306", + "59": "= 2000307", + "60": "= 2000308", + "61": "= 2000309", + "62": "= 2000310", + "63": "= 2000311", + "64": "= 2000312", + "65": "= 2000313", + "66": "= 2000314", + "67": "= 2000315", + "68": "= 2000316", + "69": "= 2000317", + "70": "= 2000318", + "71": "= 2000319", + "72": "= 2000320", + "73": "= 2000321", + "74": "= 2000401", + "75": "= 2000402", + "76": "= 2000403", + "77": "= 2000404", + "78": "= 2000405", + "79": "= 2000406", + "80": "= 2000407", + "81": "= 2000408", + "82": "= 2000409", + "83": "= 2000410", + "84": "= 2000411", + "85": "= 2000412", + "86": "= 2000413", + "87": "= 2000414", + "88": "= 2000415", + "89": "= 2000416", + "90": "= 2000417", + "91": "= 2000418", + "92": "= 2000419", + "93": "= 2000420", + "94": "= 2000421", + "95": "= 1000101", + "96": "= 1000102", + "97": "= 1000104", + "98": "= 1000107", + "99": "= 1000201", + "100": "= 1000202", + "101": "= 1000204", + "102": "= 1000207", + "103": "= 1000301", + "104": "= 1000302", + "105": "= 1000304", + "106": "= 1000307", + "107": "= 1000401", + "108": "= 1000402", + "109": "= 1000404", + "110": "= 1000407", + "111": "= 1000501", + "112": "= 1000601", + "113": "= 1000602", + "114": "= 1000604", + "115": "= 1000603", + "116": "= 1000701", + "117": "= 1000702", + "118": "= 1000704", + "119": "= 1000703", + "120": "= 8000006", + "121": "= 8000007", + "122": "= 8000080", + "123": "= 7000101", + "124": "= 7000102", + "125": "= 7000106", + "126": "= 7000108", + "127": "= 7000104", + "128": "= 7000105", + "129": "= 7000107", + "130": "= 18000101", + "131": "= 18000102", + "132": "= 3000101", + "133": "= 3000102", + "134": "= 3000103", + "135": "= 3000104", + "136": "= 3000105", + "137": "= 3000106", + "138": "= 3000107", + "139": "= 3000108", + "140": "= 3000109", + "141": "= 3000110", + "142": "= 3000111", + "143": "= 3000112", + "144": "= 3000113", + "145": "= 3000114", + "146": "= 3000115", + "147": "= 3000201", + "148": "= 3000202", + "149": "= 3000203", + "150": "= 3000204", + "151": "= 3000205", + "152": "= 3000206", + "153": "= 3000207", + "154": "= 3000208", + "155": "= 3000209", + "156": "= 3000210", + "157": "= 3000211", + "158": "= 3000212", + "159": "= 3000213", + "160": "= 3000214", + "161": "= 3000215", + "162": "= 3000301", + "163": "= 3000302", + "164": "= 3000303", + "165": "= 3000304", + "166": "= 3000305", + "167": "= 3000306", + "168": "= 3000307", + "169": "= 3000308", + "170": "= 3000309", + "171": "= 3000310", + "172": "= 3000311", + "173": "= 3000312", + "174": "= 3000313", + "175": "= 3000314", + "176": "= 3000315", + "177": "= 3000401", + "178": "= 3000402", + "179": "= 3000403", + "180": "= 3000404", + "181": "= 3000405", + "182": "= 3000406", + "183": "= 3000407", + "184": "= 3000408", + "185": "= 3000409", + "186": "= 3000410", + "187": "= 3000411", + "188": "= 3000412", + "189": "= 3000413", + "190": "= 3000414", + "191": "= 3000415", + "192": "= 7000401", + "193": "= 7000412", + "194": "= 7000404", + "195": "= 7000411", + "196": "= 7000403", + "197": "= 7000410", + "198": "= 7000402", + "199": "= 7000414", + "200": "= 7000406", + "201": "= 7000413", + "202": "= 7000405", + "203": "= 7000417", + "204": "= 7000409", + "205": "= 7000415", + "206": "= 7000407", + "207": "= 7000416", + "208": "= 7000408", + "209": "= 7000421", + "210": "= 7000420", + "211": "= 7000423", + "212": "= 7000422", + "213": "= 7000425", + "214": "= 7000424", + "215": "= 7000428", + "216": "= 7000429", + "217": "= 19000101", + "218": "= 19000102" + }, + "3": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 1", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 1", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 1", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 1", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 1", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 1", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 1", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 1", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 1", + "124": "= 1", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 1", + "133": "= 1", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 1", + "163": "= 1", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2" + }, + "4": { + "1": "= \"00 00 01 01 00 00 00 00 \"", + "2": "= \"00 00 01 01 00 00 00 00 \"", + "3": "= \"00 00 01 01 00 00 00 00 \"", + "4": "= \"07 B2 06 16 16 1D 07 00 2D 07 00 \"", + "5": "= \"00 00 01 01 00 00 00 00 \"", + "6": "= \"00 00 01 01 00 00 00 00 \"", + "7": "= \"00 00 01 01 00 00 00 00 \"", + "8": "= \"00 00 01 01 00 00 00 00 \"", + "9": "= \"00 00 01 01 00 00 00 00 \"", + "10": "= \"00 00 01 01 00 00 00 00 \"", + "11": "= \"00 00 01 01 00 00 00 00 \"", + "12": "= \"00 00 01 01 00 00 00 00 \"", + "13": "= \"00 00 01 01 00 00 00 00 \"", + "14": "= \"00 00 01 01 00 00 00 00 \"", + "15": "= \"00 00 01 01 00 00 00 00 \"", + "16": "= \"00 00 01 01 00 00 00 00 \"", + "17": "= \"00 00 01 01 00 00 00 00 \"", + "18": "= \"00 00 01 01 00 00 00 00 \"", + "19": "= \"00 00 01 01 00 00 00 00 \"", + "20": "= \"00 00 01 01 00 00 00 00 \"", + "21": "= \"00 00 01 01 00 00 00 00 \"", + "22": "= \"00 00 01 01 00 00 00 00 \"", + "23": "= \"00 00 01 01 00 00 00 00 \"", + "24": "= \"00 00 01 01 00 00 00 00 \"", + "25": "= \"00 00 01 01 00 00 00 00 \"", + "26": "= \"00 00 01 01 00 00 00 00 \"", + "27": "= \"00 00 01 01 00 00 00 00 \"", + "28": "= \"00 00 01 01 00 00 00 00 \"", + "29": "= \"00 00 01 01 00 00 00 00 \"", + "30": "= \"00 00 01 01 00 00 00 00 \"", + "31": "= \"07 B4 0A 0F 11 35 3A 00 2D 07 00 \"", + "32": "= \"00 00 01 01 00 00 00 00 \"", + "33": "= \"00 00 01 01 00 00 00 00 \"", + "34": "= \"00 00 01 01 00 00 00 00 \"", + "35": "= \"00 00 01 01 00 00 00 00 \"", + "36": "= \"00 00 01 01 00 00 00 00 \"", + "37": "= \"00 00 01 01 00 00 00 00 \"", + "38": "= \"00 00 01 01 00 00 00 00 \"", + "39": "= \"00 00 01 01 00 00 00 00 \"", + "40": "= \"00 00 01 01 00 00 00 00 \"", + "41": "= \"00 00 01 01 00 00 00 00 \"", + "42": "= \"00 00 01 01 00 00 00 00 \"", + "43": "= \"00 00 01 01 00 00 00 00 \"", + "44": "= \"00 00 01 01 00 00 00 00 \"", + "45": "= \"00 00 01 01 00 00 00 00 \"", + "46": "= \"00 00 01 01 00 00 00 00 \"", + "47": "= \"00 00 01 01 00 00 00 00 \"", + "48": "= \"00 00 01 01 00 00 00 00 \"", + "49": "= \"00 00 01 01 00 00 00 00 \"", + "50": "= \"00 00 01 01 00 00 00 00 \"", + "51": "= \"00 00 01 01 00 00 00 00 \"", + "52": "= \"07 B4 0A 0F 13 03 07 00 2D 07 00 \"", + "53": "= \"00 00 01 01 00 00 00 00 \"", + "54": "= \"00 00 01 01 00 00 00 00 \"", + "55": "= \"00 00 01 01 00 00 00 00 \"", + "56": "= \"00 00 01 01 00 00 00 00 \"", + "57": "= \"00 00 01 01 00 00 00 00 \"", + "58": "= \"00 00 01 01 00 00 00 00 \"", + "59": "= \"00 00 01 01 00 00 00 00 \"", + "60": "= \"00 00 01 01 00 00 00 00 \"", + "61": "= \"00 00 01 01 00 00 00 00 \"", + "62": "= \"00 00 01 01 00 00 00 00 \"", + "63": "= \"00 00 01 01 00 00 00 00 \"", + "64": "= \"00 00 01 01 00 00 00 00 \"", + "65": "= \"00 00 01 01 00 00 00 00 \"", + "66": "= \"00 00 01 01 00 00 00 00 \"", + "67": "= \"00 00 01 01 00 00 00 00 \"", + "68": "= \"00 00 01 01 00 00 00 00 \"", + "69": "= \"00 00 01 01 00 00 00 00 \"", + "70": "= \"00 00 01 01 00 00 00 00 \"", + "71": "= \"00 00 01 01 00 00 00 00 \"", + "72": "= \"00 00 01 01 00 00 00 00 \"", + "73": "= \"07 B4 0A 0F 13 03 0B 00 2D 07 00 \"", + "74": "= \"00 00 01 01 00 00 00 00 \"", + "75": "= \"00 00 01 01 00 00 00 00 \"", + "76": "= \"00 00 01 01 00 00 00 00 \"", + "77": "= \"00 00 01 01 00 00 00 00 \"", + "78": "= \"00 00 01 01 00 00 00 00 \"", + "79": "= \"00 00 01 01 00 00 00 00 \"", + "80": "= \"00 00 01 01 00 00 00 00 \"", + "81": "= \"00 00 01 01 00 00 00 00 \"", + "82": "= \"00 00 01 01 00 00 00 00 \"", + "83": "= \"00 00 01 01 00 00 00 00 \"", + "84": "= \"00 00 01 01 00 00 00 00 \"", + "85": "= \"00 00 01 01 00 00 00 00 \"", + "86": "= \"00 00 01 01 00 00 00 00 \"", + "87": "= \"00 00 01 01 00 00 00 00 \"", + "88": "= \"00 00 01 01 00 00 00 00 \"", + "89": "= \"00 00 01 01 00 00 00 00 \"", + "90": "= \"00 00 01 01 00 00 00 00 \"", + "91": "= \"00 00 01 01 00 00 00 00 \"", + "92": "= \"00 00 01 01 00 00 00 00 \"", + "93": "= \"00 00 01 01 00 00 00 00 \"", + "94": "= \"07 B4 09 1A 13 0F 06 00 2D 07 00 \"", + "95": "= \"07 B5 01 18 12 07 19 00 2D 07 00 \"", + "96": "= \"00 00 01 01 00 00 00 00 \"", + "97": "= \"00 00 01 01 00 00 00 00 \"", + "98": "= \"00 00 01 01 00 00 00 00 \"", + "99": "= \"07 B3 0C 1D 0D 1C 33 00 2D 07 00 \"", + "100": "= \"00 00 01 01 00 00 00 00 \"", + "101": "= \"00 00 01 01 00 00 00 00 \"", + "102": "= \"00 00 01 01 00 00 00 00 \"", + "103": "= \"07 B4 0B 15 14 0A 2F 00 2D 07 00 \"", + "104": "= \"00 00 01 01 00 00 00 00 \"", + "105": "= \"00 00 01 01 00 00 00 00 \"", + "106": "= \"00 00 01 01 00 00 00 00 \"", + "107": "= \"07 B4 09 1A 13 0E 23 00 2D 07 00 \"", + "108": "= \"00 00 01 01 00 00 00 00 \"", + "109": "= \"00 00 01 01 00 00 00 00 \"", + "110": "= \"00 00 01 01 00 00 00 00 \"", + "111": "= \"07 B5 03 07 14 36 0F 00 2D 07 00 \"", + "112": "= \"07 B2 06 16 16 1D 0F 00 2D 07 00 \"", + "113": "= \"00 00 01 01 00 00 00 00 \"", + "114": "= \"00 00 01 01 00 00 00 00 \"", + "115": "= \"00 00 01 01 00 00 00 00 \"", + "116": "= \"07 B2 06 16 16 1D 0F 00 2D 07 00 \"", + "117": "= \"00 00 01 01 00 00 00 00 \"", + "118": "= \"00 00 01 01 00 00 00 00 \"", + "119": "= \"00 00 01 01 00 00 00 00 \"", + "120": "= \"00 00 01 01 00 00 00 00 \"", + "121": "= \"00 00 01 01 00 00 00 00 \"", + "122": "= \"00 00 01 01 00 00 00 00 \"", + "123": "= \"07 B2 06 16 16 1F 23 00 2D 07 00 \"", + "124": "= \"07 B2 06 16 16 1D 15 00 2D 07 00 \"", + "125": "= \"00 00 01 01 00 00 00 00 \"", + "126": "= \"00 00 01 01 00 00 00 00 \"", + "127": "= \"00 00 01 01 00 00 00 00 \"", + "128": "= \"00 00 01 01 00 00 00 00 \"", + "129": "= \"00 00 01 01 00 00 00 00 \"", + "130": "= \"00 00 01 01 00 00 00 00 \"", + "131": "= \"00 00 01 01 00 00 00 00 \"", + "132": "= \"07 B2 06 16 16 1D 25 00 2D 07 00 \"", + "133": "= \"07 B2 06 16 16 1D 26 00 2D 07 00 \"", + "134": "= \"00 00 01 01 00 00 00 00 \"", + "135": "= \"00 00 01 01 00 00 00 00 \"", + "136": "= \"00 00 01 01 00 00 00 00 \"", + "137": "= \"00 00 01 01 00 00 00 00 \"", + "138": "= \"00 00 01 01 00 00 00 00 \"", + "139": "= \"00 00 01 01 00 00 00 00 \"", + "140": "= \"00 00 01 01 00 00 00 00 \"", + "141": "= \"00 00 01 01 00 00 00 00 \"", + "142": "= \"00 00 01 01 00 00 00 00 \"", + "143": "= \"00 00 01 01 00 00 00 00 \"", + "144": "= \"00 00 01 01 00 00 00 00 \"", + "145": "= \"00 00 01 01 00 00 00 00 \"", + "146": "= \"00 00 01 01 00 00 00 00 \"", + "147": "= \"00 00 01 01 00 00 00 00 \"", + "148": "= \"00 00 01 01 00 00 00 00 \"", + "149": "= \"00 00 01 01 00 00 00 00 \"", + "150": "= \"00 00 01 01 00 00 00 00 \"", + "151": "= \"00 00 01 01 00 00 00 00 \"", + "152": "= \"00 00 01 01 00 00 00 00 \"", + "153": "= \"00 00 01 01 00 00 00 00 \"", + "154": "= \"00 00 01 01 00 00 00 00 \"", + "155": "= \"00 00 01 01 00 00 00 00 \"", + "156": "= \"00 00 01 01 00 00 00 00 \"", + "157": "= \"00 00 01 01 00 00 00 00 \"", + "158": "= \"00 00 01 01 00 00 00 00 \"", + "159": "= \"00 00 01 01 00 00 00 00 \"", + "160": "= \"00 00 01 01 00 00 00 00 \"", + "161": "= \"00 00 01 01 00 00 00 00 \"", + "162": "= \"07 B2 06 16 16 1D 25 00 2D 07 00 \"", + "163": "= \"07 B2 06 16 16 1D 26 00 2D 07 00 \"", + "164": "= \"00 00 01 01 00 00 00 00 \"", + "165": "= \"00 00 01 01 00 00 00 00 \"", + "166": "= \"00 00 01 01 00 00 00 00 \"", + "167": "= \"00 00 01 01 00 00 00 00 \"", + "168": "= \"00 00 01 01 00 00 00 00 \"", + "169": "= \"00 00 01 01 00 00 00 00 \"", + "170": "= \"00 00 01 01 00 00 00 00 \"", + "171": "= \"00 00 01 01 00 00 00 00 \"", + "172": "= \"00 00 01 01 00 00 00 00 \"", + "173": "= \"00 00 01 01 00 00 00 00 \"", + "174": "= \"00 00 01 01 00 00 00 00 \"", + "175": "= \"00 00 01 01 00 00 00 00 \"", + "176": "= \"00 00 01 01 00 00 00 00 \"", + "177": "= \"00 00 01 01 00 00 00 00 \"", + "178": "= \"00 00 01 01 00 00 00 00 \"", + "179": "= \"00 00 01 01 00 00 00 00 \"", + "180": "= \"00 00 01 01 00 00 00 00 \"", + "181": "= \"00 00 01 01 00 00 00 00 \"", + "182": "= \"00 00 01 01 00 00 00 00 \"", + "183": "= \"00 00 01 01 00 00 00 00 \"", + "184": "= \"00 00 01 01 00 00 00 00 \"", + "185": "= \"00 00 01 01 00 00 00 00 \"", + "186": "= \"00 00 01 01 00 00 00 00 \"", + "187": "= \"00 00 01 01 00 00 00 00 \"", + "188": "= \"00 00 01 01 00 00 00 00 \"", + "189": "= \"00 00 01 01 00 00 00 00 \"", + "190": "= \"00 00 01 01 00 00 00 00 \"", + "191": "= \"00 00 01 01 00 00 00 00 \"", + "192": "= \"00 00 01 01 00 00 00 00 \"", + "193": "= \"00 00 01 01 00 00 00 00 \"", + "194": "= \"00 00 01 01 00 00 00 00 \"", + "195": "= \"00 00 01 01 00 00 00 00 \"", + "196": "= \"00 00 01 01 00 00 00 00 \"", + "197": "= \"00 00 01 01 00 00 00 00 \"", + "198": "= \"00 00 01 01 00 00 00 00 \"", + "199": "= \"00 00 01 01 00 00 00 00 \"", + "200": "= \"00 00 01 01 00 00 00 00 \"", + "201": "= \"00 00 01 01 00 00 00 00 \"", + "202": "= \"00 00 01 01 00 00 00 00 \"", + "203": "= \"00 00 01 01 00 00 00 00 \"", + "204": "= \"00 00 01 01 00 00 00 00 \"", + "205": "= \"00 00 01 01 00 00 00 00 \"", + "206": "= \"00 00 01 01 00 00 00 00 \"", + "207": "= \"00 00 01 01 00 00 00 00 \"", + "208": "= \"00 00 01 01 00 00 00 00 \"", + "209": "= \"00 00 01 01 00 00 00 00 \"", + "210": "= \"00 00 01 01 00 00 00 00 \"", + "211": "= \"00 00 01 01 00 00 00 00 \"", + "212": "= \"00 00 01 01 00 00 00 00 \"", + "213": "= \"00 00 01 01 00 00 00 00 \"", + "214": "= \"00 00 01 01 00 00 00 00 \"", + "215": "= \"00 00 01 01 00 00 00 00 \"", + "216": "= \"00 00 01 01 00 00 00 00 \"", + "217": "= \"00 00 01 01 00 00 00 00 \"", + "218": "= \"00 00 01 01 00 00 00 00 \"" + }, + "5": { + "1": "= \"\"", + "2": "= \"\"", + "3": "= \"\"", + "4": "= \"\"", + "5": "= \"\"", + "6": "= \"\"", + "7": "= \"\"", + "8": "= \"\"", + "9": "= \"\"", + "10": "= \"\"", + "11": "= \"\"", + "12": "= \"\"", + "13": "= \"\"", + "14": "= \"\"", + "15": "= \"\"", + "16": "= \"\"", + "17": "= \"\"", + "18": "= \"\"", + "19": "= \"\"", + "20": "= \"\"", + "21": "= \"\"", + "22": "= \"\"", + "23": "= \"\"", + "24": "= \"\"", + "25": "= \"\"", + "26": "= \"\"", + "27": "= \"\"", + "28": "= \"\"", + "29": "= \"\"", + "30": "= \"\"", + "31": "= \"was inserted.\"", + "32": "= \"\"", + "33": "= \"\"", + "34": "= \"\"", + "35": "= \"\"", + "36": "= \"\"", + "37": "= \"\"", + "38": "= \"\"", + "39": "= \"\"", + "40": "= \"\"", + "41": "= \"\"", + "42": "= \"\"", + "43": "= \"\"", + "44": "= \"\"", + "45": "= \"\"", + "46": "= \"\"", + "47": "= \"\"", + "48": "= \"\"", + "49": "= \"\"", + "50": "= \"\"", + "51": "= \"\"", + "52": "= \"was removed.\"", + "53": "= \"\"", + "54": "= \"\"", + "55": "= \"\"", + "56": "= \"\"", + "57": "= \"\"", + "58": "= \"\"", + "59": "= \"\"", + "60": "= \"\"", + "61": "= \"\"", + "62": "= \"\"", + "63": "= \"\"", + "64": "= \"\"", + "65": "= \"\"", + "66": "= \"\"", + "67": "= \"\"", + "68": "= \"\"", + "69": "= \"\"", + "70": "= \"\"", + "71": "= \"\"", + "72": "= \"\"", + "73": "= \"was inserted.\"", + "74": "= \"\"", + "75": "= \"\"", + "76": "= \"\"", + "77": "= \"\"", + "78": "= \"\"", + "79": "= \"\"", + "80": "= \"\"", + "81": "= \"\"", + "82": "= \"\"", + "83": "= \"\"", + "84": "= \"\"", + "85": "= \"\"", + "86": "= \"\"", + "87": "= \"\"", + "88": "= \"\"", + "89": "= \"\"", + "90": "= \"\"", + "91": "= \"\"", + "92": "= \"\"", + "93": "= \"\"", + "94": "= \"was removed.\"", + "95": "= \"went up\"", + "96": "= \"\"", + "97": "= \"went up\"", + "98": "= \"\"", + "99": "= \"went down\"", + "100": "= \"\"", + "101": "= \"went up\"", + "102": "= \"\"", + "103": "= \"went down\"", + "104": "= \"\"", + "105": "= \"went up\"", + "106": "= \"\"", + "107": "= \"went down\"", + "108": "= \"\"", + "109": "= \"went up\"", + "110": "= \"\"", + "111": "= \"went up\"", + "112": "= \"went down\"", + "113": "= \"\"", + "114": "= \"went up\"", + "115": "= \"\"", + "116": "= \"went down\"", + "117": "= \"\"", + "118": "= \"went up\"", + "119": "= \"\"", + "120": "= \"\"", + "121": "= \"\"", + "122": "= \"\"", + "123": "= \"Lost contact, server 10.10.20.\"", + "124": "= \"NTP lost time-of-day sync\"", + "125": "= \"Use intf with HW timestamp\"", + "126": "= \"Use intf with HW timestamp\"", + "127": "= \"\"", + "128": "= \"\"", + "129": "= \"\"", + "130": "= \"\"", + "131": "= \"\"", + "132": "= \"\"", + "133": "= \"\"", + "134": "= \"\"", + "135": "= \"\"", + "136": "= \"\"", + "137": "= \"\"", + "138": "= \"\"", + "139": "= \"\"", + "140": "= \"\"", + "141": "= \"\"", + "142": "= \"\"", + "143": "= \"\"", + "144": "= \"\"", + "145": "= \"\"", + "146": "= \"\"", + "147": "= \"\"", + "148": "= \"\"", + "149": "= \"\"", + "150": "= \"\"", + "151": "= \"\"", + "152": "= \"\"", + "153": "= \"\"", + "154": "= \"\"", + "155": "= \"\"", + "156": "= \"\"", + "157": "= \"\"", + "158": "= \"\"", + "159": "= \"\"", + "160": "= \"\"", + "161": "= \"\"", + "162": "= \"\"", + "163": "= \"\"", + "164": "= \"\"", + "165": "= \"\"", + "166": "= \"\"", + "167": "= \"\"", + "168": "= \"\"", + "169": "= \"\"", + "170": "= \"\"", + "171": "= \"\"", + "172": "= \"\"", + "173": "= \"\"", + "174": "= \"\"", + "175": "= \"\"", + "176": "= \"\"", + "177": "= \"\"", + "178": "= \"\"", + "179": "= \"\"", + "180": "= \"\"", + "181": "= \"\"", + "182": "= \"\"", + "183": "= \"\"", + "184": "= \"\"", + "185": "= \"\"", + "186": "= \"\"", + "187": "= \"\"", + "188": "= \"\"", + "189": "= \"\"", + "190": "= \"\"", + "191": "= \"\"", + "192": "= \"\"", + "193": "= \"Buffer not full for PAA\"", + "194": "= \"All instances are collected\"", + "195": "= \"\"", + "196": "= \"All instances are collected\"", + "197": "= \"\"", + "198": "= \"All instances are collected\"", + "199": "= \"\"", + "200": "= \"All instances are collected\"", + "201": "= \"\"", + "202": "= \"All instances are collected\"", + "203": "= \"\"", + "204": "= \"All instances are collected\"", + "205": "= \"\"", + "206": "= \"All instances are collected\"", + "207": "= \"\"", + "208": "= \"All instances are collected\"", + "209": "= \"\"", + "210": "= \"All instances are collected\"", + "211": "= \"\"", + "212": "= \"All instances are collected\"", + "213": "= \"\"", + "214": "= \"All instances are collected\"", + "215": "= \"\"", + "216": "= \"\"", + "217": "= \"\"", + "218": "= \"\"" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0" + } + } + }, + "15": { + "4": { + "1": { + "0": "= 247" + }, + "2": { + "0": "= 101" + } + } + } + }, + "2": { + "1": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "8": "= 8", + "9": "= 9", + "10": "= 10", + "11": "= 11", + "12": "= 12", + "13": "= 13", + "14": "= 14", + "15": "= 15", + "16": "= 16", + "17": "= 17", + "18": "= 18", + "19": "= 19", + "20": "= 20", + "21": "= 21", + "22": "= 22", + "23": "= 23", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27" + }, + "2": { + "1": "= \"*default\"", + "2": "= \"PAA-Discovery\"", + "3": "= \"MTSOMAC_SRC\"", + "4": "= \"MTSOMAC_DST\"", + "5": "= \"SVLAN_2216\"", + "6": "= \"catchAll\"", + "7": "= \"ieeeBPDU\"", + "8": "= \"ciscoBPDU\"", + "9": "= \"macDst\"", + "10": "= \"macSrc\"", + "11": "= \"frameType\"", + "12": "= \"firstVlanId\"", + "13": "= \"firstVlanPrior\"", + "14": "= \"firstVlanCfi\"", + "15": "= \"secondVlanId\"", + "16": "= \"secondVlanPrior\"", + "17": "= \"secondVlanCfi\"", + "18": "= \"SVLAN_2217\"", + "19": "= \"VLAN_2573\"", + "20": "= \"VLAN_3573\"", + "21": "= \"rvResortMAC_DST\"", + "22": "= \"rvResortMAC_SRC\"", + "23": "= \"SVLAN_2218\"", + "24": "= \"SVLAN_2219\"", + "25": "= \"SVLAN_2220\"", + "26": "= \"SVLAN_2221\"", + "27": "= \"CVLAN_3999\"" + }, + "3": { + "1": "= 2", + "2": "= 1", + "3": "= 2", + "4": "= 1", + "5": "= 2", + "6": "= 2", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 1", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "4": { + "1": "= \"00 00 00 00 00 00 \"", + "2": "= \"FF FF FF FF FF FF \"", + "3": "= \"00 00 00 00 00 00 \"", + "4": "= \"00 23 3E 82 15 73 \"", + "5": "= \"00 00 00 00 00 00 \"", + "6": "= \"00 00 00 00 00 00 \"", + "7": "= \"01 80 C2 00 00 00 \"", + "8": "= \"01 00 0C CC CC CD \"", + "9": "= \"00 15 AD 01 01 01 \"", + "10": "= \"00 00 00 00 00 00 \"", + "11": "= \"00 00 00 00 00 00 \"", + "12": "= \"00 00 00 00 00 00 \"", + "13": "= \"00 00 00 00 00 00 \"", + "14": "= \"00 00 00 00 00 00 \"", + "15": "= \"00 00 00 00 00 00 \"", + "16": "= \"00 00 00 00 00 00 \"", + "17": "= \"00 00 00 00 00 00 \"", + "18": "= \"00 00 00 00 00 00 \"", + "19": "= \"00 00 00 00 00 00 \"", + "20": "= \"00 00 00 00 00 00 \"", + "21": "= \"50 40 61 85 DE 68 \"", + "22": "= \"00 00 00 00 00 00 \"", + "23": "= \"00 00 00 00 00 00 \"", + "24": "= \"00 00 00 00 00 00 \"", + "25": "= \"00 00 00 00 00 00 \"", + "26": "= \"00 00 00 00 00 00 \"", + "27": "= \"00 00 00 00 00 00 \"" + }, + "5": { + "1": "= 48", + "2": "= 48", + "3": "= 48", + "4": "= 48", + "5": "= 48", + "6": "= 48", + "7": "= 48", + "8": "= 48", + "9": "= 48", + "10": "= 48", + "11": "= 48", + "12": "= 48", + "13": "= 48", + "14": "= 48", + "15": "= 48", + "16": "= 48", + "17": "= 48", + "18": "= 48", + "19": "= 48", + "20": "= 48", + "21": "= 48", + "22": "= 48", + "23": "= 48", + "24": "= 48", + "25": "= 48", + "26": "= 48", + "27": "= 48" + }, + "6": { + "1": "= 2", + "2": "= 2", + "3": "= 1", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 1", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 1", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "7": { + "1": "= \"00 00 00 00 00 00 \"", + "2": "= \"00 00 00 00 00 00 \"", + "3": "= \"00 23 3E 82 15 73 \"", + "4": "= \"00 00 00 00 00 00 \"", + "5": "= \"00 00 00 00 00 00 \"", + "6": "= \"00 00 00 00 00 00 \"", + "7": "= \"00 00 00 00 00 00 \"", + "8": "= \"00 00 00 00 00 00 \"", + "9": "= \"00 00 00 00 00 00 \"", + "10": "= \"00 15 AD 01 01 01 \"", + "11": "= \"00 00 00 00 00 00 \"", + "12": "= \"00 00 00 00 00 00 \"", + "13": "= \"00 00 00 00 00 00 \"", + "14": "= \"00 00 00 00 00 00 \"", + "15": "= \"00 00 00 00 00 00 \"", + "16": "= \"00 00 00 00 00 00 \"", + "17": "= \"00 00 00 00 00 00 \"", + "18": "= \"00 00 00 00 00 00 \"", + "19": "= \"00 00 00 00 00 00 \"", + "20": "= \"00 00 00 00 00 00 \"", + "21": "= \"00 00 00 00 00 00 \"", + "22": "= \"50 40 61 85 DE 68 \"", + "23": "= \"00 00 00 00 00 00 \"", + "24": "= \"00 00 00 00 00 00 \"", + "25": "= \"00 00 00 00 00 00 \"", + "26": "= \"00 00 00 00 00 00 \"", + "27": "= \"00 00 00 00 00 00 \"" + }, + "8": { + "1": "= 48", + "2": "= 48", + "3": "= 48", + "4": "= 48", + "5": "= 48", + "6": "= 48", + "7": "= 48", + "8": "= 48", + "9": "= 48", + "10": "= 48", + "11": "= 48", + "12": "= 48", + "13": "= 48", + "14": "= 48", + "15": "= 48", + "16": "= 48", + "17": "= 48", + "18": "= 48", + "19": "= 48", + "20": "= 48", + "21": "= 48", + "22": "= 48", + "23": "= 48", + "24": "= 48", + "25": "= 48", + "26": "= 48", + "27": "= 48" + }, + "9": { + "1": "= 2", + "2": "= 1", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 1", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "10": { + "1": "= 0", + "2": "= 35068", + "3": "= 2048", + "4": "= 2048", + "5": "= 2048", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 36864", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 2048", + "19": "= 2048", + "20": "= 2048", + "21": "= 2048", + "22": "= 2048", + "23": "= 2048", + "24": "= 2048", + "25": "= 2048", + "26": "= 2048", + "27": "= 2048" + }, + "11": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 1", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "12": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 5", + "14": "= 1", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "13": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 1", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "14": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 1", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "15": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 1", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 1", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 2", + "22": "= 2", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2216", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 100", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 1", + "17": "= 0", + "18": "= 2217", + "19": "= 2573", + "20": "= 3573", + "21": "= 0", + "22": "= 0", + "23": "= 2218", + "24": "= 2219", + "25": "= 2220", + "26": "= 2221", + "27": "= 3999" + }, + "17": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 1", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 5", + "17": "= 1", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "19": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 1", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "20": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 1", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "21": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 1", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "22": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2573", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 200", + "16": "= 0", + "17": "= 0", + "18": "= 3573", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 2166", + "24": "= 3166", + "25": "= 2347", + "26": "= 3347", + "27": "= 0" + }, + "23": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1" + } + } + }, + "2": { + "1": { + "2": { + "6": "= \"ipSrc\"", + "7": "= \"ipDst\"", + "8": "= \"ipTTL\"", + "9": "= \"ipProto\"", + "10": "= \"ipHL\"", + "11": "= \"ipDscp\"", + "12": "= \"ipECN\"", + "13": "= \"udpSrcPort\"", + "14": "= \"udpDstPort\"", + "15": "= \"icmpType\"", + "16": "= \"icmpCode\"" + }, + "3": { + "6": "= 1", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "4": { + "6": "= 192.168.1.1", + "7": "= 0.0.0.0", + "8": "= 0.0.0.0", + "9": "= 0.0.0.0", + "10": "= 0.0.0.0", + "11": "= 0.0.0.0", + "12": "= 0.0.0.0", + "13": "= 0.0.0.0", + "14": "= 0.0.0.0", + "15": "= 0.0.0.0", + "16": "= 0.0.0.0" + }, + "5": { + "6": "= 255.255.255.255", + "7": "= 255.255.255.255", + "8": "= 255.255.255.255", + "9": "= 255.255.255.255", + "10": "= 255.255.255.255", + "11": "= 255.255.255.255", + "12": "= 255.255.255.255", + "13": "= 255.255.255.255", + "14": "= 255.255.255.255", + "15": "= 255.255.255.255", + "16": "= 255.255.255.255" + }, + "6": { + "6": "= 2", + "7": "= 1", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "7": { + "6": "= 0.0.0.0", + "7": "= 192.168.1.1", + "8": "= 0.0.0.0", + "9": "= 0.0.0.0", + "10": "= 0.0.0.0", + "11": "= 0.0.0.0", + "12": "= 0.0.0.0", + "13": "= 0.0.0.0", + "14": "= 0.0.0.0", + "15": "= 0.0.0.0", + "16": "= 0.0.0.0" + }, + "8": { + "6": "= 255.255.255.255", + "7": "= 255.255.255.255", + "8": "= 255.255.255.255", + "9": "= 255.255.255.255", + "10": "= 255.255.255.255", + "11": "= 255.255.255.255", + "12": "= 255.255.255.255", + "13": "= 255.255.255.255", + "14": "= 255.255.255.255", + "15": "= 255.255.255.255", + "16": "= 255.255.255.255" + }, + "9": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 1", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1" + }, + "10": { + "6": "= 0", + "7": "= 17", + "8": "= 17", + "9": "= 89", + "10": "= 17", + "11": "= 17", + "12": "= 17", + "13": "= 17", + "14": "= 17", + "15": "= 1", + "16": "= 1" + }, + "11": { + "6": "= 2", + "7": "= 2", + "8": "= 1", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "12": { + "6": "= 0", + "7": "= 0", + "8": "= 255", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "13": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 1", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "14": { + "6": "= 5", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 6", + "11": "= 5", + "12": "= 5", + "13": "= 5", + "14": "= 5", + "15": "= 5", + "16": "= 5" + }, + "15": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 1", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "16": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 32", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "17": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 1", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "18": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 2", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "19": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 1", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "20": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 69", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "21": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 1", + "15": "= 2", + "16": "= 2" + }, + "22": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 68", + "15": "= 0", + "16": "= 0" + }, + "23": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 1", + "16": "= 2" + }, + "24": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 5", + "16": "= 0" + }, + "25": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 1" + }, + "26": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 3" + }, + "27": { + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1" + } + } + }, + "3": { + "1": { + "2": { + "1": "= \"*default\"", + "2": "= \"PAA-Discovery\"", + "3": "= \"MTSOMAC_SRC\"", + "4": "= \"MTSOMAC_DST\"", + "5": "= \"SVLAN_2216\"", + "6": "= \"catchAll\"", + "7": "= \"ieeeBPDU\"", + "8": "= \"ciscoBPDU\"", + "9": "= \"macDst\"", + "10": "= \"macSrc\"", + "11": "= \"frameType\"", + "12": "= \"firstVlanId\"", + "13": "= \"firstVlanPrior\"", + "14": "= \"firstVlanCfi\"", + "15": "= \"secondVlanId\"", + "16": "= \"secondVlanPrior\"", + "17": "= \"secondVlanCfi\"", + "18": "= \"SVLAN_2217\"", + "19": "= \"VLAN_2573\"", + "20": "= \"VLAN_3573\"", + "21": "= \"rvResortMAC_DST\"", + "22": "= \"rvResortMAC_SRC\"", + "23": "= \"SVLAN_2218\"", + "24": "= \"SVLAN_2219\"", + "25": "= \"SVLAN_2220\"", + "26": "= \"SVLAN_2221\"", + "27": "= \"CVLAN_3999\"" + }, + "3": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1" + }, + "4": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 1", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 5", + "14": "= 1", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "7": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3", + "17": "= 3", + "18": "= 3", + "19": "= 3", + "20": "= 3", + "21": "= 3", + "22": "= 3", + "23": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3" + }, + "8": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 1", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 1", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 2", + "22": "= 2", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1" + }, + "9": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2216", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 100", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 1", + "17": "= 0", + "18": "= 2217", + "19": "= 2573", + "20": "= 3573", + "21": "= 0", + "22": "= 0", + "23": "= 2218", + "24": "= 2219", + "25": "= 2220", + "26": "= 2221", + "27": "= 3999" + }, + "10": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "11": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3", + "17": "= 3", + "18": "= 3", + "19": "= 3", + "20": "= 3", + "21": "= 3", + "22": "= 3", + "23": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3" + }, + "12": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 1", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 1", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "14": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 1", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 2", + "22": "= 2", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1" + }, + "15": { + "1": "= 5", + "2": "= 5", + "3": "= 5", + "4": "= 5", + "5": "= 2", + "6": "= 5", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 5", + "11": "= 5", + "12": "= 5", + "13": "= 5", + "14": "= 5", + "15": "= 5", + "16": "= 5", + "17": "= 5", + "18": "= 2", + "19": "= 1", + "20": "= 1", + "21": "= 5", + "22": "= 5", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 1" + }, + "16": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 1", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "17": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 5", + "17": "= 1", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "19": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3", + "17": "= 3", + "18": "= 3", + "19": "= 3", + "20": "= 3", + "21": "= 3", + "22": "= 3", + "23": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3" + }, + "20": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 1", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "21": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2573", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 200", + "16": "= 0", + "17": "= 0", + "18": "= 3573", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 2166", + "24": "= 3166", + "25": "= 2347", + "26": "= 3347", + "27": "= 0" + }, + "22": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "23": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3", + "17": "= 3", + "18": "= 3", + "19": "= 3", + "20": "= 3", + "21": "= 3", + "22": "= 3", + "23": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3" + }, + "24": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 1", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "25": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 1", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "26": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "27": { + "1": "= 5", + "2": "= 5", + "3": "= 5", + "4": "= 5", + "5": "= 1", + "6": "= 5", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 5", + "11": "= 5", + "12": "= 5", + "13": "= 5", + "14": "= 5", + "15": "= 5", + "16": "= 5", + "17": "= 5", + "18": "= 1", + "19": "= 5", + "20": "= 5", + "21": "= 5", + "22": "= 5", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 5" + }, + "28": { + "1": "= 2", + "2": "= 1", + "3": "= 2", + "4": "= 1", + "5": "= 2", + "6": "= 2", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 1", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "29": { + "1": "= \"00 00 00 00 00 00 \"", + "2": "= \"FF FF FF FF FF FF \"", + "3": "= \"00 00 00 00 00 00 \"", + "4": "= \"00 23 3E 82 15 73 \"", + "5": "= \"00 00 00 00 00 00 \"", + "6": "= \"00 00 00 00 00 00 \"", + "7": "= \"01 80 C2 00 00 00 \"", + "8": "= \"01 00 0C CC CC CD \"", + "9": "= \"00 15 AD 01 01 01 \"", + "10": "= \"00 00 00 00 00 00 \"", + "11": "= \"00 00 00 00 00 00 \"", + "12": "= \"00 00 00 00 00 00 \"", + "13": "= \"00 00 00 00 00 00 \"", + "14": "= \"00 00 00 00 00 00 \"", + "15": "= \"00 00 00 00 00 00 \"", + "16": "= \"00 00 00 00 00 00 \"", + "17": "= \"00 00 00 00 00 00 \"", + "18": "= \"00 00 00 00 00 00 \"", + "19": "= \"00 00 00 00 00 00 \"", + "20": "= \"00 00 00 00 00 00 \"", + "21": "= \"50 40 61 85 DE 68 \"", + "22": "= \"00 00 00 00 00 00 \"", + "23": "= \"00 00 00 00 00 00 \"", + "24": "= \"00 00 00 00 00 00 \"", + "25": "= \"00 00 00 00 00 00 \"", + "26": "= \"00 00 00 00 00 00 \"", + "27": "= \"00 00 00 00 00 00 \"" + }, + "30": { + "1": "= 48", + "2": "= 48", + "3": "= 48", + "4": "= 48", + "5": "= 48", + "6": "= 48", + "7": "= 48", + "8": "= 48", + "9": "= 48", + "10": "= 48", + "11": "= 48", + "12": "= 48", + "13": "= 48", + "14": "= 48", + "15": "= 48", + "16": "= 48", + "17": "= 48", + "18": "= 48", + "19": "= 48", + "20": "= 48", + "21": "= 48", + "22": "= 48", + "23": "= 48", + "24": "= 48", + "25": "= 48", + "26": "= 48", + "27": "= 48" + }, + "31": { + "1": "= 2", + "2": "= 2", + "3": "= 1", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 1", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 1", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "32": { + "1": "= \"00 00 00 00 00 00 \"", + "2": "= \"00 00 00 00 00 00 \"", + "3": "= \"00 23 3E 82 15 73 \"", + "4": "= \"00 00 00 00 00 00 \"", + "5": "= \"00 00 00 00 00 00 \"", + "6": "= \"00 00 00 00 00 00 \"", + "7": "= \"00 00 00 00 00 00 \"", + "8": "= \"00 00 00 00 00 00 \"", + "9": "= \"00 00 00 00 00 00 \"", + "10": "= \"00 15 AD 01 01 01 \"", + "11": "= \"00 00 00 00 00 00 \"", + "12": "= \"00 00 00 00 00 00 \"", + "13": "= \"00 00 00 00 00 00 \"", + "14": "= \"00 00 00 00 00 00 \"", + "15": "= \"00 00 00 00 00 00 \"", + "16": "= \"00 00 00 00 00 00 \"", + "17": "= \"00 00 00 00 00 00 \"", + "18": "= \"00 00 00 00 00 00 \"", + "19": "= \"00 00 00 00 00 00 \"", + "20": "= \"00 00 00 00 00 00 \"", + "21": "= \"00 00 00 00 00 00 \"", + "22": "= \"50 40 61 85 DE 68 \"", + "23": "= \"00 00 00 00 00 00 \"", + "24": "= \"00 00 00 00 00 00 \"", + "25": "= \"00 00 00 00 00 00 \"", + "26": "= \"00 00 00 00 00 00 \"", + "27": "= \"00 00 00 00 00 00 \"" + }, + "33": { + "1": "= 48", + "2": "= 48", + "3": "= 48", + "4": "= 48", + "5": "= 48", + "6": "= 48", + "7": "= 48", + "8": "= 48", + "9": "= 48", + "10": "= 48", + "11": "= 48", + "12": "= 48", + "13": "= 48", + "14": "= 48", + "15": "= 48", + "16": "= 48", + "17": "= 48", + "18": "= 48", + "19": "= 48", + "20": "= 48", + "21": "= 48", + "22": "= 48", + "23": "= 48", + "24": "= 48", + "25": "= 48", + "26": "= 48", + "27": "= 48" + }, + "34": { + "1": "= 2", + "2": "= 1", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 1", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "35": { + "1": "= 0", + "2": "= 35068", + "3": "= 2048", + "4": "= 2048", + "5": "= 2048", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 36864", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 2048", + "19": "= 2048", + "20": "= 2048", + "21": "= 2048", + "22": "= 2048", + "23": "= 2048", + "24": "= 2048", + "25": "= 2048", + "26": "= 2048", + "27": "= 2048" + }, + "36": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2" + }, + "37": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1" + }, + "38": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "39": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "40": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3", + "17": "= 3", + "18": "= 3", + "19": "= 3", + "20": "= 3", + "21": "= 3", + "22": "= 3", + "23": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3" + }, + "41": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "42": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0" + }, + "43": { + "1": "= 3", + "2": "= 3", + "3": "= 3", + "4": "= 3", + "5": "= 3", + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3", + "17": "= 3", + "18": "= 3", + "19": "= 3", + "20": "= 3", + "21": "= 3", + "22": "= 3", + "23": "= 3", + "24": "= 3", + "25": "= 3", + "26": "= 3", + "27": "= 3" + } + } + }, + "4": { + "1": { + "2": { + "6": "= \"ipSrc\"", + "7": "= \"ipDst\"", + "8": "= \"ipTTL\"", + "9": "= \"ipProto\"", + "10": "= \"ipHL\"", + "11": "= \"ipDscp\"", + "12": "= \"ipECN\"", + "13": "= \"udpSrcPort\"", + "14": "= \"udpDstPort\"", + "15": "= \"icmpType\"", + "16": "= \"icmpCode\"" + }, + "3": { + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1" + }, + "4": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "5": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "6": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "7": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "8": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "9": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "10": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "11": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "12": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "13": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "14": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "15": { + "6": "= 5", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 5", + "11": "= 5", + "12": "= 5", + "13": "= 5", + "14": "= 5", + "15": "= 5", + "16": "= 5" + }, + "16": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "17": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "18": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "19": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "20": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "21": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "22": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "23": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "24": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "25": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "26": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "27": { + "6": "= 5", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 5", + "11": "= 5", + "12": "= 5", + "13": "= 5", + "14": "= 5", + "15": "= 5", + "16": "= 5" + }, + "28": { + "6": "= 1", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "29": { + "6": "= 192.168.1.1", + "7": "= 0.0.0.0", + "8": "= 0.0.0.0", + "9": "= 0.0.0.0", + "10": "= 0.0.0.0", + "11": "= 0.0.0.0", + "12": "= 0.0.0.0", + "13": "= 0.0.0.0", + "14": "= 0.0.0.0", + "15": "= 0.0.0.0", + "16": "= 0.0.0.0" + }, + "30": { + "6": "= 255.255.255.255", + "7": "= 255.255.255.255", + "8": "= 255.255.255.255", + "9": "= 255.255.255.255", + "10": "= 255.255.255.255", + "11": "= 255.255.255.255", + "12": "= 255.255.255.255", + "13": "= 255.255.255.255", + "14": "= 255.255.255.255", + "15": "= 255.255.255.255", + "16": "= 255.255.255.255" + }, + "31": { + "6": "= 2", + "7": "= 1", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "32": { + "6": "= 0.0.0.0", + "7": "= 192.168.1.1", + "8": "= 0.0.0.0", + "9": "= 0.0.0.0", + "10": "= 0.0.0.0", + "11": "= 0.0.0.0", + "12": "= 0.0.0.0", + "13": "= 0.0.0.0", + "14": "= 0.0.0.0", + "15": "= 0.0.0.0", + "16": "= 0.0.0.0" + }, + "33": { + "6": "= 255.255.255.255", + "7": "= 255.255.255.255", + "8": "= 255.255.255.255", + "9": "= 255.255.255.255", + "10": "= 255.255.255.255", + "11": "= 255.255.255.255", + "12": "= 255.255.255.255", + "13": "= 255.255.255.255", + "14": "= 255.255.255.255", + "15": "= 255.255.255.255", + "16": "= 255.255.255.255" + }, + "34": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 1", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1" + }, + "35": { + "6": "= 0", + "7": "= 17", + "8": "= 17", + "9": "= 89", + "10": "= 17", + "11": "= 17", + "12": "= 17", + "13": "= 17", + "14": "= 17", + "15": "= 1", + "16": "= 1" + }, + "36": { + "6": "= 2", + "7": "= 2", + "8": "= 1", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "37": { + "6": "= 0", + "7": "= 0", + "8": "= 255", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "38": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 1", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "39": { + "6": "= 5", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 6", + "11": "= 5", + "12": "= 5", + "13": "= 5", + "14": "= 5", + "15": "= 5", + "16": "= 5" + }, + "40": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 1", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "41": { + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1" + }, + "42": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 32", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "43": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "44": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "45": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "46": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "47": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "48": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 1", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "49": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 2", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "50": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 1", + "14": "= 2", + "15": "= 2", + "16": "= 2" + }, + "51": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 69", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "52": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 1", + "15": "= 2", + "16": "= 2" + }, + "53": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 68", + "15": "= 0", + "16": "= 0" + }, + "54": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 1", + "16": "= 2" + }, + "55": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 5", + "16": "= 0" + }, + "56": { + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 1" + }, + "57": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 3" + }, + "58": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 69", + "14": "= 0", + "15": "= 0", + "16": "= 0" + }, + "59": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + }, + "60": { + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 68", + "15": "= 0", + "16": "= 0" + }, + "61": { + "6": "= 3", + "7": "= 3", + "8": "= 3", + "9": "= 3", + "10": "= 3", + "11": "= 3", + "12": "= 3", + "13": "= 3", + "14": "= 3", + "15": "= 3", + "16": "= 3" + } + } + }, + "6": { + "1": { + "1": { + "0": "= 2" + }, + "2": { + "0": "= 1" + } + } + } + }, + "3": { + "1": { + "1": { + "2": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 3", + "202": "= 3", + "203": "= 3", + "204": "= 3", + "205": "= 3", + "206": "= 3", + "207": "= 3", + "208": "= 3", + "209": "= 3", + "210": "= 3", + "211": "= 3", + "212": "= 3", + "213": "= 3", + "214": "= 3", + "215": "= 3", + "216": "= 3", + "217": "= 3", + "218": "= 3", + "219": "= 3", + "220": "= 3", + "221": "= 3", + "222": "= 3", + "223": "= 3", + "224": "= 3", + "225": "= 3", + "226": "= 3", + "227": "= 3", + "228": "= 3", + "229": "= 3", + "230": "= 3", + "231": "= 3", + "232": "= 3", + "233": "= 3", + "234": "= 3", + "235": "= 3", + "236": "= 3", + "237": "= 3", + "238": "= 3", + "239": "= 3", + "240": "= 3", + "241": "= 3", + "242": "= 3", + "243": "= 3", + "244": "= 3", + "245": "= 3", + "246": "= 3", + "247": "= 3", + "248": "= 3", + "249": "= 3", + "250": "= 3", + "251": "= 3", + "252": "= 3", + "253": "= 3", + "254": "= 3", + "255": "= 3", + "256": "= 3", + "257": "= 3", + "258": "= 3", + "259": "= 3", + "260": "= 3", + "261": "= 3", + "262": "= 3", + "263": "= 3", + "264": "= 3", + "265": "= 3", + "266": "= 3", + "267": "= 3", + "268": "= 3", + "269": "= 3", + "270": "= 3", + "271": "= 3", + "272": "= 3", + "273": "= 3", + "274": "= 3", + "275": "= 3", + "276": "= 3", + "277": "= 3", + "278": "= 3", + "279": "= 3", + "280": "= 3", + "281": "= 3", + "282": "= 3", + "283": "= 3", + "284": "= 3", + "285": "= 3", + "286": "= 3", + "287": "= 3", + "288": "= 3", + "289": "= 3", + "290": "= 3", + "291": "= 3", + "292": "= 3", + "293": "= 3", + "294": "= 3", + "295": "= 3", + "296": "= 3", + "297": "= 3", + "298": "= 3", + "299": "= 3", + "300": "= 3", + "301": "= 4", + "302": "= 4", + "303": "= 4", + "304": "= 4", + "305": "= 4", + "306": "= 4", + "307": "= 4", + "308": "= 4", + "309": "= 4", + "310": "= 4", + "311": "= 4", + "312": "= 4", + "313": "= 4", + "314": "= 4", + "315": "= 4", + "316": "= 4", + "317": "= 4", + "318": "= 4", + "319": "= 4", + "320": "= 4", + "321": "= 4", + "322": "= 4", + "323": "= 4", + "324": "= 4", + "325": "= 4", + "326": "= 4", + "327": "= 4", + "328": "= 4", + "329": "= 4", + "330": "= 4", + "331": "= 4", + "332": "= 4", + "333": "= 4", + "334": "= 4", + "335": "= 4", + "336": "= 4", + "337": "= 4", + "338": "= 4", + "339": "= 4", + "340": "= 4", + "341": "= 4", + "342": "= 4", + "343": "= 4", + "344": "= 4", + "345": "= 4", + "346": "= 4", + "347": "= 4", + "348": "= 4", + "349": "= 4", + "350": "= 4", + "351": "= 4", + "352": "= 4", + "353": "= 4", + "354": "= 4", + "355": "= 4", + "356": "= 4", + "357": "= 4", + "358": "= 4", + "359": "= 4", + "360": "= 4", + "361": "= 4", + "362": "= 4", + "363": "= 4", + "364": "= 4", + "365": "= 4", + "366": "= 4", + "367": "= 4", + "368": "= 4", + "369": "= 4", + "370": "= 4", + "371": "= 4", + "372": "= 4", + "373": "= 4", + "374": "= 4", + "375": "= 4", + "376": "= 4", + "377": "= 4", + "378": "= 4", + "379": "= 4", + "380": "= 4", + "381": "= 4", + "382": "= 4", + "383": "= 4", + "384": "= 4", + "385": "= 4", + "386": "= 4", + "387": "= 4", + "388": "= 4", + "389": "= 4", + "390": "= 4", + "391": "= 4", + "392": "= 4", + "393": "= 4", + "394": "= 4", + "395": "= 4", + "396": "= 4", + "397": "= 4", + "398": "= 4", + "399": "= 4", + "400": "= 4" + }, + "3": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "8": "= 8", + "9": "= 9", + "10": "= 10", + "11": "= 11", + "12": "= 12", + "13": "= 13", + "14": "= 14", + "15": "= 15", + "16": "= 16", + "17": "= 17", + "18": "= 18", + "19": "= 19", + "20": "= 20", + "21": "= 21", + "22": "= 22", + "23": "= 23", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83", + "84": "= 84", + "85": "= 85", + "86": "= 86", + "87": "= 87", + "88": "= 88", + "89": "= 89", + "90": "= 90", + "91": "= 91", + "92": "= 92", + "93": "= 93", + "94": "= 94", + "95": "= 95", + "96": "= 96", + "97": "= 97", + "98": "= 98", + "99": "= 99", + "100": "= 100", + "101": "= 1", + "102": "= 2", + "103": "= 3", + "104": "= 4", + "105": "= 5", + "106": "= 6", + "107": "= 7", + "108": "= 8", + "109": "= 9", + "110": "= 10", + "111": "= 11", + "112": "= 12", + "113": "= 13", + "114": "= 14", + "115": "= 15", + "116": "= 16", + "117": "= 17", + "118": "= 18", + "119": "= 19", + "120": "= 20", + "121": "= 21", + "122": "= 22", + "123": "= 23", + "124": "= 24", + "125": "= 25", + "126": "= 26", + "127": "= 27", + "128": "= 28", + "129": "= 29", + "130": "= 30", + "131": "= 31", + "132": "= 32", + "133": "= 33", + "134": "= 34", + "135": "= 35", + "136": "= 36", + "137": "= 37", + "138": "= 38", + "139": "= 39", + "140": "= 40", + "141": "= 41", + "142": "= 42", + "143": "= 43", + "144": "= 44", + "145": "= 45", + "146": "= 46", + "147": "= 47", + "148": "= 48", + "149": "= 49", + "150": "= 50", + "151": "= 51", + "152": "= 52", + "153": "= 53", + "154": "= 54", + "155": "= 55", + "156": "= 56", + "157": "= 57", + "158": "= 58", + "159": "= 59", + "160": "= 60", + "161": "= 61", + "162": "= 62", + "163": "= 63", + "164": "= 64", + "165": "= 65", + "166": "= 66", + "167": "= 67", + "168": "= 68", + "169": "= 69", + "170": "= 70", + "171": "= 71", + "172": "= 72", + "173": "= 73", + "174": "= 74", + "175": "= 75", + "176": "= 76", + "177": "= 77", + "178": "= 78", + "179": "= 79", + "180": "= 80", + "181": "= 81", + "182": "= 82", + "183": "= 83", + "184": "= 84", + "185": "= 85", + "186": "= 86", + "187": "= 87", + "188": "= 88", + "189": "= 89", + "190": "= 90", + "191": "= 91", + "192": "= 92", + "193": "= 93", + "194": "= 94", + "195": "= 95", + "196": "= 96", + "197": "= 97", + "198": "= 98", + "199": "= 99", + "200": "= 100", + "201": "= 1", + "202": "= 2", + "203": "= 3", + "204": "= 4", + "205": "= 5", + "206": "= 6", + "207": "= 7", + "208": "= 8", + "209": "= 9", + "210": "= 10", + "211": "= 11", + "212": "= 12", + "213": "= 13", + "214": "= 14", + "215": "= 15", + "216": "= 16", + "217": "= 17", + "218": "= 18", + "219": "= 19", + "220": "= 20", + "221": "= 21", + "222": "= 22", + "223": "= 23", + "224": "= 24", + "225": "= 25", + "226": "= 26", + "227": "= 27", + "228": "= 28", + "229": "= 29", + "230": "= 30", + "231": "= 31", + "232": "= 32", + "233": "= 33", + "234": "= 34", + "235": "= 35", + "236": "= 36", + "237": "= 37", + "238": "= 38", + "239": "= 39", + "240": "= 40", + "241": "= 41", + "242": "= 42", + "243": "= 43", + "244": "= 44", + "245": "= 45", + "246": "= 46", + "247": "= 47", + "248": "= 48", + "249": "= 49", + "250": "= 50", + "251": "= 51", + "252": "= 52", + "253": "= 53", + "254": "= 54", + "255": "= 55", + "256": "= 56", + "257": "= 57", + "258": "= 58", + "259": "= 59", + "260": "= 60", + "261": "= 61", + "262": "= 62", + "263": "= 63", + "264": "= 64", + "265": "= 65", + "266": "= 66", + "267": "= 67", + "268": "= 68", + "269": "= 69", + "270": "= 70", + "271": "= 71", + "272": "= 72", + "273": "= 73", + "274": "= 74", + "275": "= 75", + "276": "= 76", + "277": "= 77", + "278": "= 78", + "279": "= 79", + "280": "= 80", + "281": "= 81", + "282": "= 82", + "283": "= 83", + "284": "= 84", + "285": "= 85", + "286": "= 86", + "287": "= 87", + "288": "= 88", + "289": "= 89", + "290": "= 90", + "291": "= 91", + "292": "= 92", + "293": "= 93", + "294": "= 94", + "295": "= 95", + "296": "= 96", + "297": "= 97", + "298": "= 98", + "299": "= 99", + "300": "= 100", + "301": "= 1", + "302": "= 2", + "303": "= 3", + "304": "= 4", + "305": "= 5", + "306": "= 6", + "307": "= 7", + "308": "= 8", + "309": "= 9", + "310": "= 10", + "311": "= 11", + "312": "= 12", + "313": "= 13", + "314": "= 14", + "315": "= 15", + "316": "= 16", + "317": "= 17", + "318": "= 18", + "319": "= 19", + "320": "= 20", + "321": "= 21", + "322": "= 22", + "323": "= 23", + "324": "= 24", + "325": "= 25", + "326": "= 26", + "327": "= 27", + "328": "= 28", + "329": "= 29", + "330": "= 30", + "331": "= 31", + "332": "= 32", + "333": "= 33", + "334": "= 34", + "335": "= 35", + "336": "= 36", + "337": "= 37", + "338": "= 38", + "339": "= 39", + "340": "= 40", + "341": "= 41", + "342": "= 42", + "343": "= 43", + "344": "= 44", + "345": "= 45", + "346": "= 46", + "347": "= 47", + "348": "= 48", + "349": "= 49", + "350": "= 50", + "351": "= 51", + "352": "= 52", + "353": "= 53", + "354": "= 54", + "355": "= 55", + "356": "= 56", + "357": "= 57", + "358": "= 58", + "359": "= 59", + "360": "= 60", + "361": "= 61", + "362": "= 62", + "363": "= 63", + "364": "= 64", + "365": "= 65", + "366": "= 66", + "367": "= 67", + "368": "= 68", + "369": "= 69", + "370": "= 70", + "371": "= 71", + "372": "= 72", + "373": "= 73", + "374": "= 74", + "375": "= 75", + "376": "= 76", + "377": "= 77", + "378": "= 78", + "379": "= 79", + "380": "= 80", + "381": "= 81", + "382": "= 82", + "383": "= 83", + "384": "= 84", + "385": "= 85", + "386": "= 86", + "387": "= 87", + "388": "= 88", + "389": "= 89", + "390": "= 90", + "391": "= 91", + "392": "= 92", + "393": "= 93", + "394": "= 94", + "395": "= 95", + "396": "= 96", + "397": "= 97", + "398": "= 98", + "399": "= 99", + "400": "= 100" + }, + "4": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 27", + "7": "= 5", + "8": "= 23", + "9": "= 25", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 18", + "108": "= 24", + "109": "= 26", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 1", + "207": "= 5", + "208": "= 23", + "209": "= 25", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 18", + "308": "= 24", + "309": "= 26", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "7": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "8": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 2", + "308": "= 2", + "309": "= 2", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "9": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 2", + "308": "= 2", + "309": "= 2", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "10": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 1", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 1", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 2", + "308": "= 2", + "309": "= 2", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 1", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 1", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "12": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "13": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 2", + "308": "= 2", + "309": "= 2", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "14": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 3", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 2", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "15": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 2", + "308": "= 2", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 3999", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 2216", + "308": "= 2217", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "17": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "18": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 2", + "308": "= 2", + "309": "= 2", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "19": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "20": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "21": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "22": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2", + "8": "= 2", + "9": "= 2", + "10": "= 2", + "11": "= 2", + "12": "= 2", + "13": "= 2", + "14": "= 2", + "15": "= 2", + "16": "= 2", + "17": "= 2", + "18": "= 2", + "19": "= 2", + "20": "= 2", + "21": "= 2", + "22": "= 2", + "23": "= 2", + "24": "= 2", + "25": "= 2", + "26": "= 2", + "27": "= 2", + "28": "= 2", + "29": "= 2", + "30": "= 2", + "31": "= 2", + "32": "= 2", + "33": "= 2", + "34": "= 2", + "35": "= 2", + "36": "= 2", + "37": "= 2", + "38": "= 2", + "39": "= 2", + "40": "= 2", + "41": "= 2", + "42": "= 2", + "43": "= 2", + "44": "= 2", + "45": "= 2", + "46": "= 2", + "47": "= 2", + "48": "= 2", + "49": "= 2", + "50": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2", + "57": "= 2", + "58": "= 2", + "59": "= 2", + "60": "= 2", + "61": "= 2", + "62": "= 2", + "63": "= 2", + "64": "= 2", + "65": "= 2", + "66": "= 2", + "67": "= 2", + "68": "= 2", + "69": "= 2", + "70": "= 2", + "71": "= 2", + "72": "= 2", + "73": "= 2", + "74": "= 2", + "75": "= 2", + "76": "= 2", + "77": "= 2", + "78": "= 2", + "79": "= 2", + "80": "= 2", + "81": "= 2", + "82": "= 2", + "83": "= 2", + "84": "= 2", + "85": "= 2", + "86": "= 2", + "87": "= 2", + "88": "= 2", + "89": "= 2", + "90": "= 2", + "91": "= 2", + "92": "= 2", + "93": "= 2", + "94": "= 2", + "95": "= 2", + "96": "= 2", + "97": "= 2", + "98": "= 2", + "99": "= 2", + "100": "= 2", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 2", + "202": "= 2", + "203": "= 2", + "204": "= 2", + "205": "= 2", + "206": "= 2", + "207": "= 2", + "208": "= 2", + "209": "= 2", + "210": "= 2", + "211": "= 2", + "212": "= 2", + "213": "= 2", + "214": "= 2", + "215": "= 2", + "216": "= 2", + "217": "= 2", + "218": "= 2", + "219": "= 2", + "220": "= 2", + "221": "= 2", + "222": "= 2", + "223": "= 2", + "224": "= 2", + "225": "= 2", + "226": "= 2", + "227": "= 2", + "228": "= 2", + "229": "= 2", + "230": "= 2", + "231": "= 2", + "232": "= 2", + "233": "= 2", + "234": "= 2", + "235": "= 2", + "236": "= 2", + "237": "= 2", + "238": "= 2", + "239": "= 2", + "240": "= 2", + "241": "= 2", + "242": "= 2", + "243": "= 2", + "244": "= 2", + "245": "= 2", + "246": "= 2", + "247": "= 2", + "248": "= 2", + "249": "= 2", + "250": "= 2", + "251": "= 2", + "252": "= 2", + "253": "= 2", + "254": "= 2", + "255": "= 2", + "256": "= 2", + "257": "= 2", + "258": "= 2", + "259": "= 2", + "260": "= 2", + "261": "= 2", + "262": "= 2", + "263": "= 2", + "264": "= 2", + "265": "= 2", + "266": "= 2", + "267": "= 2", + "268": "= 2", + "269": "= 2", + "270": "= 2", + "271": "= 2", + "272": "= 2", + "273": "= 2", + "274": "= 2", + "275": "= 2", + "276": "= 2", + "277": "= 2", + "278": "= 2", + "279": "= 2", + "280": "= 2", + "281": "= 2", + "282": "= 2", + "283": "= 2", + "284": "= 2", + "285": "= 2", + "286": "= 2", + "287": "= 2", + "288": "= 2", + "289": "= 2", + "290": "= 2", + "291": "= 2", + "292": "= 2", + "293": "= 2", + "294": "= 2", + "295": "= 2", + "296": "= 2", + "297": "= 2", + "298": "= 2", + "299": "= 2", + "300": "= 2", + "301": "= 2", + "302": "= 2", + "303": "= 2", + "304": "= 2", + "305": "= 2", + "306": "= 2", + "307": "= 2", + "308": "= 2", + "309": "= 2", + "310": "= 2", + "311": "= 2", + "312": "= 2", + "313": "= 2", + "314": "= 2", + "315": "= 2", + "316": "= 2", + "317": "= 2", + "318": "= 2", + "319": "= 2", + "320": "= 2", + "321": "= 2", + "322": "= 2", + "323": "= 2", + "324": "= 2", + "325": "= 2", + "326": "= 2", + "327": "= 2", + "328": "= 2", + "329": "= 2", + "330": "= 2", + "331": "= 2", + "332": "= 2", + "333": "= 2", + "334": "= 2", + "335": "= 2", + "336": "= 2", + "337": "= 2", + "338": "= 2", + "339": "= 2", + "340": "= 2", + "341": "= 2", + "342": "= 2", + "343": "= 2", + "344": "= 2", + "345": "= 2", + "346": "= 2", + "347": "= 2", + "348": "= 2", + "349": "= 2", + "350": "= 2", + "351": "= 2", + "352": "= 2", + "353": "= 2", + "354": "= 2", + "355": "= 2", + "356": "= 2", + "357": "= 2", + "358": "= 2", + "359": "= 2", + "360": "= 2", + "361": "= 2", + "362": "= 2", + "363": "= 2", + "364": "= 2", + "365": "= 2", + "366": "= 2", + "367": "= 2", + "368": "= 2", + "369": "= 2", + "370": "= 2", + "371": "= 2", + "372": "= 2", + "373": "= 2", + "374": "= 2", + "375": "= 2", + "376": "= 2", + "377": "= 2", + "378": "= 2", + "379": "= 2", + "380": "= 2", + "381": "= 2", + "382": "= 2", + "383": "= 2", + "384": "= 2", + "385": "= 2", + "386": "= 2", + "387": "= 2", + "388": "= 2", + "389": "= 2", + "390": "= 2", + "391": "= 2", + "392": "= 2", + "393": "= 2", + "394": "= 2", + "395": "= 2", + "396": "= 2", + "397": "= 2", + "398": "= 2", + "399": "= 2", + "400": "= 2" + }, + "23": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "24": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "25": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "26": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "27": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 5", + "8": "= 5", + "9": "= 5", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 5", + "108": "= 5", + "109": "= 5", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 5", + "208": "= 5", + "209": "= 5", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 5", + "308": "= 5", + "309": "= 5", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "28": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "29": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "30": { + "1": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "2": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "3": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "4": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "5": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "6": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "7": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "8": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "9": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "10": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "11": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "12": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "13": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "14": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "15": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "16": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "17": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "18": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "19": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "20": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "21": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "22": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "23": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "24": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "25": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "26": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "27": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "28": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "29": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "30": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "31": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "32": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "33": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "34": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "35": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "36": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "37": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "38": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "39": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "40": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "41": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "42": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "43": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "44": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "45": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "46": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "47": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "48": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "49": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "50": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "51": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "52": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "53": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "54": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "55": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "56": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "57": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "58": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "59": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "60": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "61": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "62": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "63": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "64": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "65": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "66": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "67": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "68": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "69": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "70": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "71": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "72": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "73": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "74": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "75": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "76": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "77": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "78": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "79": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "80": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "81": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "82": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "83": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "84": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "85": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "86": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "87": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "88": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "89": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "90": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "91": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "92": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "93": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "94": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "95": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "96": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "97": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "98": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "99": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "100": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "101": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "102": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "103": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "104": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "105": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "106": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "107": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "108": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "109": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "110": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "111": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "112": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "113": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "114": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "115": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "116": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "117": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "118": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "119": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "120": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "121": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "122": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "123": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "124": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "125": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "126": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "127": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "128": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "129": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "130": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "131": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "132": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "133": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "134": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "135": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "136": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "137": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "138": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "139": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "140": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "141": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "142": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "143": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "144": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "145": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "146": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "147": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "148": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "149": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "150": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "151": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "152": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "153": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "154": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "155": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "156": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "157": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "158": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "159": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "160": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "161": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "162": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "163": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "164": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "165": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "166": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "167": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "168": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "169": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "170": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "171": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "172": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "173": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "174": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "175": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "176": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "177": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "178": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "179": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "180": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "181": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "182": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "183": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "184": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "185": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "186": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "187": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "188": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "189": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "190": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "191": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "192": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "193": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "194": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "195": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "196": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "197": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "198": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "199": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "200": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "201": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "202": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "203": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "204": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "205": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "206": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "207": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "208": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "209": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "210": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "211": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "212": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "213": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "214": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "215": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "216": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "217": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "218": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "219": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "220": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "221": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "222": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "223": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "224": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "225": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "226": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "227": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "228": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "229": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "230": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "231": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "232": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "233": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "234": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "235": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "236": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "237": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "238": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "239": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "240": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "241": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "242": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "243": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "244": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "245": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "246": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "247": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "248": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "249": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "250": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "251": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "252": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "253": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "254": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "255": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "256": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "257": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "258": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "259": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "260": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "261": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "262": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "263": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "264": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "265": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "266": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "267": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "268": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "269": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "270": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "271": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "272": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "273": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "274": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "275": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "276": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "277": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "278": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "279": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "280": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "281": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "282": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "283": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "284": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "285": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "286": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "287": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "288": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "289": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "290": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "291": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "292": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "293": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "294": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "295": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "296": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "297": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "298": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "299": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "300": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "301": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "302": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "303": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "304": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "305": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "306": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "307": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "308": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "309": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "310": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "311": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "312": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "313": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "314": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "315": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "316": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "317": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "318": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "319": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "320": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "321": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "322": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "323": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "324": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "325": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "326": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "327": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "328": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "329": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "330": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "331": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "332": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "333": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "334": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "335": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "336": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "337": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "338": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "339": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "340": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "341": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "342": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "343": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "344": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "345": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "346": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "347": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "348": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "349": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "350": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "351": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "352": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "353": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "354": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "355": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "356": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "357": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "358": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "359": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "360": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "361": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "362": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "363": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "364": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "365": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "366": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "367": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "368": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "369": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "370": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "371": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "372": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "373": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "374": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "375": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "376": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "377": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "378": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "379": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "380": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "381": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "382": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "383": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "384": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "385": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "386": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "387": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "388": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "389": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "390": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "391": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "392": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "393": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "394": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "395": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "396": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "397": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "398": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "399": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "400": "= .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1" + }, + "31": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 1", + "102": "= 1", + "103": "= 1", + "104": "= 1", + "105": "= 1", + "106": "= 1", + "107": "= 1", + "108": "= 1", + "109": "= 1", + "110": "= 1", + "111": "= 1", + "112": "= 1", + "113": "= 1", + "114": "= 1", + "115": "= 1", + "116": "= 1", + "117": "= 1", + "118": "= 1", + "119": "= 1", + "120": "= 1", + "121": "= 1", + "122": "= 1", + "123": "= 1", + "124": "= 1", + "125": "= 1", + "126": "= 1", + "127": "= 1", + "128": "= 1", + "129": "= 1", + "130": "= 1", + "131": "= 1", + "132": "= 1", + "133": "= 1", + "134": "= 1", + "135": "= 1", + "136": "= 1", + "137": "= 1", + "138": "= 1", + "139": "= 1", + "140": "= 1", + "141": "= 1", + "142": "= 1", + "143": "= 1", + "144": "= 1", + "145": "= 1", + "146": "= 1", + "147": "= 1", + "148": "= 1", + "149": "= 1", + "150": "= 1", + "151": "= 1", + "152": "= 1", + "153": "= 1", + "154": "= 1", + "155": "= 1", + "156": "= 1", + "157": "= 1", + "158": "= 1", + "159": "= 1", + "160": "= 1", + "161": "= 1", + "162": "= 1", + "163": "= 1", + "164": "= 1", + "165": "= 1", + "166": "= 1", + "167": "= 1", + "168": "= 1", + "169": "= 1", + "170": "= 1", + "171": "= 1", + "172": "= 1", + "173": "= 1", + "174": "= 1", + "175": "= 1", + "176": "= 1", + "177": "= 1", + "178": "= 1", + "179": "= 1", + "180": "= 1", + "181": "= 1", + "182": "= 1", + "183": "= 1", + "184": "= 1", + "185": "= 1", + "186": "= 1", + "187": "= 1", + "188": "= 1", + "189": "= 1", + "190": "= 1", + "191": "= 1", + "192": "= 1", + "193": "= 1", + "194": "= 1", + "195": "= 1", + "196": "= 1", + "197": "= 1", + "198": "= 1", + "199": "= 1", + "200": "= 1", + "201": "= 1", + "202": "= 1", + "203": "= 1", + "204": "= 1", + "205": "= 1", + "206": "= 1", + "207": "= 1", + "208": "= 1", + "209": "= 1", + "210": "= 1", + "211": "= 1", + "212": "= 1", + "213": "= 1", + "214": "= 1", + "215": "= 1", + "216": "= 1", + "217": "= 1", + "218": "= 1", + "219": "= 1", + "220": "= 1", + "221": "= 1", + "222": "= 1", + "223": "= 1", + "224": "= 1", + "225": "= 1", + "226": "= 1", + "227": "= 1", + "228": "= 1", + "229": "= 1", + "230": "= 1", + "231": "= 1", + "232": "= 1", + "233": "= 1", + "234": "= 1", + "235": "= 1", + "236": "= 1", + "237": "= 1", + "238": "= 1", + "239": "= 1", + "240": "= 1", + "241": "= 1", + "242": "= 1", + "243": "= 1", + "244": "= 1", + "245": "= 1", + "246": "= 1", + "247": "= 1", + "248": "= 1", + "249": "= 1", + "250": "= 1", + "251": "= 1", + "252": "= 1", + "253": "= 1", + "254": "= 1", + "255": "= 1", + "256": "= 1", + "257": "= 1", + "258": "= 1", + "259": "= 1", + "260": "= 1", + "261": "= 1", + "262": "= 1", + "263": "= 1", + "264": "= 1", + "265": "= 1", + "266": "= 1", + "267": "= 1", + "268": "= 1", + "269": "= 1", + "270": "= 1", + "271": "= 1", + "272": "= 1", + "273": "= 1", + "274": "= 1", + "275": "= 1", + "276": "= 1", + "277": "= 1", + "278": "= 1", + "279": "= 1", + "280": "= 1", + "281": "= 1", + "282": "= 1", + "283": "= 1", + "284": "= 1", + "285": "= 1", + "286": "= 1", + "287": "= 1", + "288": "= 1", + "289": "= 1", + "290": "= 1", + "291": "= 1", + "292": "= 1", + "293": "= 1", + "294": "= 1", + "295": "= 1", + "296": "= 1", + "297": "= 1", + "298": "= 1", + "299": "= 1", + "300": "= 1", + "301": "= 1", + "302": "= 1", + "303": "= 1", + "304": "= 1", + "305": "= 1", + "306": "= 1", + "307": "= 1", + "308": "= 1", + "309": "= 1", + "310": "= 1", + "311": "= 1", + "312": "= 1", + "313": "= 1", + "314": "= 1", + "315": "= 1", + "316": "= 1", + "317": "= 1", + "318": "= 1", + "319": "= 1", + "320": "= 1", + "321": "= 1", + "322": "= 1", + "323": "= 1", + "324": "= 1", + "325": "= 1", + "326": "= 1", + "327": "= 1", + "328": "= 1", + "329": "= 1", + "330": "= 1", + "331": "= 1", + "332": "= 1", + "333": "= 1", + "334": "= 1", + "335": "= 1", + "336": "= 1", + "337": "= 1", + "338": "= 1", + "339": "= 1", + "340": "= 1", + "341": "= 1", + "342": "= 1", + "343": "= 1", + "344": "= 1", + "345": "= 1", + "346": "= 1", + "347": "= 1", + "348": "= 1", + "349": "= 1", + "350": "= 1", + "351": "= 1", + "352": "= 1", + "353": "= 1", + "354": "= 1", + "355": "= 1", + "356": "= 1", + "357": "= 1", + "358": "= 1", + "359": "= 1", + "360": "= 1", + "361": "= 1", + "362": "= 1", + "363": "= 1", + "364": "= 1", + "365": "= 1", + "366": "= 1", + "367": "= 1", + "368": "= 1", + "369": "= 1", + "370": "= 1", + "371": "= 1", + "372": "= 1", + "373": "= 1", + "374": "= 1", + "375": "= 1", + "376": "= 1", + "377": "= 1", + "378": "= 1", + "379": "= 1", + "380": "= 1", + "381": "= 1", + "382": "= 1", + "383": "= 1", + "384": "= 1", + "385": "= 1", + "386": "= 1", + "387": "= 1", + "388": "= 1", + "389": "= 1", + "390": "= 1", + "391": "= 1", + "392": "= 1", + "393": "= 1", + "394": "= 1", + "395": "= 1", + "396": "= 1", + "397": "= 1", + "398": "= 1", + "399": "= 1", + "400": "= 1" + }, + "32": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + } + } + }, + "2": { + "1": { + "2": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1", + "9": "= 1", + "10": "= 1", + "11": "= 1", + "12": "= 1", + "13": "= 1", + "14": "= 1", + "15": "= 1", + "16": "= 1", + "17": "= 1", + "18": "= 1", + "19": "= 1", + "20": "= 1", + "21": "= 1", + "22": "= 1", + "23": "= 1", + "24": "= 1", + "25": "= 1", + "26": "= 1", + "27": "= 1", + "28": "= 1", + "29": "= 1", + "30": "= 1", + "31": "= 1", + "32": "= 1", + "33": "= 1", + "34": "= 1", + "35": "= 1", + "36": "= 1", + "37": "= 1", + "38": "= 1", + "39": "= 1", + "40": "= 1", + "41": "= 1", + "42": "= 1", + "43": "= 1", + "44": "= 1", + "45": "= 1", + "46": "= 1", + "47": "= 1", + "48": "= 1", + "49": "= 1", + "50": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1", + "57": "= 1", + "58": "= 1", + "59": "= 1", + "60": "= 1", + "61": "= 1", + "62": "= 1", + "63": "= 1", + "64": "= 1", + "65": "= 1", + "66": "= 1", + "67": "= 1", + "68": "= 1", + "69": "= 1", + "70": "= 1", + "71": "= 1", + "72": "= 1", + "73": "= 1", + "74": "= 1", + "75": "= 1", + "76": "= 1", + "77": "= 1", + "78": "= 1", + "79": "= 1", + "80": "= 1", + "81": "= 1", + "82": "= 1", + "83": "= 1", + "84": "= 1", + "85": "= 1", + "86": "= 1", + "87": "= 1", + "88": "= 1", + "89": "= 1", + "90": "= 1", + "91": "= 1", + "92": "= 1", + "93": "= 1", + "94": "= 1", + "95": "= 1", + "96": "= 1", + "97": "= 1", + "98": "= 1", + "99": "= 1", + "100": "= 1", + "101": "= 2", + "102": "= 2", + "103": "= 2", + "104": "= 2", + "105": "= 2", + "106": "= 2", + "107": "= 2", + "108": "= 2", + "109": "= 2", + "110": "= 2", + "111": "= 2", + "112": "= 2", + "113": "= 2", + "114": "= 2", + "115": "= 2", + "116": "= 2", + "117": "= 2", + "118": "= 2", + "119": "= 2", + "120": "= 2", + "121": "= 2", + "122": "= 2", + "123": "= 2", + "124": "= 2", + "125": "= 2", + "126": "= 2", + "127": "= 2", + "128": "= 2", + "129": "= 2", + "130": "= 2", + "131": "= 2", + "132": "= 2", + "133": "= 2", + "134": "= 2", + "135": "= 2", + "136": "= 2", + "137": "= 2", + "138": "= 2", + "139": "= 2", + "140": "= 2", + "141": "= 2", + "142": "= 2", + "143": "= 2", + "144": "= 2", + "145": "= 2", + "146": "= 2", + "147": "= 2", + "148": "= 2", + "149": "= 2", + "150": "= 2", + "151": "= 2", + "152": "= 2", + "153": "= 2", + "154": "= 2", + "155": "= 2", + "156": "= 2", + "157": "= 2", + "158": "= 2", + "159": "= 2", + "160": "= 2", + "161": "= 2", + "162": "= 2", + "163": "= 2", + "164": "= 2", + "165": "= 2", + "166": "= 2", + "167": "= 2", + "168": "= 2", + "169": "= 2", + "170": "= 2", + "171": "= 2", + "172": "= 2", + "173": "= 2", + "174": "= 2", + "175": "= 2", + "176": "= 2", + "177": "= 2", + "178": "= 2", + "179": "= 2", + "180": "= 2", + "181": "= 2", + "182": "= 2", + "183": "= 2", + "184": "= 2", + "185": "= 2", + "186": "= 2", + "187": "= 2", + "188": "= 2", + "189": "= 2", + "190": "= 2", + "191": "= 2", + "192": "= 2", + "193": "= 2", + "194": "= 2", + "195": "= 2", + "196": "= 2", + "197": "= 2", + "198": "= 2", + "199": "= 2", + "200": "= 2", + "201": "= 3", + "202": "= 3", + "203": "= 3", + "204": "= 3", + "205": "= 3", + "206": "= 3", + "207": "= 3", + "208": "= 3", + "209": "= 3", + "210": "= 3", + "211": "= 3", + "212": "= 3", + "213": "= 3", + "214": "= 3", + "215": "= 3", + "216": "= 3", + "217": "= 3", + "218": "= 3", + "219": "= 3", + "220": "= 3", + "221": "= 3", + "222": "= 3", + "223": "= 3", + "224": "= 3", + "225": "= 3", + "226": "= 3", + "227": "= 3", + "228": "= 3", + "229": "= 3", + "230": "= 3", + "231": "= 3", + "232": "= 3", + "233": "= 3", + "234": "= 3", + "235": "= 3", + "236": "= 3", + "237": "= 3", + "238": "= 3", + "239": "= 3", + "240": "= 3", + "241": "= 3", + "242": "= 3", + "243": "= 3", + "244": "= 3", + "245": "= 3", + "246": "= 3", + "247": "= 3", + "248": "= 3", + "249": "= 3", + "250": "= 3", + "251": "= 3", + "252": "= 3", + "253": "= 3", + "254": "= 3", + "255": "= 3", + "256": "= 3", + "257": "= 3", + "258": "= 3", + "259": "= 3", + "260": "= 3", + "261": "= 3", + "262": "= 3", + "263": "= 3", + "264": "= 3", + "265": "= 3", + "266": "= 3", + "267": "= 3", + "268": "= 3", + "269": "= 3", + "270": "= 3", + "271": "= 3", + "272": "= 3", + "273": "= 3", + "274": "= 3", + "275": "= 3", + "276": "= 3", + "277": "= 3", + "278": "= 3", + "279": "= 3", + "280": "= 3", + "281": "= 3", + "282": "= 3", + "283": "= 3", + "284": "= 3", + "285": "= 3", + "286": "= 3", + "287": "= 3", + "288": "= 3", + "289": "= 3", + "290": "= 3", + "291": "= 3", + "292": "= 3", + "293": "= 3", + "294": "= 3", + "295": "= 3", + "296": "= 3", + "297": "= 3", + "298": "= 3", + "299": "= 3", + "300": "= 3", + "301": "= 4", + "302": "= 4", + "303": "= 4", + "304": "= 4", + "305": "= 4", + "306": "= 4", + "307": "= 4", + "308": "= 4", + "309": "= 4", + "310": "= 4", + "311": "= 4", + "312": "= 4", + "313": "= 4", + "314": "= 4", + "315": "= 4", + "316": "= 4", + "317": "= 4", + "318": "= 4", + "319": "= 4", + "320": "= 4", + "321": "= 4", + "322": "= 4", + "323": "= 4", + "324": "= 4", + "325": "= 4", + "326": "= 4", + "327": "= 4", + "328": "= 4", + "329": "= 4", + "330": "= 4", + "331": "= 4", + "332": "= 4", + "333": "= 4", + "334": "= 4", + "335": "= 4", + "336": "= 4", + "337": "= 4", + "338": "= 4", + "339": "= 4", + "340": "= 4", + "341": "= 4", + "342": "= 4", + "343": "= 4", + "344": "= 4", + "345": "= 4", + "346": "= 4", + "347": "= 4", + "348": "= 4", + "349": "= 4", + "350": "= 4", + "351": "= 4", + "352": "= 4", + "353": "= 4", + "354": "= 4", + "355": "= 4", + "356": "= 4", + "357": "= 4", + "358": "= 4", + "359": "= 4", + "360": "= 4", + "361": "= 4", + "362": "= 4", + "363": "= 4", + "364": "= 4", + "365": "= 4", + "366": "= 4", + "367": "= 4", + "368": "= 4", + "369": "= 4", + "370": "= 4", + "371": "= 4", + "372": "= 4", + "373": "= 4", + "374": "= 4", + "375": "= 4", + "376": "= 4", + "377": "= 4", + "378": "= 4", + "379": "= 4", + "380": "= 4", + "381": "= 4", + "382": "= 4", + "383": "= 4", + "384": "= 4", + "385": "= 4", + "386": "= 4", + "387": "= 4", + "388": "= 4", + "389": "= 4", + "390": "= 4", + "391": "= 4", + "392": "= 4", + "393": "= 4", + "394": "= 4", + "395": "= 4", + "396": "= 4", + "397": "= 4", + "398": "= 4", + "399": "= 4", + "400": "= 4" + }, + "3": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7", + "8": "= 8", + "9": "= 9", + "10": "= 10", + "11": "= 11", + "12": "= 12", + "13": "= 13", + "14": "= 14", + "15": "= 15", + "16": "= 16", + "17": "= 17", + "18": "= 18", + "19": "= 19", + "20": "= 20", + "21": "= 21", + "22": "= 22", + "23": "= 23", + "24": "= 24", + "25": "= 25", + "26": "= 26", + "27": "= 27", + "28": "= 28", + "29": "= 29", + "30": "= 30", + "31": "= 31", + "32": "= 32", + "33": "= 33", + "34": "= 34", + "35": "= 35", + "36": "= 36", + "37": "= 37", + "38": "= 38", + "39": "= 39", + "40": "= 40", + "41": "= 41", + "42": "= 42", + "43": "= 43", + "44": "= 44", + "45": "= 45", + "46": "= 46", + "47": "= 47", + "48": "= 48", + "49": "= 49", + "50": "= 50", + "51": "= 51", + "52": "= 52", + "53": "= 53", + "54": "= 54", + "55": "= 55", + "56": "= 56", + "57": "= 57", + "58": "= 58", + "59": "= 59", + "60": "= 60", + "61": "= 61", + "62": "= 62", + "63": "= 63", + "64": "= 64", + "65": "= 65", + "66": "= 66", + "67": "= 67", + "68": "= 68", + "69": "= 69", + "70": "= 70", + "71": "= 71", + "72": "= 72", + "73": "= 73", + "74": "= 74", + "75": "= 75", + "76": "= 76", + "77": "= 77", + "78": "= 78", + "79": "= 79", + "80": "= 80", + "81": "= 81", + "82": "= 82", + "83": "= 83", + "84": "= 84", + "85": "= 85", + "86": "= 86", + "87": "= 87", + "88": "= 88", + "89": "= 89", + "90": "= 90", + "91": "= 91", + "92": "= 92", + "93": "= 93", + "94": "= 94", + "95": "= 95", + "96": "= 96", + "97": "= 97", + "98": "= 98", + "99": "= 99", + "100": "= 100", + "101": "= 1", + "102": "= 2", + "103": "= 3", + "104": "= 4", + "105": "= 5", + "106": "= 6", + "107": "= 7", + "108": "= 8", + "109": "= 9", + "110": "= 10", + "111": "= 11", + "112": "= 12", + "113": "= 13", + "114": "= 14", + "115": "= 15", + "116": "= 16", + "117": "= 17", + "118": "= 18", + "119": "= 19", + "120": "= 20", + "121": "= 21", + "122": "= 22", + "123": "= 23", + "124": "= 24", + "125": "= 25", + "126": "= 26", + "127": "= 27", + "128": "= 28", + "129": "= 29", + "130": "= 30", + "131": "= 31", + "132": "= 32", + "133": "= 33", + "134": "= 34", + "135": "= 35", + "136": "= 36", + "137": "= 37", + "138": "= 38", + "139": "= 39", + "140": "= 40", + "141": "= 41", + "142": "= 42", + "143": "= 43", + "144": "= 44", + "145": "= 45", + "146": "= 46", + "147": "= 47", + "148": "= 48", + "149": "= 49", + "150": "= 50", + "151": "= 51", + "152": "= 52", + "153": "= 53", + "154": "= 54", + "155": "= 55", + "156": "= 56", + "157": "= 57", + "158": "= 58", + "159": "= 59", + "160": "= 60", + "161": "= 61", + "162": "= 62", + "163": "= 63", + "164": "= 64", + "165": "= 65", + "166": "= 66", + "167": "= 67", + "168": "= 68", + "169": "= 69", + "170": "= 70", + "171": "= 71", + "172": "= 72", + "173": "= 73", + "174": "= 74", + "175": "= 75", + "176": "= 76", + "177": "= 77", + "178": "= 78", + "179": "= 79", + "180": "= 80", + "181": "= 81", + "182": "= 82", + "183": "= 83", + "184": "= 84", + "185": "= 85", + "186": "= 86", + "187": "= 87", + "188": "= 88", + "189": "= 89", + "190": "= 90", + "191": "= 91", + "192": "= 92", + "193": "= 93", + "194": "= 94", + "195": "= 95", + "196": "= 96", + "197": "= 97", + "198": "= 98", + "199": "= 99", + "200": "= 100", + "201": "= 1", + "202": "= 2", + "203": "= 3", + "204": "= 4", + "205": "= 5", + "206": "= 6", + "207": "= 7", + "208": "= 8", + "209": "= 9", + "210": "= 10", + "211": "= 11", + "212": "= 12", + "213": "= 13", + "214": "= 14", + "215": "= 15", + "216": "= 16", + "217": "= 17", + "218": "= 18", + "219": "= 19", + "220": "= 20", + "221": "= 21", + "222": "= 22", + "223": "= 23", + "224": "= 24", + "225": "= 25", + "226": "= 26", + "227": "= 27", + "228": "= 28", + "229": "= 29", + "230": "= 30", + "231": "= 31", + "232": "= 32", + "233": "= 33", + "234": "= 34", + "235": "= 35", + "236": "= 36", + "237": "= 37", + "238": "= 38", + "239": "= 39", + "240": "= 40", + "241": "= 41", + "242": "= 42", + "243": "= 43", + "244": "= 44", + "245": "= 45", + "246": "= 46", + "247": "= 47", + "248": "= 48", + "249": "= 49", + "250": "= 50", + "251": "= 51", + "252": "= 52", + "253": "= 53", + "254": "= 54", + "255": "= 55", + "256": "= 56", + "257": "= 57", + "258": "= 58", + "259": "= 59", + "260": "= 60", + "261": "= 61", + "262": "= 62", + "263": "= 63", + "264": "= 64", + "265": "= 65", + "266": "= 66", + "267": "= 67", + "268": "= 68", + "269": "= 69", + "270": "= 70", + "271": "= 71", + "272": "= 72", + "273": "= 73", + "274": "= 74", + "275": "= 75", + "276": "= 76", + "277": "= 77", + "278": "= 78", + "279": "= 79", + "280": "= 80", + "281": "= 81", + "282": "= 82", + "283": "= 83", + "284": "= 84", + "285": "= 85", + "286": "= 86", + "287": "= 87", + "288": "= 88", + "289": "= 89", + "290": "= 90", + "291": "= 91", + "292": "= 92", + "293": "= 93", + "294": "= 94", + "295": "= 95", + "296": "= 96", + "297": "= 97", + "298": "= 98", + "299": "= 99", + "300": "= 100", + "301": "= 1", + "302": "= 2", + "303": "= 3", + "304": "= 4", + "305": "= 5", + "306": "= 6", + "307": "= 7", + "308": "= 8", + "309": "= 9", + "310": "= 10", + "311": "= 11", + "312": "= 12", + "313": "= 13", + "314": "= 14", + "315": "= 15", + "316": "= 16", + "317": "= 17", + "318": "= 18", + "319": "= 19", + "320": "= 20", + "321": "= 21", + "322": "= 22", + "323": "= 23", + "324": "= 24", + "325": "= 25", + "326": "= 26", + "327": "= 27", + "328": "= 28", + "329": "= 29", + "330": "= 30", + "331": "= 31", + "332": "= 32", + "333": "= 33", + "334": "= 34", + "335": "= 35", + "336": "= 36", + "337": "= 37", + "338": "= 38", + "339": "= 39", + "340": "= 40", + "341": "= 41", + "342": "= 42", + "343": "= 43", + "344": "= 44", + "345": "= 45", + "346": "= 46", + "347": "= 47", + "348": "= 48", + "349": "= 49", + "350": "= 50", + "351": "= 51", + "352": "= 52", + "353": "= 53", + "354": "= 54", + "355": "= 55", + "356": "= 56", + "357": "= 57", + "358": "= 58", + "359": "= 59", + "360": "= 60", + "361": "= 61", + "362": "= 62", + "363": "= 63", + "364": "= 64", + "365": "= 65", + "366": "= 66", + "367": "= 67", + "368": "= 68", + "369": "= 69", + "370": "= 70", + "371": "= 71", + "372": "= 72", + "373": "= 73", + "374": "= 74", + "375": "= 75", + "376": "= 76", + "377": "= 77", + "378": "= 78", + "379": "= 79", + "380": "= 80", + "381": "= 81", + "382": "= 82", + "383": "= 83", + "384": "= 84", + "385": "= 85", + "386": "= 86", + "387": "= 87", + "388": "= 88", + "389": "= 89", + "390": "= 90", + "391": "= 91", + "392": "= 92", + "393": "= 93", + "394": "= 94", + "395": "= 95", + "396": "= 96", + "397": "= 97", + "398": "= 98", + "399": "= 99", + "400": "= 100" + }, + "4": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 13471464", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 13188308", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 13471464", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 13188308", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "7": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 4000629177", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 1952795763", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "8": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 2", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 3", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "9": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 12590563769", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 14837697651", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "10": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + }, + "12": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0", + "49": "= 0", + "50": "= 0", + "51": "= 0", + "52": "= 0", + "53": "= 0", + "54": "= 0", + "55": "= 0", + "56": "= 0", + "57": "= 0", + "58": "= 0", + "59": "= 0", + "60": "= 0", + "61": "= 0", + "62": "= 0", + "63": "= 0", + "64": "= 0", + "65": "= 0", + "66": "= 0", + "67": "= 0", + "68": "= 0", + "69": "= 0", + "70": "= 0", + "71": "= 0", + "72": "= 0", + "73": "= 0", + "74": "= 0", + "75": "= 0", + "76": "= 0", + "77": "= 0", + "78": "= 0", + "79": "= 0", + "80": "= 0", + "81": "= 0", + "82": "= 0", + "83": "= 0", + "84": "= 0", + "85": "= 0", + "86": "= 0", + "87": "= 0", + "88": "= 0", + "89": "= 0", + "90": "= 0", + "91": "= 0", + "92": "= 0", + "93": "= 0", + "94": "= 0", + "95": "= 0", + "96": "= 0", + "97": "= 0", + "98": "= 0", + "99": "= 0", + "100": "= 0", + "101": "= 0", + "102": "= 0", + "103": "= 0", + "104": "= 0", + "105": "= 0", + "106": "= 0", + "107": "= 0", + "108": "= 0", + "109": "= 0", + "110": "= 0", + "111": "= 0", + "112": "= 0", + "113": "= 0", + "114": "= 0", + "115": "= 0", + "116": "= 0", + "117": "= 0", + "118": "= 0", + "119": "= 0", + "120": "= 0", + "121": "= 0", + "122": "= 0", + "123": "= 0", + "124": "= 0", + "125": "= 0", + "126": "= 0", + "127": "= 0", + "128": "= 0", + "129": "= 0", + "130": "= 0", + "131": "= 0", + "132": "= 0", + "133": "= 0", + "134": "= 0", + "135": "= 0", + "136": "= 0", + "137": "= 0", + "138": "= 0", + "139": "= 0", + "140": "= 0", + "141": "= 0", + "142": "= 0", + "143": "= 0", + "144": "= 0", + "145": "= 0", + "146": "= 0", + "147": "= 0", + "148": "= 0", + "149": "= 0", + "150": "= 0", + "151": "= 0", + "152": "= 0", + "153": "= 0", + "154": "= 0", + "155": "= 0", + "156": "= 0", + "157": "= 0", + "158": "= 0", + "159": "= 0", + "160": "= 0", + "161": "= 0", + "162": "= 0", + "163": "= 0", + "164": "= 0", + "165": "= 0", + "166": "= 0", + "167": "= 0", + "168": "= 0", + "169": "= 0", + "170": "= 0", + "171": "= 0", + "172": "= 0", + "173": "= 0", + "174": "= 0", + "175": "= 0", + "176": "= 0", + "177": "= 0", + "178": "= 0", + "179": "= 0", + "180": "= 0", + "181": "= 0", + "182": "= 0", + "183": "= 0", + "184": "= 0", + "185": "= 0", + "186": "= 0", + "187": "= 0", + "188": "= 0", + "189": "= 0", + "190": "= 0", + "191": "= 0", + "192": "= 0", + "193": "= 0", + "194": "= 0", + "195": "= 0", + "196": "= 0", + "197": "= 0", + "198": "= 0", + "199": "= 0", + "200": "= 0", + "201": "= 0", + "202": "= 0", + "203": "= 0", + "204": "= 0", + "205": "= 0", + "206": "= 0", + "207": "= 0", + "208": "= 0", + "209": "= 0", + "210": "= 0", + "211": "= 0", + "212": "= 0", + "213": "= 0", + "214": "= 0", + "215": "= 0", + "216": "= 0", + "217": "= 0", + "218": "= 0", + "219": "= 0", + "220": "= 0", + "221": "= 0", + "222": "= 0", + "223": "= 0", + "224": "= 0", + "225": "= 0", + "226": "= 0", + "227": "= 0", + "228": "= 0", + "229": "= 0", + "230": "= 0", + "231": "= 0", + "232": "= 0", + "233": "= 0", + "234": "= 0", + "235": "= 0", + "236": "= 0", + "237": "= 0", + "238": "= 0", + "239": "= 0", + "240": "= 0", + "241": "= 0", + "242": "= 0", + "243": "= 0", + "244": "= 0", + "245": "= 0", + "246": "= 0", + "247": "= 0", + "248": "= 0", + "249": "= 0", + "250": "= 0", + "251": "= 0", + "252": "= 0", + "253": "= 0", + "254": "= 0", + "255": "= 0", + "256": "= 0", + "257": "= 0", + "258": "= 0", + "259": "= 0", + "260": "= 0", + "261": "= 0", + "262": "= 0", + "263": "= 0", + "264": "= 0", + "265": "= 0", + "266": "= 0", + "267": "= 0", + "268": "= 0", + "269": "= 0", + "270": "= 0", + "271": "= 0", + "272": "= 0", + "273": "= 0", + "274": "= 0", + "275": "= 0", + "276": "= 0", + "277": "= 0", + "278": "= 0", + "279": "= 0", + "280": "= 0", + "281": "= 0", + "282": "= 0", + "283": "= 0", + "284": "= 0", + "285": "= 0", + "286": "= 0", + "287": "= 0", + "288": "= 0", + "289": "= 0", + "290": "= 0", + "291": "= 0", + "292": "= 0", + "293": "= 0", + "294": "= 0", + "295": "= 0", + "296": "= 0", + "297": "= 0", + "298": "= 0", + "299": "= 0", + "300": "= 0", + "301": "= 0", + "302": "= 0", + "303": "= 0", + "304": "= 0", + "305": "= 0", + "306": "= 0", + "307": "= 0", + "308": "= 0", + "309": "= 0", + "310": "= 0", + "311": "= 0", + "312": "= 0", + "313": "= 0", + "314": "= 0", + "315": "= 0", + "316": "= 0", + "317": "= 0", + "318": "= 0", + "319": "= 0", + "320": "= 0", + "321": "= 0", + "322": "= 0", + "323": "= 0", + "324": "= 0", + "325": "= 0", + "326": "= 0", + "327": "= 0", + "328": "= 0", + "329": "= 0", + "330": "= 0", + "331": "= 0", + "332": "= 0", + "333": "= 0", + "334": "= 0", + "335": "= 0", + "336": "= 0", + "337": "= 0", + "338": "= 0", + "339": "= 0", + "340": "= 0", + "341": "= 0", + "342": "= 0", + "343": "= 0", + "344": "= 0", + "345": "= 0", + "346": "= 0", + "347": "= 0", + "348": "= 0", + "349": "= 0", + "350": "= 0", + "351": "= 0", + "352": "= 0", + "353": "= 0", + "354": "= 0", + "355": "= 0", + "356": "= 0", + "357": "= 0", + "358": "= 0", + "359": "= 0", + "360": "= 0", + "361": "= 0", + "362": "= 0", + "363": "= 0", + "364": "= 0", + "365": "= 0", + "366": "= 0", + "367": "= 0", + "368": "= 0", + "369": "= 0", + "370": "= 0", + "371": "= 0", + "372": "= 0", + "373": "= 0", + "374": "= 0", + "375": "= 0", + "376": "= 0", + "377": "= 0", + "378": "= 0", + "379": "= 0", + "380": "= 0", + "381": "= 0", + "382": "= 0", + "383": "= 0", + "384": "= 0", + "385": "= 0", + "386": "= 0", + "387": "= 0", + "388": "= 0", + "389": "= 0", + "390": "= 0", + "391": "= 0", + "392": "= 0", + "393": "= 0", + "394": "= 0", + "395": "= 0", + "396": "= 0", + "397": "= 0", + "398": "= 0", + "399": "= 0", + "400": "= 0" + } + } + }, + "5": { + "1": { + "1": { + "1": { + "2": { + "1": "= \"Traffic-1\"", + "2": "= \"Traffic-2\"", + "3": "= \"Traffic-3\"", + "4": "= \"Traffic-4\"" + }, + "3": { + "1": "= 100", + "2": "= 100", + "3": "= 100", + "4": "= 100" + } + } + } + }, + "2": { + "1": { + "1": { + "2": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 0", + "6": "= 0", + "7": "= 0" + } + } + } + }, + "3": { + "1": { + "0": "= 5" + } + } + } + }, + "4": { + "1": { + "1": { + "2": { + "1": "= 1", + "3": "= 3" + }, + "3": { + "1": "= 7", + "3": "= 128" + }, + "4": { + "1": "= \"OEM \"", + "3": "= \"PROLABS \"" + }, + "5": { + "1": "= \"00 00 00 \"", + "3": "= \"00 00 00 \"" + }, + "6": { + "1": "= \"53 46 50 2D 4C 58 2D 53 4D 00 00 00 00 00 00 00 \"", + "3": "= \"SFP-1000BASE-T-C\"" + }, + "7": { + "1": "= \"31 2E 30 20 00 05 1E 4E 43 49 35 30 4C 30 38 35 \"", + "3": "= \"41 32 20 20 00 00 00 50 52 4C 39 34 30 30 33 39 \"" + }, + "8": { + "1": "= 1310", + "3": "= 0" + }, + "9": { + "1": "= \"NCI50L0853 \"", + "3": "= \"PRL940039251 \"" + }, + "10": { + "1": "= 2009", + "3": "= 2021" + }, + "11": { + "1": "= 10", + "3": "= 8" + }, + "12": { + "1": "= 1", + "3": "= 16" + }, + "13": { + "1": "= 0", + "3": "= 0" + }, + "14": { + "1": "= 0", + "3": "= 0" + }, + "15": { + "1": "= 1", + "3": "= 1" + }, + "16": { + "1": "= 2", + "3": "= 2" + }, + "17": { + "1": "= 2", + "3": "= 2" + }, + "18": { + "1": "= 2", + "3": "= 2" + }, + "19": { + "1": "= 3", + "3": "= 3" + }, + "20": { + "1": "= 4", + "3": "= 4" + }, + "21": { + "1": "= \"00 00 00 02 12 00 0D 01 \"", + "3": "= \"00 00 00 08 00 00 00 00 \"" + } + } + }, + "2": { + "1": { + "2": { + "1": "= 1", + "3": "= 3" + }, + "3": { + "1": "= 0", + "3": "= 0" + }, + "4": { + "1": "= 0", + "3": "= 0" + }, + "5": { + "1": "= 0", + "3": "= 0" + }, + "6": { + "1": "= 0", + "3": "= 0" + }, + "7": { + "1": "= 0", + "3": "= 0" + }, + "8": { + "1": "= \"-inf dBm", + "3": "= \"-inf dBm" + }, + "9": { + "1": "= \"-inf dBm", + "3": "= \"-inf dBm" + } + } + }, + "3": { + "1": { + "2": { + "1": "= 1", + "3": "= 3" + }, + "3": { + "1": "= 0", + "3": "= 0" + }, + "4": { + "1": "= 0", + "3": "= 0" + }, + "5": { + "1": "= 0", + "3": "= 0" + }, + "6": { + "1": "= 0", + "3": "= 0" + }, + "7": { + "1": "= 0", + "3": "= 0" + }, + "8": { + "1": "= 0", + "3": "= 0" + }, + "9": { + "1": "= 0", + "3": "= 0" + }, + "10": { + "1": "= 0", + "3": "= 0" + }, + "11": { + "1": "= 0", + "3": "= 0" + }, + "12": { + "1": "= 0", + "3": "= 0" + }, + "13": { + "1": "= 0", + "3": "= 0" + }, + "14": { + "1": "= 0", + "3": "= 0" + }, + "15": { + "1": "= 0", + "3": "= 0" + }, + "16": { + "1": "= 0", + "3": "= 0" + }, + "17": { + "1": "= 0", + "3": "= 0" + }, + "18": { + "1": "= 0", + "3": "= 0" + }, + "19": { + "1": "= 0", + "3": "= 0" + }, + "20": { + "1": "= 0", + "3": "= 0" + }, + "21": { + "1": "= 0", + "3": "= 0" + }, + "22": { + "1": "= 0", + "3": "= 0" + }, + "23": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "24": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "25": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "26": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "27": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "28": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "29": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + }, + "30": { + "1": "= \"2D 69 6E 00 20 64 42 6D 0A \"", + "3": "= \"2D 69 6E 00 20 64 42 6D 0A \"" + } + } + }, + "4": { + "1": { + "2": { + "1": "= 1", + "3": "= 3" + }, + "3": { + "1": "= 2", + "3": "= 2" + }, + "4": { + "1": "= 2", + "3": "= 2" + }, + "5": { + "1": "= 2", + "3": "= 2" + }, + "6": { + "1": "= 2", + "3": "= 2" + }, + "7": { + "1": "= 2", + "3": "= 2" + }, + "8": { + "1": "= 2", + "3": "= 2" + }, + "9": { + "1": "= 2", + "3": "= 2" + }, + "10": { + "1": "= 2", + "3": "= 2" + }, + "11": { + "1": "= 2", + "3": "= 2" + }, + "12": { + "1": "= 2", + "3": "= 2" + }, + "13": { + "1": "= 2", + "3": "= 2" + }, + "14": { + "1": "= 2", + "3": "= 2" + }, + "15": { + "1": "= 2", + "3": "= 2" + }, + "16": { + "1": "= 2", + "3": "= 2" + }, + "17": { + "1": "= 2", + "3": "= 2" + }, + "18": { + "1": "= 2", + "3": "= 2" + }, + "19": { + "1": "= 2", + "3": "= 2" + }, + "20": { + "1": "= 2", + "3": "= 2" + }, + "21": { + "1": "= 2", + "3": "= 2" + }, + "22": { + "1": "= 2", + "3": "= 2" + } + } + } + }, + "5": { + "1": { + "1": { + "2": { + "1": "= 1", + "2": "= 0", + "3": "= 1", + "4": "= 0" + }, + "3": { + "1": "= 1", + "2": "= 2", + "3": "= 1", + "4": "= 2" + }, + "4": { + "1": "= 10000", + "2": "= 0", + "3": "= 10000", + "4": "= 0" + }, + "5": { + "1": "= 1", + "2": "= 2", + "3": "= 1", + "4": "= 2" + }, + "6": { + "1": "= 10000", + "2": "= 0", + "3": "= 10000", + "4": "= 0" + }, + "7": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "8": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "9": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "10": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "12": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "14": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "15": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "17": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "19": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "20": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "21": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "22": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "23": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "24": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "25": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "26": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "27": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "28": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "29": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "30": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "31": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "32": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "33": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "34": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "35": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "36": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "37": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "38": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "39": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "40": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "41": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "42": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "43": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "44": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "45": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "46": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "47": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "48": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "49": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "50": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "51": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "52": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "53": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "54": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "55": { + "1": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"", + "2": "= \"00 00 01 01 00 00 00 00 \"", + "3": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"", + "4": "= \"00 00 01 01 00 00 00 00 \"" + }, + "56": { + "1": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"", + "2": "= \"00 00 01 01 00 00 00 00 \"", + "3": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"", + "4": "= \"00 00 01 01 00 00 00 00 \"" + }, + "57": { + "1": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"", + "2": "= \"00 00 01 01 00 00 00 00 \"", + "3": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"", + "4": "= \"00 00 01 01 00 00 00 00 \"" + }, + "58": { + "1": "= 60", + "2": "= 0", + "3": "= 60", + "4": "= 0" + }, + "59": { + "1": "= 60", + "2": "= 0", + "3": "= 60", + "4": "= 0" + }, + "60": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "61": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "62": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "63": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "64": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "65": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "66": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "67": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "68": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "69": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "70": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "71": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "72": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "73": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "74": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "75": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "76": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "77": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "78": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "79": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "80": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "81": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "82": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "83": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "84": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "85": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "86": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "87": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "88": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "89": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "90": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "91": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "92": { + "1": "= \"\"", + "2": "= \"\"", + "3": "= \"\"", + "4": "= \"\"" + }, + "93": { + "1": "= \"\"", + "2": "= \"\"", + "3": "= \"\"", + "4": "= \"\"" + }, + "94": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "95": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "96": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "97": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "98": { + "1": "= 1", + "2": "= 0", + "3": "= 1", + "4": "= 0" + }, + "99": { + "1": "= 1", + "2": "= 0", + "3": "= 1", + "4": "= 0" + }, + "100": { + "1": "= 2", + "2": "= 0", + "3": "= 2", + "4": "= 0" + }, + "101": { + "1": "= 60", + "2": "= 0", + "3": "= 60", + "4": "= 0" + }, + "102": { + "1": "= 100000000", + "2": "= 0", + "3": "= 100000000", + "4": "= 0" + }, + "103": { + "1": "= 100000000", + "2": "= 0", + "3": "= 100000000", + "4": "= 0" + }, + "104": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "105": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "106": { + "1": "= 60", + "2": "= 0", + "3": "= 60", + "4": "= 0" + }, + "107": { + "1": "= 60", + "2": "= 0", + "3": "= 60", + "4": "= 0" + }, + "108": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "109": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "110": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "111": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "112": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "113": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "114": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "115": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "116": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "117": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "118": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "119": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "120": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "121": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "122": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "123": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "124": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + } + } + }, + "2": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4" + }, + "2": { + "1": "= 1", + "2": "= 2", + "3": "= 1", + "4": "= 2" + }, + "3": { + "1": "= 1", + "2": "= 2", + "3": "= 1", + "4": "= 2" + }, + "4": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "5": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "6": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "7": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "8": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "9": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "10": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "11": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "12": { + "1": "= 1", + "2": "= 0", + "3": "= 1", + "4": "= 0" + }, + "13": { + "1": "= \"00:15:AD:65:F4:35\"", + "2": "= \"00:15:AD:65:F2:A5\"", + "3": "= \"00:15:AD:65:F4:15\"", + "4": "= \"00:15:AD:65:F2:A5\"" + } + } + }, + "4": { + "1": { + "1": { + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4" + }, + "2": { + "1": "= \"PAA_Site573_VL2216\"", + "2": "= \"PAA_site573_2216_PNAP\"", + "3": "= \"PAA_Site573_VL2217\"", + "4": "= \"PAA_site573_2217_PNAP\"" + }, + "3": { + "1": "= 0", + "2": "= 1", + "3": "= 0", + "4": "= 1" + }, + "4": { + "1": "= 66", + "2": "= 66", + "3": "= 66", + "4": "= 66" + }, + "5": { + "1": "= 1000", + "2": "= 1000", + "3": "= 1000", + "4": "= 1000" + }, + "6": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4" + }, + "7": { + "1": "= 60000", + "2": "= 60000", + "3": "= 60000", + "4": "= 60000" + }, + "8": { + "1": "= 1000", + "2": "= 1000", + "3": "= 1000", + "4": "= 1000" + }, + "9": { + "1": "= 60000", + "2": "= 60000", + "3": "= 60000", + "4": "= 60000" + }, + "10": { + "1": "= 10000", + "2": "= 10000", + "3": "= 10000", + "4": "= 10000" + }, + "11": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4" + }, + "12": { + "1": "= 2000", + "2": "= 2000", + "3": "= 2000", + "4": "= 2000" + }, + "13": { + "1": "= 60000", + "2": "= 60000", + "3": "= 60000", + "4": "= 60000" + }, + "14": { + "1": "= 100000", + "2": "= 100000", + "3": "= 100000", + "4": "= 100000" + }, + "15": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4" + }, + "16": { + "1": "= 100000", + "2": "= 100000", + "3": "= 100000", + "4": "= 100000" + }, + "17": { + "1": "= 10000", + "2": "= 10000", + "3": "= 10000", + "4": "= 10000" + }, + "18": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4" + }, + "19": { + "1": "= 10000", + "2": "= 10000", + "3": "= 10000", + "4": "= 10000" + }, + "20": { + "1": "= \"EVEN_VLAN_UPLINK\"", + "2": "= \"EVEN_VLAN_UPLINK\"", + "3": "= \"EVEN_VLAN_UPLINK\"", + "4": "= \"EVEN_VLAN_UPLINK\"" + }, + "21": { + "1": "= \"00 15 AD 65 F4 35 \"", + "2": "= \"00 15 AD 65 F2 A5 \"", + "3": "= \"00 15 AD 65 F4 15 \"", + "4": "= \"00 15 AD 65 F2 A5 \"" + }, + "22": { + "1": "= 35068", + "2": "= 35068", + "3": "= 35068", + "4": "= 35068" + }, + "23": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1" + }, + "24": { + "1": "= 2216", + "2": "= 2216", + "3": "= 2217", + "4": "= 2217" + }, + "25": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1" + }, + "26": { + "1": "= 2573", + "2": "= 2573", + "3": "= 3573", + "4": "= 3573" + }, + "27": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "28": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "29": { + "1": "= 50000", + "2": "= 50000", + "3": "= 50000", + "4": "= 50000" + }, + "30": { + "1": "= 4", + "2": "= 4", + "3": "= 4", + "4": "= 4" + }, + "31": { + "1": "= 50000", + "2": "= 50000", + "3": "= 50000", + "4": "= 50000" + }, + "32": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "33": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1" + }, + "34": { + "1": "= 10000000", + "2": "= 10000000", + "3": "= 10000000", + "4": "= 10000000" + }, + "35": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "36": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "37": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "38": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "39": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "40": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "41": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "42": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "43": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + }, + "44": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "45": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + }, + "46": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0" + } + } + }, + "5": { + "1": { + "1": { + "1": { + "1755427": "= 1", + "1755428": "= 1", + "1755429": "= 1", + "1755430": "= 1", + "1755431": "= 1", + "1755432": "= 1", + "1755433": "= 1", + "1755434": "= 1", + "1755435": "= 1", + "1755436": "= 1", + "1755437": "= 1", + "1755438": "= 1", + "1755439": "= 1", + "1755440": "= 1", + "1755441": "= 1" + }, + "3": { + "1755427": "= 3", + "1755428": "= 3", + "1755429": "= 3", + "1755430": "= 3", + "1755431": "= 3", + "1755432": "= 3", + "1755433": "= 3", + "1755434": "= 3", + "1755435": "= 3", + "1755436": "= 3", + "1755437": "= 3", + "1755438": "= 3", + "1755439": "= 3", + "1755440": "= 3", + "1755441": "= 3" + } + }, + "2": { + "1": { + "1755427": "= 1755427", + "1755428": "= 1755428", + "1755429": "= 1755429", + "1755430": "= 1755430", + "1755431": "= 1755431", + "1755432": "= 1755432", + "1755433": "= 1755433", + "1755434": "= 1755434", + "1755435": "= 1755435", + "1755436": "= 1755436", + "1755437": "= 1755437", + "1755438": "= 1755438", + "1755439": "= 1755439", + "1755440": "= 1755440", + "1755441": "= 1755441" + }, + "3": { + "1755427": "= 1755427", + "1755428": "= 1755428", + "1755429": "= 1755429", + "1755430": "= 1755430", + "1755431": "= 1755431", + "1755432": "= 1755432", + "1755433": "= 1755433", + "1755434": "= 1755434", + "1755435": "= 1755435", + "1755436": "= 1755436", + "1755437": "= 1755437", + "1755438": "= 1755438", + "1755439": "= 1755439", + "1755440": "= 1755440", + "1755441": "= 1755441" + } + }, + "3": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "4": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "5": { + "1": { + "1755427": "= \"07 B5 05 03 0F 27 00 00 2D 07 00 \"", + "1755428": "= \"07 B5 05 03 0F 28 00 00 2D 07 00 \"", + "1755429": "= \"07 B5 05 03 0F 29 00 00 2D 07 00 \"", + "1755430": "= \"07 B5 05 03 0F 2A 00 00 2D 07 00 \"", + "1755431": "= \"07 B5 05 03 0F 2B 00 00 2D 07 00 \"", + "1755432": "= \"07 B5 05 03 0F 2C 00 00 2D 07 00 \"", + "1755433": "= \"07 B5 05 03 0F 2D 00 00 2D 07 00 \"", + "1755434": "= \"07 B5 05 03 0F 2E 00 00 2D 07 00 \"", + "1755435": "= \"07 B5 05 03 0F 2F 00 00 2D 07 00 \"", + "1755436": "= \"07 B5 05 03 0F 30 00 00 2D 07 00 \"", + "1755437": "= \"07 B5 05 03 0F 31 00 00 2D 07 00 \"", + "1755438": "= \"07 B5 05 03 0F 32 00 00 2D 07 00 \"", + "1755439": "= \"07 B5 05 03 0F 33 00 00 2D 07 00 \"", + "1755440": "= \"07 B5 05 03 0F 34 00 00 2D 07 00 \"", + "1755441": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"" + }, + "3": { + "1755427": "= \"07 B5 05 03 0F 27 00 00 2D 07 00 \"", + "1755428": "= \"07 B5 05 03 0F 28 00 00 2D 07 00 \"", + "1755429": "= \"07 B5 05 03 0F 29 00 00 2D 07 00 \"", + "1755430": "= \"07 B5 05 03 0F 2A 00 00 2D 07 00 \"", + "1755431": "= \"07 B5 05 03 0F 2B 00 00 2D 07 00 \"", + "1755432": "= \"07 B5 05 03 0F 2C 00 00 2D 07 00 \"", + "1755433": "= \"07 B5 05 03 0F 2D 00 00 2D 07 00 \"", + "1755434": "= \"07 B5 05 03 0F 2E 00 00 2D 07 00 \"", + "1755435": "= \"07 B5 05 03 0F 2F 00 00 2D 07 00 \"", + "1755436": "= \"07 B5 05 03 0F 30 00 00 2D 07 00 \"", + "1755437": "= \"07 B5 05 03 0F 31 00 00 2D 07 00 \"", + "1755438": "= \"07 B5 05 03 0F 32 00 00 2D 07 00 \"", + "1755439": "= \"07 B5 05 03 0F 33 00 00 2D 07 00 \"", + "1755440": "= \"07 B5 05 03 0F 34 00 00 2D 07 00 \"", + "1755441": "= \"07 B5 05 03 0F 35 00 00 2D 07 00 \"" + } + }, + "6": { + "1": { + "1755427": "= 1", + "1755428": "= 1", + "1755429": "= 1", + "1755430": "= 1", + "1755431": "= 1", + "1755432": "= 1", + "1755433": "= 1", + "1755434": "= 1", + "1755435": "= 1", + "1755436": "= 1", + "1755437": "= 1", + "1755438": "= 1", + "1755439": "= 1", + "1755440": "= 1", + "1755441": "= 1" + }, + "3": { + "1755427": "= 1", + "1755428": "= 1", + "1755429": "= 1", + "1755430": "= 1", + "1755431": "= 1", + "1755432": "= 1", + "1755433": "= 1", + "1755434": "= 1", + "1755435": "= 1", + "1755436": "= 1", + "1755437": "= 1", + "1755438": "= 1", + "1755439": "= 1", + "1755440": "= 1", + "1755441": "= 1" + } + }, + "7": { + "1": { + "1755427": "= 60", + "1755428": "= 60", + "1755429": "= 60", + "1755430": "= 60", + "1755431": "= 60", + "1755432": "= 60", + "1755433": "= 60", + "1755434": "= 60", + "1755435": "= 60", + "1755436": "= 60", + "1755437": "= 60", + "1755438": "= 60", + "1755439": "= 60", + "1755440": "= 60", + "1755441": "= 60" + }, + "3": { + "1755427": "= 60", + "1755428": "= 60", + "1755429": "= 60", + "1755430": "= 60", + "1755431": "= 60", + "1755432": "= 60", + "1755433": "= 60", + "1755434": "= 60", + "1755435": "= 60", + "1755436": "= 60", + "1755437": "= 60", + "1755438": "= 60", + "1755439": "= 60", + "1755440": "= 60", + "1755441": "= 60" + } + }, + "8": { + "1": { + "1755427": "= 10000", + "1755428": "= 10000", + "1755429": "= 10000", + "1755430": "= 10000", + "1755431": "= 10000", + "1755432": "= 10000", + "1755433": "= 10000", + "1755434": "= 10000", + "1755435": "= 10000", + "1755436": "= 10000", + "1755437": "= 10000", + "1755438": "= 10000", + "1755439": "= 10000", + "1755440": "= 10000", + "1755441": "= 10000" + }, + "3": { + "1755427": "= 10000", + "1755428": "= 10000", + "1755429": "= 10000", + "1755430": "= 10000", + "1755431": "= 10000", + "1755432": "= 10000", + "1755433": "= 10000", + "1755434": "= 10000", + "1755435": "= 10000", + "1755436": "= 10000", + "1755437": "= 10000", + "1755438": "= 10000", + "1755439": "= 10000", + "1755440": "= 10000", + "1755441": "= 10000" + } + }, + "9": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "10": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "11": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "12": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "13": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "14": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "15": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "16": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "17": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "18": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "19": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "20": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "21": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "22": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "23": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "24": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "25": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "26": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "27": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "28": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "29": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "30": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "31": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "32": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "33": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "34": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "35": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "36": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "37": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "38": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "39": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "40": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "41": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "42": { + "1": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + }, + "3": { + "1755427": "= 2", + "1755428": "= 2", + "1755429": "= 2", + "1755430": "= 2", + "1755431": "= 2", + "1755432": "= 2", + "1755433": "= 2", + "1755434": "= 2", + "1755435": "= 2", + "1755436": "= 2", + "1755437": "= 2", + "1755438": "= 2", + "1755439": "= 2", + "1755440": "= 2", + "1755441": "= 2" + } + }, + "43": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "44": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "45": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "46": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "47": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "48": { + "1": { + "1755427": "= 100000000", + "1755428": "= 100000000", + "1755429": "= 100000000", + "1755430": "= 100000000", + "1755431": "= 100000000", + "1755432": "= 100000000", + "1755433": "= 100000000", + "1755434": "= 100000000", + "1755435": "= 100000000", + "1755436": "= 100000000", + "1755437": "= 100000000", + "1755438": "= 100000000", + "1755439": "= 100000000", + "1755440": "= 100000000", + "1755441": "= 100000000" + }, + "3": { + "1755427": "= 100000000", + "1755428": "= 100000000", + "1755429": "= 100000000", + "1755430": "= 100000000", + "1755431": "= 100000000", + "1755432": "= 100000000", + "1755433": "= 100000000", + "1755434": "= 100000000", + "1755435": "= 100000000", + "1755436": "= 100000000", + "1755437": "= 100000000", + "1755438": "= 100000000", + "1755439": "= 100000000", + "1755440": "= 100000000", + "1755441": "= 100000000" + } + }, + "49": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + }, + "50": { + "1": { + "1755427": "= 60", + "1755428": "= 60", + "1755429": "= 60", + "1755430": "= 60", + "1755431": "= 60", + "1755432": "= 60", + "1755433": "= 60", + "1755434": "= 60", + "1755435": "= 60", + "1755436": "= 60", + "1755437": "= 60", + "1755438": "= 60", + "1755439": "= 60", + "1755440": "= 60", + "1755441": "= 60" + }, + "3": { + "1755427": "= 60", + "1755428": "= 60", + "1755429": "= 60", + "1755430": "= 60", + "1755431": "= 60", + "1755432": "= 60", + "1755433": "= 60", + "1755434": "= 60", + "1755435": "= 60", + "1755436": "= 60", + "1755437": "= 60", + "1755438": "= 60", + "1755439": "= 60", + "1755440": "= 60", + "1755441": "= 60" + } + }, + "51": { + "1": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + }, + "3": { + "1755427": "= 0", + "1755428": "= 0", + "1755429": "= 0", + "1755430": "= 0", + "1755431": "= 0", + "1755432": "= 0", + "1755433": "= 0", + "1755434": "= 0", + "1755435": "= 0", + "1755436": "= 0", + "1755437": "= 0", + "1755438": "= 0", + "1755439": "= 0", + "1755440": "= 0", + "1755441": "= 0" + } + } + } + } + }, + "6": { + "1": { + "1": { + "2": { + "1": "= \"150Mb_Reg\"" + }, + "3": { + "1": "= 154000" + }, + "4": { + "1": "= 8" + }, + "5": { + "1": "= 40000" + }, + "6": { + "1": "= 8" + }, + "7": { + "1": "= 1" + }, + "8": { + "1": "= 2" + }, + "9": { + "1": "= 1" + }, + "10": { + "1": "= 1" + }, + "11": { + "1": "= 165000" + }, + "12": { + "1": "= 40000" + } + } + }, + "2": { + "1": { + "2": { + "1": "= 2716569892" + }, + "3": { + "1": "= 5" + }, + "4": { + "1": "= 24191406372" + }, + "5": { + "1": "= 24075872" + }, + "6": { + "1": "= 0" + }, + "7": { + "1": "= 24075872" + }, + "8": { + "1": "= 0" + }, + "9": { + "1": "= 1327175847" + }, + "10": { + "1": "= 0" + }, + "11": { + "1": "= 1327175847" + }, + "12": { + "1": "= 1167711" + }, + "13": { + "1": "= 0" + }, + "14": { + "1": "= 1167711" + }, + "15": { + "1": "= 0" + }, + "16": { + "1": "= 15105527127" + }, + "17": { + "1": "= 16295758" + }, + "18": { + "1": "= 9085879245" + }, + "19": { + "1": "= 7780114" + }, + "20": { + "1": "= 1327175847" + }, + "21": { + "1": "= 1167711" + }, + "22": { + "1": "= 0" + }, + "23": { + "1": "= 0" + }, + "24": { + "1": "= 0" + } + } + }, + "5": { + "1": { + "1": { + "0": "= 28" + } + } + } + }, + "8": { + "1": { + "1": { + "1": { + "1": { + "2": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1" + }, + "3": { + "1": "= \"8P0D-8P0D\"", + "2": "= \"8P0D-7P1D\"", + "3": "= \"8P0D-6P2D\"", + "4": "= \"8P0D-5P3D\"", + "51": "= \"*EVEN_VLAN_UPLINK\"", + "52": "= \"*ODD_VLAN_UPLINK\"", + "53": "= \"*EVEN_VLAN_DOWNLIN\"", + "54": "= \"*ODD_VLAN_DOWNLINK\"", + "55": "= \"*LAG-1\"", + "56": "= \"*LAG-2\"" + }, + "4": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "51": "= 1", + "52": "= 1", + "53": "= 1", + "54": "= 1", + "55": "= 1", + "56": "= 1" + }, + "5": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2" + }, + "6": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "51": "= 2", + "52": "= 2", + "53": "= 2", + "54": "= 2", + "55": "= 2", + "56": "= 2" + } + } + }, + "2": { + "1": { + "2": { + "1": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "2": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "3": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "4": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "51": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "52": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "53": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "54": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "55": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "56": { + "0": "= 1", + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + } + }, + "3": { + "1": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "2": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 5", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "3": { + "0": "= 0", + "1": "= 1", + "2": "= 3", + "3": "= 3", + "4": "= 5", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "4": { + "0": "= 1", + "1": "= 1", + "2": "= 3", + "3": "= 3", + "4": "= 5", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "51": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "52": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "53": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "54": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "55": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "56": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + } + }, + "4": { + "1": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "2": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 4", + "6": "= 6", + "7": "= 7" + }, + "3": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 2", + "4": "= 4", + "5": "= 4", + "6": "= 6", + "7": "= 7" + }, + "4": { + "0": "= 0", + "1": "= 0", + "2": "= 2", + "3": "= 2", + "4": "= 4", + "5": "= 4", + "6": "= 6", + "7": "= 7" + }, + "51": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "52": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "53": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "54": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "55": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + }, + "56": { + "0": "= 0", + "1": "= 1", + "2": "= 2", + "3": "= 3", + "4": "= 4", + "5": "= 5", + "6": "= 6", + "7": "= 7" + } + } + } + }, + "5": { + "1": { + "2": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + } + } + }, + "6": { + "1": { + "2": { + "1": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "2": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "3": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "4": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "5": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "6": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "7": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + } + }, + "3": { + "1": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "2": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "3": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "4": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "5": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "6": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "7": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + } + }, + "4": { + "1": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "2": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "3": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "4": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "5": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "6": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "7": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + } + } + } + } + } + } + }, + "9": { + "1": { + "1": { + "1": { + "1": { + "2": { + "1": "= \"EVEN_VLAN_UPLINK\"", + "2": "= \"ODD_VLAN_UPLINK\"", + "3": "= \"EVEN_VLAN_DOWNLIN\"", + "4": "= \"ODD_VLAN_DOWNLINK\"", + "5": "= \"Management\"", + "6": "= \"LAG-1\"", + "7": "= \"LAG-2\"" + }, + "3": { + "1": "= \"\"", + "2": "= \"\"", + "3": "= \"\"", + "4": "= \"\"", + "5": "= \"\"", + "6": "= \"\"", + "7": "= \"\"" + }, + "4": { + "1": "= \"00 15 AD 47 3E 61 \"", + "2": "= \"00 15 AD 47 3E 62 \"", + "3": "= \"00 15 AD 47 3E 63 \"", + "4": "= \"00 15 AD 47 3E 64 \"", + "5": "= \"00 15 AD 47 3E 65 \"", + "6": "= \"00 15 AD 47 3E 61 \"", + "7": "= \"00 15 AD 47 3E 63 \"" + }, + "5": { + "1": "= .1.3.6.1.4.1.22420.1.1.10.1.1.1", + "2": "= .1.3.6.1.4.1.22420.1.1.10.1.1.2", + "3": "= .1.3.6.1.4.1.22420.1.1.10.1.1.3", + "4": "= .1.3.6.1.4.1.22420.1.1.10.1.1.4", + "5": "= .1.3.6.1.4.1.22420.1.1.10.1.1.5", + "6": "= .1.3.6.1.4.1.22420.1.1.10.1.1.6", + "7": "= .1.3.6.1.4.1.22420.1.1.10.1.1.7" + }, + "6": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "7": { + "1": "= 4096", + "2": "= 4096", + "3": "= 2000", + "4": "= 4096", + "5": "= 2000", + "6": "= 10240", + "7": "= 10240" + }, + "8": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 2", + "7": "= 2" + }, + "9": { + "1": "= 1000", + "2": "= 1000", + "3": "= 1000", + "4": "= 1000", + "5": "= 100", + "6": "= 10000", + "7": "= 10000" + }, + "10": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2" + }, + "11": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 2", + "7": "= 2" + }, + "12": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 2", + "6": "= 2", + "7": "= 2" + }, + "13": { + "1": "= \"00 00 00 E0 \"", + "2": "= \"00 00 00 EA \"", + "3": "= \"00 00 00 EA \"", + "4": "= \"00 00 00 E0 \"", + "5": "= \"00 00 00 CA \"", + "6": "= \"00 00 00 E0 \"", + "7": "= \"00 00 00 E0 \"" + }, + "14": { + "1": "= 2", + "2": "= 2", + "3": "= 2", + "4": "= 2" + } + } + } + }, + "2": { + "1": { + "1": { + "2": { + "1": "= 1000", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 100", + "6": "= 0", + "7": "= 0" + }, + "3": { + "1": "= 2", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 1", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 1", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 2", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 1", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 1", + "6": "= 0", + "7": "= 0" + }, + "7": { + "1": "= \"\"", + "2": "= \"\"", + "3": "= \"\"", + "4": "= \"00 00 00 E0 \"", + "5": "= \"00 00 00 CF \"", + "6": "= \"\"", + "7": "= \"\"" + }, + "8": { + "1": "= 1", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 1", + "6": "= 2", + "7": "= 2" + }, + "9": { + "1": "= \"00 00 02 \"", + "2": "= \"\"", + "3": "= \"\"", + "4": "= \"\"", + "5": "= \"00 00 80 \"", + "6": "= \"\"", + "7": "= \"\"" + }, + "10": { + "1": "= 2", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2", + "6": "= 0", + "7": "= 0" + }, + "11": { + "1": "= 2", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 1", + "6": "= 0", + "7": "= 0" + }, + "12": { + "1": "= 1", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2", + "6": "= 0", + "7": "= 0" + }, + "13": { + "1": "= 1", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2", + "6": "= 0", + "7": "= 0" + }, + "14": { + "1": "= 1", + "2": "= 2", + "3": "= 2", + "4": "= 2", + "5": "= 1", + "6": "= 2", + "7": "= 2" + } + } + } + }, + "3": { + "1": { + "1": { + "2": { + "1": "= \"FF FF FF FF \"", + "2": "= \"FF FF FF FF \"", + "3": "= \"FF FF FF FF \"", + "4": "= \"FF FF FF FF \"", + "5": "= \"FF FF FF FF \"", + "6": "= \"7F FF FF FF \"", + "7": "= \"7F FF FF FF \"" + }, + "3": { + "1": "= 15250077610", + "2": "= 110445216", + "3": "= 12089036710", + "4": "= 354824130", + "5": "= 1389916831", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 15250077610", + "2": "= 110445216", + "3": "= 12089036710", + "4": "= 354824130", + "5": "= 1389916831", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 20489450", + "2": "= 0", + "3": "= 12156384", + "4": "= 0", + "5": "= 8738407", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 1327125", + "2": "= 751328", + "3": "= 1854514", + "4": "= 2381370", + "5": "= 6", + "6": "= 0", + "7": "= 0" + }, + "7": { + "1": "= 64", + "2": "= 0", + "3": "= 24", + "4": "= 0", + "5": "= 558852", + "6": "= 0", + "7": "= 0" + }, + "8": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "9": { + "1": "= 20489655", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 8739318", + "6": "= 0", + "7": "= 0" + }, + "10": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "11": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "12": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "13": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "14": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "15": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "17": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "19": { + "1": "= 0", + "2": "= 0", + "3": "= 3630757", + "4": "= 0", + "5": "= 763909", + "6": "= 0", + "7": "= 0" + }, + "20": { + "1": "= 10311905", + "2": "= 0", + "3": "= 774602", + "4": "= 0", + "5": "= 6697154", + "6": "= 0", + "7": "= 0" + }, + "21": { + "1": "= 1829023", + "2": "= 751328", + "3": "= 2010683", + "4": "= 2381370", + "5": "= 835749", + "6": "= 0", + "7": "= 0" + }, + "22": { + "1": "= 2878", + "2": "= 0", + "3": "= 3635", + "4": "= 0", + "5": "= 765806", + "6": "= 0", + "7": "= 0" + }, + "23": { + "1": "= 23328", + "2": "= 0", + "3": "= 2148", + "4": "= 0", + "5": "= 110624", + "6": "= 0", + "7": "= 0" + }, + "24": { + "1": "= 9649475", + "2": "= 0", + "3": "= 7589097", + "4": "= 0", + "5": "= 53576", + "6": "= 0", + "7": "= 0" + }, + "25": { + "1": "= 30", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 70447", + "6": "= 0", + "7": "= 0" + }, + "26": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "27": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "28": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "29": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "30": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "31": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "32": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + } + } + }, + "2": { + "1": { + "2": { + "1": "= \"7F FF FF FF \"", + "2": "= \"7F FF FF FF \"", + "3": "= \"7F FF FF FF \"", + "4": "= \"7F FF FF FF \"", + "5": "= \"7F FF FF FF \"", + "6": "= \"7F FF FF FF \"", + "7": "= \"7F FF FF FF \"" + }, + "3": { + "1": "= 12813326425", + "2": "= 135053161", + "3": "= 15078973313", + "4": "= 314336220", + "5": "= 132731521314", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 12813326425", + "2": "= 135053161", + "3": "= 15078973313", + "4": "= 314336220", + "5": "= 132731521314", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "7": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "8": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "9": { + "1": "= 12685439", + "2": "= 0", + "3": "= 13188103", + "4": "= 0", + "5": "= 6717361", + "6": "= 0", + "7": "= 0" + }, + "10": { + "1": "= 1333629", + "2": "= 755094", + "3": "= 1854490", + "4": "= 2381335", + "5": "= 1059020007", + "6": "= 0", + "7": "= 0" + }, + "11": { + "1": "= 786060", + "2": "= 35", + "3": "= 64", + "4": "= 0", + "5": "= 291437231", + "6": "= 0", + "7": "= 0" + }, + "12": { + "1": "= 0", + "2": "= 0", + "3": "= 3292", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "13": { + "1": "= 13471464", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 1121596659", + "6": "= 0", + "7": "= 0" + }, + "14": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "15": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "17": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "19": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "20": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "21": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "22": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "23": { + "1": "= 976276", + "2": "= 42", + "3": "= 2010989", + "4": "= 0", + "5": "= 86506700", + "6": "= 0", + "7": "= 0" + }, + "24": { + "1": "= 4299190", + "2": "= 23", + "3": "= 524707", + "4": "= 0", + "5": "= 1211571089", + "6": "= 0", + "7": "= 0" + }, + "25": { + "1": "= 1491555", + "2": "= 755029", + "3": "= 2361587", + "4": "= 2381335", + "5": "= 37333757", + "6": "= 0", + "7": "= 0" + }, + "26": { + "1": "= 3686", + "2": "= 35", + "3": "= 3003", + "4": "= 0", + "5": "= 16931363", + "6": "= 0", + "7": "= 0" + }, + "27": { + "1": "= 2165", + "2": "= 0", + "3": "= 24786", + "4": "= 0", + "5": "= 2365546", + "6": "= 0", + "7": "= 0" + }, + "28": { + "1": "= 836135", + "2": "= 0", + "3": "= 10120877", + "4": "= 0", + "5": "= 2436877", + "6": "= 0", + "7": "= 0" + }, + "29": { + "1": "= 7196121", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 29267", + "6": "= 0", + "7": "= 0" + }, + "30": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "31": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "32": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "33": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 2", + "6": "= 0", + "7": "= 0" + }, + "34": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "35": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "36": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "37": { + "1": "= \"E0 \"", + "2": "= \"E0 \"", + "3": "= \"E0 \"", + "4": "= \"E0 \"", + "5": "= \"E0 \"", + "6": "= \"\"", + "7": "= \"\"" + } + } + }, + "3": { + "1": { + "2": { + "1": "= \"EVEN_VLAN_UPLINK\"", + "2": "= \"ODD_VLAN_UPLINK\"", + "3": "= \"EVEN_VLAN_DOWNLIN\"", + "4": "= \"ODD_VLAN_DOWNLINK\"", + "5": "= \"Management\"", + "6": "= \"LAG-1\"", + "7": "= \"LAG-2\"" + }, + "3": { + "1": "= 21816639", + "2": "= 751328", + "3": "= 14010922", + "4": "= 2381370", + "5": "= 9297715", + "6": "= 0", + "7": "= 0" + }, + "4": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "5": { + "1": "= 14805128", + "2": "= 755129", + "3": "= 15045949", + "4": "= 2381335", + "5": "= 1357175081", + "6": "= 0", + "7": "= 0" + }, + "6": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0" + }, + "7": { + "1": "= 15250077610", + "2": "= 110445216", + "3": "= 12089036710", + "4": "= 354824130", + "5": "= 1389962972", + "6": "= 0", + "7": "= 0" + }, + "8": { + "1": "= 12813326425", + "2": "= 135053161", + "3": "= 15078973313", + "4": "= 314336220", + "5": "= 132731573180", + "6": "= 0", + "7": "= 0" + } + } + } + }, + "4": { + "1": { + "0": "= 11" + } + } + } + }, + "11": { + "1": { + "1": { + "4": { + "0": "= 0" + }, + "5": { + "0": "= 0" + } + } + } + }, + "14": { + "1": { + "1": { + "1": { + "0": "= 294" + }, + "2": { + "0": "= 101" + } + }, + "2": { + "1": { + "1": { + "2": { + "1": "= .1.3.6.1.4.1.22420.2.2.3", + "2": "= .1.3.6.1.4.1.22420.2.2.4", + "3": "= .1.3.6.1.4.1.22420.2.1.10", + "4": "= .1.3.6.1.4.1.22420.2.1.11", + "5": "= .1.3.6.1.4.1.22420.2.9.1.1.1", + "6": "= .1.3.6.1.4.1.22420.2.3.1", + "7": "= .1.3.6.1.4.1.22420.2.6.1" + }, + "3": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 2", + "5": "= 1", + "6": "= 1", + "7": "= 1" + }, + "4": { + "1": "= \"Transaction Identifier for acdSmapL2FilterTable\"", + "2": "= \"Transaction Identifier for acdSmapIPv4FilterTable\"", + "3": "= \"Transaction Identifier for acdAlarmCfgTable\"", + "4": "= \"Transaction Identifier for acdAlarmStatusTable\"", + "5": "= \"Transaction Identifier for acdPortConfigTable\"", + "6": "= \"Transaction Identifier for acdPolicyTable\"", + "7": "= \"Transaction Identifier for acdRegulatorTable\"" + }, + "5": { + "1": "= 2", + "2": "= 1", + "3": "= 247", + "4": "= 101", + "5": "= 11", + "6": "= 5", + "7": "= 28" + } + } + } + }, + "3": { + "2": { + "0": "= 25213" + } + } + } + }, + "21": { + "1": { + "1": { + "1": { + "2": { + "1": "= \"PORT-1-1\"", + "2": "= \"PORT-1-2\"", + "3": "= \"PORT-1-3\"", + "4": "= \"PORT-1-4\"", + "5": "= \"PORT-1-5\"", + "6": "= \"PORT-1-6\"", + "7": "= \"PORT-2-1\"", + "8": "= \"PORT-2-2\"", + "9": "= \"PORT-2-3\"", + "10": "= \"PORT-2-4\"", + "11": "= \"PORT-2-5\"", + "12": "= \"PORT-2-6\"", + "13": "= \"PORT-3-1\"", + "14": "= \"PORT-3-2\"", + "15": "= \"PORT-3-3\"", + "16": "= \"PORT-3-4\"", + "17": "= \"PORT-3-5\"", + "18": "= \"PORT-3-6\"", + "19": "= \"PORT-4-1\"", + "20": "= \"PORT-4-2\"", + "21": "= \"PORT-4-3\"", + "22": "= \"PORT-4-4\"", + "23": "= \"PORT-4-5\"", + "24": "= \"PORT-4-6\"", + "25": "= \"LAG-1-1\"", + "26": "= \"LAG-1-2\"", + "27": "= \"LAG-1-3\"", + "28": "= \"LAG-1-4\"", + "29": "= \"LAG-1-5\"", + "30": "= \"LAG-1-6\"", + "31": "= \"LAG-2-1\"", + "32": "= \"LAG-2-2\"", + "33": "= \"LAG-2-3\"", + "34": "= \"LAG-2-4\"", + "35": "= \"LAG-2-5\"", + "36": "= \"LAG-2-6\"", + "37": "= \"USR-1\"", + "38": "= \"USR-2\"", + "39": "= \"USR-3\"", + "40": "= \"USR-4\"", + "41": "= \"USR-5\"", + "42": "= \"USR-6\"", + "43": "= \"USR-7\"", + "44": "= \"USR-8\"", + "45": "= \"USR-9\"", + "46": "= \"USR-10\"", + "47": "= \"USR-11\"", + "48": "= \"USR-12\"" + }, + "3": { + "1": "= 7014911", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 9214906", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "4": { + "1": "= 7308889290", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 7509661926", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "5": { + "1": "= 3019843", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 3663974", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "6": { + "1": "= 3125030629", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 4257941434", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "7": { + "1": "= 1429687", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 10441", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "8": { + "1": "= 2165339780", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 15588278", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "9": { + "1": "= 1063300", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 53507", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "10": { + "1": "= 1610461395", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 79915650", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "11": { + "1": "= 3700", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 2127", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "12": { + "1": "= 5602774", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 3177738", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "13": { + "1": "= 2769", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 11285", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "14": { + "1": "= 4193588", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 16857358", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "15": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "16": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "17": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "18": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "19": { + "1": "= 12527741", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 12942828", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "20": { + "1": "= 14209721094", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 11863107288", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "21": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + }, + "22": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0", + "9": "= 0", + "10": "= 0", + "11": "= 0", + "12": "= 0", + "13": "= 0", + "14": "= 0", + "15": "= 0", + "16": "= 0", + "17": "= 0", + "18": "= 0", + "19": "= 0", + "20": "= 0", + "21": "= 0", + "22": "= 0", + "23": "= 0", + "24": "= 0", + "25": "= 0", + "26": "= 0", + "27": "= 0", + "28": "= 0", + "29": "= 0", + "30": "= 0", + "31": "= 0", + "32": "= 0", + "33": "= 0", + "34": "= 0", + "35": "= 0", + "36": "= 0", + "37": "= 0", + "38": "= 0", + "39": "= 0", + "40": "= 0", + "41": "= 0", + "42": "= 0", + "43": "= 0", + "44": "= 0", + "45": "= 0", + "46": "= 0", + "47": "= 0", + "48": "= 0" + } + } + } + } + } + } + } + } + } + } + }, + "111": { + "2": { + "802": { + "1": { + "1": { + "8": { + "1": { + "5": { + "1": { + "0": "= 9" + }, + "2": { + "1": { + "2": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1" + }, + "3": { + "1": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 30 00 00", + "2": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 31 00 00", + "3": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 32 00 00", + "4": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 33 00 00", + "5": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 34 00 00", + "6": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 35 00 00", + "7": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 36 00 00", + "8": "= \"59 2E 31 37 33 31 20 6C 65 76 65 6C 20 37 00 00" + }, + "4": { + "1": "= 0", + "2": "= 1", + "3": "= 2", + "4": "= 3", + "5": "= 4", + "6": "= 5", + "7": "= 6", + "8": "= 7" + }, + "5": { + "1": "= 0", + "2": "= 0", + "3": "= 0", + "4": "= 0", + "5": "= 0", + "6": "= 0", + "7": "= 0", + "8": "= 0" + }, + "6": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1" + }, + "7": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1" + }, + "8": { + "1": "= 1", + "2": "= 1", + "3": "= 1", + "4": "= 1", + "5": "= 1", + "6": "= 1", + "7": "= 1", + "8": "= 1" + } + } + } + } + } + }, + "13": { + "1": { + "1": { + "9": { + "1": { + "2": { + "1": "= \"01 80 C2 00 00 0E \"" + } + } + } + }, + "2": { + "1": { + "0": "= 15:18:20:13.08" + }, + "2": { + "0": "= 28" + }, + "3": { + "0": "= 27" + }, + "4": { + "0": "= 0" + }, + "5": { + "0": "= 27" + }, + "6": { + "1": { + "3": { + "1": { + "1": "= 3011688" + }, + "2": { + "1": "= 3011688" + }, + "3": { + "1": "= 3011688" + }, + "4": { + "1": "= 3011688" + }, + "5": { + "1": "= 0" + } + }, + "4": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + } + } + } + }, + "7": { + "1": { + "3": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + } + }, + "4": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + } + }, + "5": { + "1": { + "1": "= 1333527" + }, + "2": { + "1": "= 754988" + }, + "3": { + "1": "= 1854347" + }, + "4": { + "1": "= 2381333" + }, + "5": { + "1": "= 0" + } + }, + "6": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 0" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + } + }, + "7": { + "1": { + "1": "= 0" + }, + "2": { + "1": "= 0" + }, + "3": { + "1": "= 12" + }, + "4": { + "1": "= 0" + }, + "5": { + "1": "= 0" + } + }, + "8": { + "1": { + "1": "= 12" + }, + "2": { + "1": "= 12" + }, + "3": { + "1": "= 2" + }, + "4": { + "1": "= 1" + }, + "5": { + "1": "= 0" + } + } + } + } + }, + "4": { + "1": { + "1": { + "5": { + "105317634": { + "1": { + "1": { + "2": "= 4" + } + } + } + }, + "6": { + "105317634": { + "1": { + "1": { + "2": "= \"9C E1 76 13 80 D9 \"" + } + } + } + }, + "7": { + "105317634": { + "1": { + "1": { + "2": "= 5" + } + } + } + }, + "8": { + "105317634": { + "1": { + "1": { + "2": "= \"GigabitEthernet0/0/0/0\"" + } + } + } + }, + "9": { + "105317634": { + "1": { + "1": { + "2": "= \"\"" + } + } + } + }, + "10": { + "105317634": { + "1": { + "1": { + "2": "= \"LNBT-NCS-55A2-001.gilarivertel.\"" + } + } + } + }, + "11": { + "105317634": { + "1": { + "1": { + "2": "= \" 7.5.2, NCS-5500\"" + } + } + } + }, + "14": { + "105317634": { + "1": { + "1": { + "2": "= 2" + } + } + } + }, + "15": { + "105317634": { + "1": { + "1": { + "2": "= 2" + } + } + } + } + } + }, + "2": { + "1": { + "3": { + "105317634": { + "1": { + "1": { + "2": { + "1": { + "4": { + "10": { + "10": { + "20": { + "160": "= 2" + } + } + } + } + }, + "2": { + "16": { + "38": { + "4": { + "87": { + "192": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "54": "= 2" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "4": { + "105317634": { + "1": { + "1": { + "2": { + "1": { + "4": { + "10": { + "10": { + "20": { + "160": "= 68" + } + } + } + } + }, + "2": { + "16": { + "38": { + "4": { + "87": { + "192": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "54": "= 68" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "5": { + "105317634": { + "1": { + "1": { + "2": { + "1": { + "4": { + "10": { + "10": { + "20": { + "160": "= .0.0.0" + } + } + } + } + }, + "2": { + "16": { + "38": { + "4": { + "87": { + "192": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "0": { + "54": "= .0.0.0" + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_walk.txt b/walks/10-13-60-102_2026-02-27_11-23-07_walk.txt new file mode 100644 index 0000000..7cc47fb --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-23-07_walk.txt @@ -0,0 +1,33724 @@ +.1.3.6.1.2.1.1.1.0 = AMN-1000-GT-S +.1.3.6.1.2.1.1.2.0 = .1.3.6.1.4.1.22420.1.1 +.1.3.6.1.2.1.1.3.0 = 0:0:41:41.00 +.1.3.6.1.2.1.1.4.0 = root +.1.3.6.1.2.1.1.5.0 = LABNID-NID12-DC-MTSO-Pri.alluvion.net +.1.3.6.1.2.1.1.6.0 = Unknown +.1.3.6.1.2.1.1.7.0 = 127 +.1.3.6.1.2.1.1.8.0 = 0:0:00:00.32 +.1.3.6.1.2.1.1.9.1.2.1 = .1.3.6.1.4.1.22420.2.1 +.1.3.6.1.2.1.1.9.1.2.2 = .1.3.6.1.4.1.22420.2.2 +.1.3.6.1.2.1.1.9.1.2.3 = .1.3.6.1.4.1.22420.2.3 +.1.3.6.1.2.1.1.9.1.2.4 = .1.3.6.1.4.1.22420.2.4 +.1.3.6.1.2.1.1.9.1.2.5 = .1.3.6.1.4.1.22420.2.5 +.1.3.6.1.2.1.1.9.1.2.6 = .1.3.6.1.4.1.22420.2.6 +.1.3.6.1.2.1.1.9.1.2.7 = .1.3.6.1.4.1.22420.2.7 +.1.3.6.1.2.1.1.9.1.2.8 = .1.3.6.1.4.1.22420.2.8 +.1.3.6.1.2.1.1.9.1.2.9 = .1.3.6.1.4.1.22420.2.9 +.1.3.6.1.2.1.1.9.1.2.10 = .1.3.6.1.4.1.22420.2.10 +.1.3.6.1.2.1.1.9.1.2.11 = .1.3.6.1.4.1.22420.2.11 +.1.3.6.1.2.1.1.9.1.2.12 = .1.3.6.1.4.1.22420.2.12 +.1.3.6.1.2.1.1.9.1.2.13 = .1.3.6.1.6.3.1 +.1.3.6.1.2.1.1.9.1.2.14 = .1.3.6.1.2.1.49 +.1.3.6.1.2.1.1.9.1.2.15 = .1.3.6.1.2.1.4 +.1.3.6.1.2.1.1.9.1.2.16 = .1.3.6.1.2.1.50 +.1.3.6.1.2.1.1.9.1.2.17 = .1.3.6.1.6.3.16.2.2.1 +.1.3.6.1.2.1.1.9.1.2.18 = .1.3.6.1.6.3.13.3.1.3 +.1.3.6.1.2.1.1.9.1.2.19 = .1.3.6.1.2.1.92 +.1.3.6.1.2.1.1.9.1.3.1 = The management information definitions for the ACD-ALARM-MIB. +.1.3.6.1.2.1.1.9.1.3.2 = The management information definitions for the ACD-FILTER-MIB. +.1.3.6.1.2.1.1.9.1.3.3 = The management information definitions for the ACD-POLICY-MIB. +.1.3.6.1.2.1.1.9.1.3.4 = The management information definitions for the ACD-SFP-MIB. +.1.3.6.1.2.1.1.9.1.3.5 = The management information definitions for the ACD-PAA-MIB. +.1.3.6.1.2.1.1.9.1.3.6 = The management information definitions for the ACD-REGULATOR-MIB. +.1.3.6.1.2.1.1.9.1.3.7 = The management information definitions for the ACD-CFM-MIB. +.1.3.6.1.2.1.1.9.1.3.8 = The management information definitions for the ACD-SMAP-MIB. +.1.3.6.1.2.1.1.9.1.3.9 = The management information definitions for the ACD-PORT-MIB. +.1.3.6.1.2.1.1.9.1.3.10 = The management information definitions for the ACD-SHAPER-MIB. +.1.3.6.1.2.1.1.9.1.3.11 = The management information definitions for the ACD-DISCOVER-MIB. +.1.3.6.1.2.1.1.9.1.3.12 = The management information definitions for the ACD-SA-MIB. +.1.3.6.1.2.1.1.9.1.3.13 = The MIB module for SNMPv2 entities +.1.3.6.1.2.1.1.9.1.3.14 = The MIB module for managing TCP implementations +.1.3.6.1.2.1.1.9.1.3.15 = The MIB module for managing IP and ICMP implementations +.1.3.6.1.2.1.1.9.1.3.16 = The MIB module for managing UDP implementations +.1.3.6.1.2.1.1.9.1.3.17 = View-based Access Control Model for SNMP. +.1.3.6.1.2.1.1.9.1.3.18 = The MIB modules for managing SNMP Notification, plus filtering. +.1.3.6.1.2.1.1.9.1.3.19 = The MIB module for logging SNMP Notifications. +.1.3.6.1.2.1.1.9.1.4.1 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.2 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.3 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.4 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.5 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.6 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.7 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.8 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.9 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.10 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.11 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.12 = 0:0:00:00.10 +.1.3.6.1.2.1.1.9.1.4.13 = 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.14 = 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.15 = 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.16 = 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.17 = 0:0:00:00.13 +.1.3.6.1.2.1.1.9.1.4.18 = 0:0:00:00.15 +.1.3.6.1.2.1.1.9.1.4.19 = 0:0:00:00.32 +.1.3.6.1.2.1.2.1.0 = 8 +.1.3.6.1.2.1.2.2.1.1.1 = 1 +.1.3.6.1.2.1.2.2.1.1.2 = 2 +.1.3.6.1.2.1.2.2.1.1.3 = 3 +.1.3.6.1.2.1.2.2.1.1.4 = 4 +.1.3.6.1.2.1.2.2.1.1.5 = 5 +.1.3.6.1.2.1.2.2.1.1.6 = 6 +.1.3.6.1.2.1.2.2.1.1.7 = 7 +.1.3.6.1.2.1.2.2.1.1.1003 = 1003 +.1.3.6.1.2.1.2.2.1.2.1 = EVEN_VLAN_UPLINK +.1.3.6.1.2.1.2.2.1.2.2 = ODD_VLAN_UPLINK +.1.3.6.1.2.1.2.2.1.2.3 = EVEN_VLAN_DOWNLIN +.1.3.6.1.2.1.2.2.1.2.4 = ODD_VLAN_DOWNLINK +.1.3.6.1.2.1.2.2.1.2.5 = Management +.1.3.6.1.2.1.2.2.1.2.6 = LAG-1 +.1.3.6.1.2.1.2.2.1.2.7 = LAG-2 +.1.3.6.1.2.1.2.2.1.2.1003 = VLAN_MGMT +.1.3.6.1.2.1.2.2.1.3.1 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.2 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.3 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.4 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.5 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.6 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.7 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.3.1003 = ethernetCsmacd +.1.3.6.1.2.1.2.2.1.4.1 = 4096 +.1.3.6.1.2.1.2.2.1.4.2 = 4096 +.1.3.6.1.2.1.2.2.1.4.3 = 2000 +.1.3.6.1.2.1.2.2.1.4.4 = 4096 +.1.3.6.1.2.1.2.2.1.4.5 = 2000 +.1.3.6.1.2.1.2.2.1.4.6 = 10240 +.1.3.6.1.2.1.2.2.1.4.7 = 10240 +.1.3.6.1.2.1.2.2.1.4.1003 = 2000 +.1.3.6.1.2.1.2.2.1.5.1 = 1000000000 +.1.3.6.1.2.1.2.2.1.5.2 = 0 +.1.3.6.1.2.1.2.2.1.5.3 = 0 +.1.3.6.1.2.1.2.2.1.5.4 = 0 +.1.3.6.1.2.1.2.2.1.5.5 = 100000000 +.1.3.6.1.2.1.2.2.1.5.6 = 0 +.1.3.6.1.2.1.2.2.1.5.7 = 0 +.1.3.6.1.2.1.2.2.1.5.1003 = 0 +.1.3.6.1.2.1.2.2.1.6.1 = 0:15:ad:47:3e:61 +.1.3.6.1.2.1.2.2.1.6.2 = 0:15:ad:47:3e:62 +.1.3.6.1.2.1.2.2.1.6.3 = 0:15:ad:47:3e:63 +.1.3.6.1.2.1.2.2.1.6.4 = 0:15:ad:47:3e:64 +.1.3.6.1.2.1.2.2.1.6.5 = 0:15:ad:47:3e:65 +.1.3.6.1.2.1.2.2.1.6.6 = 0:15:ad:47:3e:61 +.1.3.6.1.2.1.2.2.1.6.7 = 0:15:ad:47:3e:63 +.1.3.6.1.2.1.2.2.1.6.1003 = 0:15:ad:47:3e:65 +.1.3.6.1.2.1.2.2.1.7.1 = up +.1.3.6.1.2.1.2.2.1.7.2 = up +.1.3.6.1.2.1.2.2.1.7.3 = up +.1.3.6.1.2.1.2.2.1.7.4 = up +.1.3.6.1.2.1.2.2.1.7.5 = up +.1.3.6.1.2.1.2.2.1.7.6 = up +.1.3.6.1.2.1.2.2.1.7.7 = up +.1.3.6.1.2.1.2.2.1.7.1003 = up +.1.3.6.1.2.1.2.2.1.8.1 = up +.1.3.6.1.2.1.2.2.1.8.2 = down +.1.3.6.1.2.1.2.2.1.8.3 = down +.1.3.6.1.2.1.2.2.1.8.4 = down +.1.3.6.1.2.1.2.2.1.8.5 = up +.1.3.6.1.2.1.2.2.1.8.6 = down +.1.3.6.1.2.1.2.2.1.8.7 = down +.1.3.6.1.2.1.2.2.1.8.1003 = up +.1.3.6.1.2.1.2.2.1.9.1 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.2 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.3 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.4 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.5 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.6 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.7 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.9.1003 = 0:0:00:00.00 +.1.3.6.1.2.1.2.2.1.10.1 = 4223389593 +.1.3.6.1.2.1.2.2.1.10.2 = 135053161 +.1.3.6.1.2.1.2.2.1.10.3 = 2194071425 +.1.3.6.1.2.1.2.2.1.10.4 = 314336220 +.1.3.6.1.2.1.2.2.1.10.5 = 3877078151 +.1.3.6.1.2.1.2.2.1.10.6 = 0 +.1.3.6.1.2.1.2.2.1.10.7 = 0 +.1.3.6.1.2.1.2.2.1.10.1003 = 0 +.1.3.6.1.2.1.2.2.1.11.1 = 12685439 +.1.3.6.1.2.1.2.2.1.11.2 = 0 +.1.3.6.1.2.1.2.2.1.11.3 = 13188103 +.1.3.6.1.2.1.2.2.1.11.4 = 0 +.1.3.6.1.2.1.2.2.1.11.5 = 6684985 +.1.3.6.1.2.1.2.2.1.11.6 = 0 +.1.3.6.1.2.1.2.2.1.11.7 = 0 +.1.3.6.1.2.1.2.2.1.11.1003 = 0 +.1.3.6.1.2.1.2.2.1.12.1 = 2119675 +.1.3.6.1.2.1.2.2.1.12.2 = 755129 +.1.3.6.1.2.1.2.2.1.12.3 = 1854554 +.1.3.6.1.2.1.2.2.1.12.4 = 2381335 +.1.3.6.1.2.1.2.2.1.12.5 = 1350437934 +.1.3.6.1.2.1.2.2.1.12.6 = 0 +.1.3.6.1.2.1.2.2.1.12.7 = 0 +.1.3.6.1.2.1.2.2.1.12.1003 = 0 +.1.3.6.1.2.1.2.2.1.13.1 = 0 +.1.3.6.1.2.1.2.2.1.13.2 = 0 +.1.3.6.1.2.1.2.2.1.13.3 = 0 +.1.3.6.1.2.1.2.2.1.13.4 = 0 +.1.3.6.1.2.1.2.2.1.13.5 = 0 +.1.3.6.1.2.1.2.2.1.13.6 = 0 +.1.3.6.1.2.1.2.2.1.13.7 = 0 +.1.3.6.1.2.1.2.2.1.13.1003 = 0 +.1.3.6.1.2.1.2.2.1.14.1 = 0 +.1.3.6.1.2.1.2.2.1.14.2 = 0 +.1.3.6.1.2.1.2.2.1.14.3 = 0 +.1.3.6.1.2.1.2.2.1.14.4 = 0 +.1.3.6.1.2.1.2.2.1.14.5 = 0 +.1.3.6.1.2.1.2.2.1.14.6 = 0 +.1.3.6.1.2.1.2.2.1.14.7 = 0 +.1.3.6.1.2.1.2.2.1.14.1003 = 0 +.1.3.6.1.2.1.2.2.1.15.1 = 0 +.1.3.6.1.2.1.2.2.1.15.2 = 0 +.1.3.6.1.2.1.2.2.1.15.3 = 0 +.1.3.6.1.2.1.2.2.1.15.4 = 0 +.1.3.6.1.2.1.2.2.1.15.5 = 0 +.1.3.6.1.2.1.2.2.1.15.6 = 0 +.1.3.6.1.2.1.2.2.1.15.7 = 0 +.1.3.6.1.2.1.2.2.1.15.1003 = 0 +.1.3.6.1.2.1.2.2.1.16.1 = 2365165170 +.1.3.6.1.2.1.2.2.1.16.2 = 110445216 +.1.3.6.1.2.1.2.2.1.16.3 = 3499102118 +.1.3.6.1.2.1.2.2.1.16.4 = 354824130 +.1.3.6.1.2.1.2.2.1.16.5 = 1386639353 +.1.3.6.1.2.1.2.2.1.16.6 = 0 +.1.3.6.1.2.1.2.2.1.16.7 = 0 +.1.3.6.1.2.1.2.2.1.16.1003 = 0 +.1.3.6.1.2.1.2.2.1.17.1 = 20489370 +.1.3.6.1.2.1.2.2.1.17.2 = 0 +.1.3.6.1.2.1.2.2.1.17.3 = 12156384 +.1.3.6.1.2.1.2.2.1.17.4 = 0 +.1.3.6.1.2.1.2.2.1.17.5 = 8706162 +.1.3.6.1.2.1.2.2.1.17.6 = 0 +.1.3.6.1.2.1.2.2.1.17.7 = 0 +.1.3.6.1.2.1.2.2.1.17.1003 = 0 +.1.3.6.1.2.1.2.2.1.18.1 = 1327175 +.1.3.6.1.2.1.2.2.1.18.2 = 751328 +.1.3.6.1.2.1.2.2.1.18.3 = 1854538 +.1.3.6.1.2.1.2.2.1.18.4 = 2381370 +.1.3.6.1.2.1.2.2.1.18.5 = 558852 +.1.3.6.1.2.1.2.2.1.18.6 = 0 +.1.3.6.1.2.1.2.2.1.18.7 = 0 +.1.3.6.1.2.1.2.2.1.18.1003 = 0 +.1.3.6.1.2.1.2.2.1.19.1 = 0 +.1.3.6.1.2.1.2.2.1.19.2 = 0 +.1.3.6.1.2.1.2.2.1.19.3 = 0 +.1.3.6.1.2.1.2.2.1.19.4 = 0 +.1.3.6.1.2.1.2.2.1.19.5 = 0 +.1.3.6.1.2.1.2.2.1.19.6 = 0 +.1.3.6.1.2.1.2.2.1.19.7 = 0 +.1.3.6.1.2.1.2.2.1.19.1003 = 0 +.1.3.6.1.2.1.2.2.1.20.1 = 0 +.1.3.6.1.2.1.2.2.1.20.2 = 0 +.1.3.6.1.2.1.2.2.1.20.3 = 0 +.1.3.6.1.2.1.2.2.1.20.4 = 0 +.1.3.6.1.2.1.2.2.1.20.5 = 0 +.1.3.6.1.2.1.2.2.1.20.6 = 0 +.1.3.6.1.2.1.2.2.1.20.7 = 0 +.1.3.6.1.2.1.2.2.1.20.1003 = 0 +.1.3.6.1.2.1.2.2.1.21.1 = 0 +.1.3.6.1.2.1.2.2.1.21.2 = 0 +.1.3.6.1.2.1.2.2.1.21.3 = 0 +.1.3.6.1.2.1.2.2.1.21.4 = 0 +.1.3.6.1.2.1.2.2.1.21.5 = 0 +.1.3.6.1.2.1.2.2.1.21.6 = 0 +.1.3.6.1.2.1.2.2.1.21.7 = 0 +.1.3.6.1.2.1.2.2.1.21.1003 = 0 +.1.3.6.1.2.1.2.2.1.22.1 = .0.0 +.1.3.6.1.2.1.2.2.1.22.2 = .0.0 +.1.3.6.1.2.1.2.2.1.22.3 = .0.0 +.1.3.6.1.2.1.2.2.1.22.4 = .0.0 +.1.3.6.1.2.1.2.2.1.22.5 = .0.0 +.1.3.6.1.2.1.2.2.1.22.6 = .0.0 +.1.3.6.1.2.1.2.2.1.22.7 = .0.0 +.1.3.6.1.2.1.2.2.1.22.1003 = .0.0 +.1.3.6.1.2.1.4.1.0 = notForwarding +.1.3.6.1.2.1.4.2.0 = 64 +.1.3.6.1.2.1.4.3.0 = 11758115 +.1.3.6.1.2.1.4.4.0 = 0 +.1.3.6.1.2.1.4.5.0 = 25342 +.1.3.6.1.2.1.4.6.0 = 0 +.1.3.6.1.2.1.4.7.0 = 1346100 +.1.3.6.1.2.1.4.8.0 = 0 +.1.3.6.1.2.1.4.9.0 = 10386667 +.1.3.6.1.2.1.4.10.0 = 24102802 +.1.3.6.1.2.1.4.11.0 = 0 +.1.3.6.1.2.1.4.12.0 = 0 +.1.3.6.1.2.1.4.13.0 = 30 seconds +.1.3.6.1.2.1.4.14.0 = 10 +.1.3.6.1.2.1.4.15.0 = 4 +.1.3.6.1.2.1.4.16.0 = 0 +.1.3.6.1.2.1.4.17.0 = 8526 +.1.3.6.1.2.1.4.18.0 = 0 +.1.3.6.1.2.1.4.19.0 = 17052 +.1.3.6.1.2.1.4.20.1.1.10.13.60.102 = 10.13.60.102 +.1.3.6.1.2.1.4.20.1.1.127.0.0.1 = 127.0.0.1 +.1.3.6.1.2.1.4.20.1.1.192.168.1.254 = 192.168.1.254 +.1.3.6.1.2.1.4.20.1.2.10.13.60.102 = 15 +.1.3.6.1.2.1.4.20.1.2.127.0.0.1 = 1 +.1.3.6.1.2.1.4.20.1.2.192.168.1.254 = 10 +.1.3.6.1.2.1.4.20.1.3.10.13.60.102 = 255.255.255.0 +.1.3.6.1.2.1.4.20.1.3.127.0.0.1 = 255.0.0.0 +.1.3.6.1.2.1.4.20.1.3.192.168.1.254 = 255.255.255.0 +.1.3.6.1.2.1.4.20.1.4.10.13.60.102 = 1 +.1.3.6.1.2.1.4.20.1.4.127.0.0.1 = 0 +.1.3.6.1.2.1.4.20.1.4.192.168.1.254 = 1 +.1.3.6.1.2.1.4.21.1.1.0.0.0.0 = 0.0.0.0 +.1.3.6.1.2.1.4.21.1.1.10.13.60.0 = 10.13.60.0 +.1.3.6.1.2.1.4.21.1.1.127.0.0.0 = 127.0.0.0 +.1.3.6.1.2.1.4.21.1.1.192.168.1.0 = 192.168.1.0 +.1.3.6.1.2.1.4.21.1.2.0.0.0.0 = 15 +.1.3.6.1.2.1.4.21.1.2.10.13.60.0 = 15 +.1.3.6.1.2.1.4.21.1.2.127.0.0.0 = 1 +.1.3.6.1.2.1.4.21.1.2.192.168.1.0 = 10 +.1.3.6.1.2.1.4.21.1.3.0.0.0.0 = 1 +.1.3.6.1.2.1.4.21.1.3.10.13.60.0 = 0 +.1.3.6.1.2.1.4.21.1.3.127.0.0.0 = 0 +.1.3.6.1.2.1.4.21.1.3.192.168.1.0 = 0 +.1.3.6.1.2.1.4.21.1.7.0.0.0.0 = 10.13.60.1 +.1.3.6.1.2.1.4.21.1.7.10.13.60.0 = 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.127.0.0.0 = 0.0.0.0 +.1.3.6.1.2.1.4.21.1.7.192.168.1.0 = 0.0.0.0 +.1.3.6.1.2.1.4.21.1.8.0.0.0.0 = 4 +.1.3.6.1.2.1.4.21.1.8.10.13.60.0 = 3 +.1.3.6.1.2.1.4.21.1.8.127.0.0.0 = 3 +.1.3.6.1.2.1.4.21.1.8.192.168.1.0 = 3 +.1.3.6.1.2.1.4.21.1.9.0.0.0.0 = 2 +.1.3.6.1.2.1.4.21.1.9.10.13.60.0 = 2 +.1.3.6.1.2.1.4.21.1.9.127.0.0.0 = 2 +.1.3.6.1.2.1.4.21.1.9.192.168.1.0 = 2 +.1.3.6.1.2.1.4.21.1.11.0.0.0.0 = 0.0.0.0 +.1.3.6.1.2.1.4.21.1.11.10.13.60.0 = 255.255.255.0 +.1.3.6.1.2.1.4.21.1.11.127.0.0.0 = 255.0.0.0 +.1.3.6.1.2.1.4.21.1.11.192.168.1.0 = 255.255.255.0 +.1.3.6.1.2.1.4.21.1.13.0.0.0.0 = .0.0 +.1.3.6.1.2.1.4.21.1.13.10.13.60.0 = .0.0 +.1.3.6.1.2.1.4.21.1.13.127.0.0.0 = .0.0 +.1.3.6.1.2.1.4.21.1.13.192.168.1.0 = .0.0 +.1.3.6.1.2.1.4.22.1.1.15.10.13.60.1 = 15 +.1.3.6.1.2.1.4.22.1.2.15.10.13.60.1 = b4:c:25:e0:40:6a +.1.3.6.1.2.1.4.22.1.3.15.10.13.60.1 = 10.13.60.1 +.1.3.6.1.2.1.4.22.1.4.15.10.13.60.1 = dynamic +.1.3.6.1.2.1.4.23.0 = 0 +.1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.13.60.1 = 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.10.13.60.0.255.255.255.0.0.0.0.0.0 = 10.13.60.0 +.1.3.6.1.2.1.4.24.4.1.1.127.0.0.0.255.0.0.0.0.0.0.0.0 = 127.0.0.0 +.1.3.6.1.2.1.4.24.4.1.1.192.168.1.0.255.255.255.0.0.0.0.0.0 = 192.168.1.0 +.1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.13.60.1 = 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.10.13.60.0.255.255.255.0.0.0.0.0.0 = 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.2.127.0.0.0.255.0.0.0.0.0.0.0.0 = 255.0.0.0 +.1.3.6.1.2.1.4.24.4.1.2.192.168.1.0.255.255.255.0.0.0.0.0.0 = 255.255.255.0 +.1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.13.60.1 = 0 +.1.3.6.1.2.1.4.24.4.1.3.10.13.60.0.255.255.255.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.3.127.0.0.0.255.0.0.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.3.192.168.1.0.255.255.255.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.13.60.1 = 10.13.60.1 +.1.3.6.1.2.1.4.24.4.1.4.10.13.60.0.255.255.255.0.0.0.0.0.0 = 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.127.0.0.0.255.0.0.0.0.0.0.0.0 = 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.4.192.168.1.0.255.255.255.0.0.0.0.0.0 = 0.0.0.0 +.1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.13.60.1 = 15 +.1.3.6.1.2.1.4.24.4.1.5.10.13.60.0.255.255.255.0.0.0.0.0.0 = 15 +.1.3.6.1.2.1.4.24.4.1.5.127.0.0.0.255.0.0.0.0.0.0.0.0 = 1 +.1.3.6.1.2.1.4.24.4.1.5.192.168.1.0.255.255.255.0.0.0.0.0.0 = 10 +.1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.13.60.1 = remote +.1.3.6.1.2.1.4.24.4.1.6.10.13.60.0.255.255.255.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.4.1.6.127.0.0.0.255.0.0.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.4.1.6.192.168.1.0.255.255.255.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.13.60.1 = local +.1.3.6.1.2.1.4.24.4.1.7.10.13.60.0.255.255.255.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.4.1.7.127.0.0.0.255.0.0.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.4.1.7.192.168.1.0.255.255.255.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.13.60.1 = .0.0 +.1.3.6.1.2.1.4.24.4.1.9.10.13.60.0.255.255.255.0.0.0.0.0.0 = .0.0 +.1.3.6.1.2.1.4.24.4.1.9.127.0.0.0.255.0.0.0.0.0.0.0.0 = .0.0 +.1.3.6.1.2.1.4.24.4.1.9.192.168.1.0.255.255.255.0.0.0.0.0.0 = .0.0 +.1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.13.60.1 = 0 +.1.3.6.1.2.1.4.24.4.1.10.10.13.60.0.255.255.255.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.10.127.0.0.0.255.0.0.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.10.192.168.1.0.255.255.255.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.13.60.1 = 0 +.1.3.6.1.2.1.4.24.4.1.11.10.13.60.0.255.255.255.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.11.127.0.0.0.255.0.0.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.11.192.168.1.0.255.255.255.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.4.1.12.10.13.60.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.12.127.0.0.0.255.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.12.192.168.1.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.4.1.13.10.13.60.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.13.127.0.0.0.255.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.13.192.168.1.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.4.1.14.10.13.60.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.14.127.0.0.0.255.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.14.192.168.1.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.4.1.15.10.13.60.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.15.127.0.0.0.255.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.15.192.168.1.0.255.255.255.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.13.60.1 = active +.1.3.6.1.2.1.4.24.4.1.16.10.13.60.0.255.255.255.0.0.0.0.0.0 = active +.1.3.6.1.2.1.4.24.4.1.16.127.0.0.0.255.0.0.0.0.0.0.0.0 = active +.1.3.6.1.2.1.4.24.4.1.16.192.168.1.0.255.255.255.0.0.0.0.0.0 = active +.1.3.6.1.2.1.4.24.6.0 = 5 +.1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = 15 +.1.3.6.1.2.1.4.24.7.1.7.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = 15 +.1.3.6.1.2.1.4.24.7.1.7.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = 1 +.1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = 10 +.1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = 5 +.1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = remote +.1.3.6.1.2.1.4.24.7.1.8.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.8.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = local +.1.3.6.1.2.1.4.24.7.1.9.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.9.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = local +.1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = 0 +.1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = 256 +.1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = -1 +.1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1 = active +.1.3.6.1.2.1.4.24.7.1.17.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0 = active +.1.3.6.1.2.1.4.24.7.1.17.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0 = active +.1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0 = active +.1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = active +.1.3.6.1.2.1.4.25.0 = notForwarding +.1.3.6.1.2.1.4.26.0 = 64 +.1.3.6.1.2.1.4.31.1.1.3.1 = 11757840 +.1.3.6.1.2.1.4.31.1.1.3.2 = 155258538 +.1.3.6.1.2.1.4.31.1.1.4.1 = 11757840 +.1.3.6.1.2.1.4.31.1.1.4.2 = 155258538 +.1.3.6.1.2.1.4.31.1.1.6.1 = 0 +.1.3.6.1.2.1.4.31.1.1.6.2 = 0 +.1.3.6.1.2.1.4.31.1.1.7.1 = 0 +.1.3.6.1.2.1.4.31.1.1.7.2 = 0 +.1.3.6.1.2.1.4.31.1.1.9.1 = 25342 +.1.3.6.1.2.1.4.31.1.1.9.2 = 0 +.1.3.6.1.2.1.4.31.1.1.10.1 = 1346100 +.1.3.6.1.2.1.4.31.1.1.10.2 = 0 +.1.3.6.1.2.1.4.31.1.1.12.1 = 0 +.1.3.6.1.2.1.4.31.1.1.12.2 = 0 +.1.3.6.1.2.1.4.31.1.1.13.1 = 0 +.1.3.6.1.2.1.4.31.1.1.13.2 = 0 +.1.3.6.1.2.1.4.31.1.1.14.1 = 10 +.1.3.6.1.2.1.4.31.1.1.14.2 = 0 +.1.3.6.1.2.1.4.31.1.1.15.1 = 4 +.1.3.6.1.2.1.4.31.1.1.15.2 = 0 +.1.3.6.1.2.1.4.31.1.1.16.1 = 0 +.1.3.6.1.2.1.4.31.1.1.16.2 = 0 +.1.3.6.1.2.1.4.31.1.1.17.1 = 0 +.1.3.6.1.2.1.4.31.1.1.17.2 = 5081439 +.1.3.6.1.2.1.4.31.1.1.18.1 = 10386392 +.1.3.6.1.2.1.4.31.1.1.18.2 = 44484 +.1.3.6.1.2.1.4.31.1.1.19.1 = 10386392 +.1.3.6.1.2.1.4.31.1.1.19.2 = 44484 +.1.3.6.1.2.1.4.31.1.1.20.1 = 24102520 +.1.3.6.1.2.1.4.31.1.1.20.2 = 6 +.1.3.6.1.2.1.4.31.1.1.21.1 = 24102520 +.1.3.6.1.2.1.4.31.1.1.21.2 = 6 +.1.3.6.1.2.1.4.31.1.1.22.1 = 0 +.1.3.6.1.2.1.4.31.1.1.22.2 = 0 +.1.3.6.1.2.1.4.31.1.1.24.1 = 0 +.1.3.6.1.2.1.4.31.1.1.24.2 = 0 +.1.3.6.1.2.1.4.31.1.1.25.1 = 0 +.1.3.6.1.2.1.4.31.1.1.25.2 = 0 +.1.3.6.1.2.1.4.31.1.1.28.1 = 0 +.1.3.6.1.2.1.4.31.1.1.28.2 = 0 +.1.3.6.1.2.1.4.31.1.1.29.1 = 17052 +.1.3.6.1.2.1.4.31.1.1.29.2 = 0 +.1.3.6.1.2.1.4.31.1.1.46.1 = 0:0:00:00.00 +.1.3.6.1.2.1.4.31.1.1.46.2 = 0:0:00:00.00 +.1.3.6.1.2.1.4.31.1.1.47.1 = 30000 milli-seconds +.1.3.6.1.2.1.4.31.1.1.47.2 = 30000 milli-seconds +.1.3.6.1.2.1.4.34.1.3.1.4.10.13.60.102 = 15 +.1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1 = 1 +.1.3.6.1.2.1.4.34.1.3.1.4.192.168.1.254 = 10 +.1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 1 +.1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = 10 +.1.3.6.1.2.1.4.34.1.4.1.4.10.13.60.102 = unicast +.1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1 = unicast +.1.3.6.1.2.1.4.34.1.4.1.4.192.168.1.254 = unicast +.1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = unicast +.1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = unicast +.1.3.6.1.2.1.4.34.1.5.1.4.10.13.60.102 = .1.3.6.1.2.1.4.32.1.5.15.1.4.10.13.60.0.24 +.1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1 = .1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 +.1.3.6.1.2.1.4.34.1.5.1.4.192.168.1.254 = .1.3.6.1.2.1.4.32.1.5.10.1.4.192.168.1.0.24 +.1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = .1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +.1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = .1.3.6.1.2.1.4.32.1.5.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +.1.3.6.1.2.1.4.34.1.6.1.4.10.13.60.102 = manual +.1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1 = manual +.1.3.6.1.2.1.4.34.1.6.1.4.192.168.1.254 = manual +.1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = manual +.1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = linklayer +.1.3.6.1.2.1.4.34.1.7.1.4.10.13.60.102 = preferred +.1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1 = preferred +.1.3.6.1.2.1.4.34.1.7.1.4.192.168.1.254 = preferred +.1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = preferred +.1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = preferred +.1.3.6.1.2.1.4.34.1.8.1.4.10.13.60.102 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.1.4.192.168.1.254 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.1.4.10.13.60.102 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.1.4.192.168.1.254 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = 0:0:00:00.00 +.1.3.6.1.2.1.4.34.1.10.1.4.10.13.60.102 = active +.1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1 = active +.1.3.6.1.2.1.4.34.1.10.1.4.192.168.1.254 = active +.1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = active +.1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = active +.1.3.6.1.2.1.4.34.1.11.1.4.10.13.60.102 = volatile +.1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1 = volatile +.1.3.6.1.2.1.4.34.1.11.1.4.192.168.1.254 = volatile +.1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = volatile +.1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101 = volatile +.1.3.6.1.2.1.4.35.1.4.15.1.4.10.13.60.1 = b4:c:25:e0:40:6a +.1.3.6.1.2.1.4.35.1.6.15.1.4.10.13.60.1 = dynamic +.1.3.6.1.2.1.4.35.1.7.15.1.4.10.13.60.1 = reachable +.1.3.6.1.2.1.4.35.1.8.15.1.4.10.13.60.1 = active +.1.3.6.1.2.1.10.7.2.1.1.1 = 1 +.1.3.6.1.2.1.10.7.2.1.1.2 = 2 +.1.3.6.1.2.1.10.7.2.1.1.3 = 3 +.1.3.6.1.2.1.10.7.2.1.1.4 = 4 +.1.3.6.1.2.1.10.7.2.1.1.5 = 5 +.1.3.6.1.2.1.10.7.2.1.1.6 = 6 +.1.3.6.1.2.1.10.7.2.1.1.7 = 7 +.1.3.6.1.2.1.10.7.2.1.2.1 = 0 +.1.3.6.1.2.1.10.7.2.1.2.2 = 0 +.1.3.6.1.2.1.10.7.2.1.2.3 = 0 +.1.3.6.1.2.1.10.7.2.1.2.4 = 0 +.1.3.6.1.2.1.10.7.2.1.2.5 = 0 +.1.3.6.1.2.1.10.7.2.1.2.6 = 0 +.1.3.6.1.2.1.10.7.2.1.2.7 = 0 +.1.3.6.1.2.1.10.7.2.1.3.1 = 0 +.1.3.6.1.2.1.10.7.2.1.3.2 = 0 +.1.3.6.1.2.1.10.7.2.1.3.3 = 0 +.1.3.6.1.2.1.10.7.2.1.3.4 = 0 +.1.3.6.1.2.1.10.7.2.1.3.5 = 0 +.1.3.6.1.2.1.10.7.2.1.3.6 = 0 +.1.3.6.1.2.1.10.7.2.1.3.7 = 0 +.1.3.6.1.2.1.10.7.2.1.4.1 = 0 +.1.3.6.1.2.1.10.7.2.1.4.2 = 0 +.1.3.6.1.2.1.10.7.2.1.4.3 = 0 +.1.3.6.1.2.1.10.7.2.1.4.4 = 0 +.1.3.6.1.2.1.10.7.2.1.4.5 = 0 +.1.3.6.1.2.1.10.7.2.1.4.6 = 0 +.1.3.6.1.2.1.10.7.2.1.4.7 = 0 +.1.3.6.1.2.1.10.7.2.1.5.1 = 0 +.1.3.6.1.2.1.10.7.2.1.5.2 = 0 +.1.3.6.1.2.1.10.7.2.1.5.3 = 0 +.1.3.6.1.2.1.10.7.2.1.5.4 = 0 +.1.3.6.1.2.1.10.7.2.1.5.5 = 0 +.1.3.6.1.2.1.10.7.2.1.5.6 = 0 +.1.3.6.1.2.1.10.7.2.1.5.7 = 0 +.1.3.6.1.2.1.10.7.2.1.6.1 = 0 +.1.3.6.1.2.1.10.7.2.1.6.2 = 0 +.1.3.6.1.2.1.10.7.2.1.6.3 = 0 +.1.3.6.1.2.1.10.7.2.1.6.4 = 0 +.1.3.6.1.2.1.10.7.2.1.6.5 = 0 +.1.3.6.1.2.1.10.7.2.1.6.6 = 0 +.1.3.6.1.2.1.10.7.2.1.6.7 = 0 +.1.3.6.1.2.1.10.7.2.1.7.1 = 0 +.1.3.6.1.2.1.10.7.2.1.7.2 = 0 +.1.3.6.1.2.1.10.7.2.1.7.3 = 0 +.1.3.6.1.2.1.10.7.2.1.7.4 = 0 +.1.3.6.1.2.1.10.7.2.1.7.5 = 0 +.1.3.6.1.2.1.10.7.2.1.7.6 = 0 +.1.3.6.1.2.1.10.7.2.1.7.7 = 0 +.1.3.6.1.2.1.10.7.2.1.8.1 = 0 +.1.3.6.1.2.1.10.7.2.1.8.2 = 0 +.1.3.6.1.2.1.10.7.2.1.8.3 = 0 +.1.3.6.1.2.1.10.7.2.1.8.4 = 0 +.1.3.6.1.2.1.10.7.2.1.8.5 = 0 +.1.3.6.1.2.1.10.7.2.1.8.6 = 0 +.1.3.6.1.2.1.10.7.2.1.8.7 = 0 +.1.3.6.1.2.1.10.7.2.1.9.1 = 0 +.1.3.6.1.2.1.10.7.2.1.9.2 = 0 +.1.3.6.1.2.1.10.7.2.1.9.3 = 0 +.1.3.6.1.2.1.10.7.2.1.9.4 = 0 +.1.3.6.1.2.1.10.7.2.1.9.5 = 0 +.1.3.6.1.2.1.10.7.2.1.9.6 = 0 +.1.3.6.1.2.1.10.7.2.1.9.7 = 0 +.1.3.6.1.2.1.10.7.2.1.10.1 = 0 +.1.3.6.1.2.1.10.7.2.1.10.2 = 0 +.1.3.6.1.2.1.10.7.2.1.10.3 = 0 +.1.3.6.1.2.1.10.7.2.1.10.4 = 0 +.1.3.6.1.2.1.10.7.2.1.10.5 = 0 +.1.3.6.1.2.1.10.7.2.1.10.6 = 0 +.1.3.6.1.2.1.10.7.2.1.10.7 = 0 +.1.3.6.1.2.1.10.7.2.1.11.1 = 0 +.1.3.6.1.2.1.10.7.2.1.11.2 = 0 +.1.3.6.1.2.1.10.7.2.1.11.3 = 0 +.1.3.6.1.2.1.10.7.2.1.11.4 = 0 +.1.3.6.1.2.1.10.7.2.1.11.5 = 0 +.1.3.6.1.2.1.10.7.2.1.11.6 = 0 +.1.3.6.1.2.1.10.7.2.1.11.7 = 0 +.1.3.6.1.2.1.10.7.2.1.13.1 = 0 +.1.3.6.1.2.1.10.7.2.1.13.2 = 0 +.1.3.6.1.2.1.10.7.2.1.13.3 = 0 +.1.3.6.1.2.1.10.7.2.1.13.4 = 0 +.1.3.6.1.2.1.10.7.2.1.13.5 = 0 +.1.3.6.1.2.1.10.7.2.1.13.6 = 0 +.1.3.6.1.2.1.10.7.2.1.13.7 = 0 +.1.3.6.1.2.1.10.7.2.1.16.1 = 0 +.1.3.6.1.2.1.10.7.2.1.16.2 = 0 +.1.3.6.1.2.1.10.7.2.1.16.3 = 0 +.1.3.6.1.2.1.10.7.2.1.16.4 = 0 +.1.3.6.1.2.1.10.7.2.1.16.5 = 0 +.1.3.6.1.2.1.10.7.2.1.16.6 = 0 +.1.3.6.1.2.1.10.7.2.1.16.7 = 0 +.1.3.6.1.2.1.10.7.2.1.17.1 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.2 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.3 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.4 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.5 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.6 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.17.7 = .0.0.0 +.1.3.6.1.2.1.10.7.2.1.18.1 = 0 +.1.3.6.1.2.1.10.7.2.1.18.2 = 0 +.1.3.6.1.2.1.10.7.2.1.18.3 = 0 +.1.3.6.1.2.1.10.7.2.1.18.4 = 0 +.1.3.6.1.2.1.10.7.2.1.18.5 = 0 +.1.3.6.1.2.1.10.7.2.1.18.6 = 0 +.1.3.6.1.2.1.10.7.2.1.18.7 = 0 +.1.3.6.1.2.1.10.7.2.1.19.1 = 3 +.1.3.6.1.2.1.10.7.2.1.19.2 = 3 +.1.3.6.1.2.1.10.7.2.1.19.3 = 3 +.1.3.6.1.2.1.10.7.2.1.19.4 = 3 +.1.3.6.1.2.1.10.7.2.1.19.5 = 3 +.1.3.6.1.2.1.10.7.2.1.19.6 = 2 +.1.3.6.1.2.1.10.7.2.1.19.7 = 2 +.1.3.6.1.2.1.10.7.2.1.20.1 = 2 +.1.3.6.1.2.1.10.7.2.1.20.2 = 2 +.1.3.6.1.2.1.10.7.2.1.20.3 = 2 +.1.3.6.1.2.1.10.7.2.1.20.4 = 2 +.1.3.6.1.2.1.10.7.2.1.20.5 = 2 +.1.3.6.1.2.1.10.7.2.1.20.6 = 2 +.1.3.6.1.2.1.10.7.2.1.20.7 = 2 +.1.3.6.1.2.1.10.7.2.1.21.1 = 3 +.1.3.6.1.2.1.10.7.2.1.21.2 = 3 +.1.3.6.1.2.1.10.7.2.1.21.3 = 3 +.1.3.6.1.2.1.10.7.2.1.21.4 = 3 +.1.3.6.1.2.1.10.7.2.1.21.5 = 3 +.1.3.6.1.2.1.10.7.2.1.21.6 = 3 +.1.3.6.1.2.1.10.7.2.1.21.7 = 3 +.1.3.6.1.2.1.10.7.10.1.1.1 = 4 +.1.3.6.1.2.1.10.7.10.1.1.2 = 4 +.1.3.6.1.2.1.10.7.10.1.1.3 = 4 +.1.3.6.1.2.1.10.7.10.1.1.4 = 4 +.1.3.6.1.2.1.10.7.10.1.1.5 = 4 +.1.3.6.1.2.1.10.7.10.1.1.6 = 4 +.1.3.6.1.2.1.10.7.10.1.1.7 = 4 +.1.3.6.1.2.1.10.7.10.1.2.1 = 4 +.1.3.6.1.2.1.10.7.10.1.2.2 = 4 +.1.3.6.1.2.1.10.7.10.1.2.3 = 4 +.1.3.6.1.2.1.10.7.10.1.2.4 = 4 +.1.3.6.1.2.1.10.7.10.1.2.5 = 4 +.1.3.6.1.2.1.10.7.10.1.2.6 = 4 +.1.3.6.1.2.1.10.7.10.1.2.7 = 4 +.1.3.6.1.2.1.10.7.10.1.3.1 = 0 +.1.3.6.1.2.1.10.7.10.1.3.2 = 0 +.1.3.6.1.2.1.10.7.10.1.3.3 = 3292 +.1.3.6.1.2.1.10.7.10.1.3.4 = 0 +.1.3.6.1.2.1.10.7.10.1.3.5 = 0 +.1.3.6.1.2.1.10.7.10.1.3.6 = 0 +.1.3.6.1.2.1.10.7.10.1.3.7 = 0 +.1.3.6.1.2.1.10.7.10.1.4.1 = 0 +.1.3.6.1.2.1.10.7.10.1.4.2 = 0 +.1.3.6.1.2.1.10.7.10.1.4.3 = 0 +.1.3.6.1.2.1.10.7.10.1.4.4 = 0 +.1.3.6.1.2.1.10.7.10.1.4.5 = 0 +.1.3.6.1.2.1.10.7.10.1.4.6 = 0 +.1.3.6.1.2.1.10.7.10.1.4.7 = 0 +.1.3.6.1.2.1.10.7.10.1.5.1 = 0 +.1.3.6.1.2.1.10.7.10.1.5.2 = 0 +.1.3.6.1.2.1.10.7.10.1.5.3 = 3292 +.1.3.6.1.2.1.10.7.10.1.5.4 = 0 +.1.3.6.1.2.1.10.7.10.1.5.5 = 0 +.1.3.6.1.2.1.10.7.10.1.5.6 = 0 +.1.3.6.1.2.1.10.7.10.1.5.7 = 0 +.1.3.6.1.2.1.10.7.10.1.6.1 = 0 +.1.3.6.1.2.1.10.7.10.1.6.2 = 0 +.1.3.6.1.2.1.10.7.10.1.6.3 = 0 +.1.3.6.1.2.1.10.7.10.1.6.4 = 0 +.1.3.6.1.2.1.10.7.10.1.6.5 = 0 +.1.3.6.1.2.1.10.7.10.1.6.6 = 0 +.1.3.6.1.2.1.10.7.10.1.6.7 = 0 +.1.3.6.1.2.1.10.7.11.1.1.1 = 0 +.1.3.6.1.2.1.10.7.11.1.1.2 = 0 +.1.3.6.1.2.1.10.7.11.1.1.3 = 0 +.1.3.6.1.2.1.10.7.11.1.1.4 = 0 +.1.3.6.1.2.1.10.7.11.1.1.5 = 0 +.1.3.6.1.2.1.10.7.11.1.1.6 = 0 +.1.3.6.1.2.1.10.7.11.1.1.7 = 0 +.1.3.6.1.2.1.10.7.11.1.2.1 = 0 +.1.3.6.1.2.1.10.7.11.1.2.2 = 0 +.1.3.6.1.2.1.10.7.11.1.2.3 = 0 +.1.3.6.1.2.1.10.7.11.1.2.4 = 0 +.1.3.6.1.2.1.10.7.11.1.2.5 = 0 +.1.3.6.1.2.1.10.7.11.1.2.6 = 0 +.1.3.6.1.2.1.10.7.11.1.2.7 = 0 +.1.3.6.1.2.1.10.7.11.1.3.1 = 0 +.1.3.6.1.2.1.10.7.11.1.3.2 = 0 +.1.3.6.1.2.1.10.7.11.1.3.3 = 0 +.1.3.6.1.2.1.10.7.11.1.3.4 = 0 +.1.3.6.1.2.1.10.7.11.1.3.5 = 0 +.1.3.6.1.2.1.10.7.11.1.3.6 = 0 +.1.3.6.1.2.1.10.7.11.1.3.7 = 0 +.1.3.6.1.2.1.10.7.11.1.4.1 = 0 +.1.3.6.1.2.1.10.7.11.1.4.2 = 0 +.1.3.6.1.2.1.10.7.11.1.4.3 = 0 +.1.3.6.1.2.1.10.7.11.1.4.4 = 0 +.1.3.6.1.2.1.10.7.11.1.4.5 = 0 +.1.3.6.1.2.1.10.7.11.1.4.6 = 0 +.1.3.6.1.2.1.10.7.11.1.4.7 = 0 +.1.3.6.1.2.1.10.7.11.1.5.1 = 0 +.1.3.6.1.2.1.10.7.11.1.5.2 = 0 +.1.3.6.1.2.1.10.7.11.1.5.3 = 0 +.1.3.6.1.2.1.10.7.11.1.5.4 = 0 +.1.3.6.1.2.1.10.7.11.1.5.5 = 0 +.1.3.6.1.2.1.10.7.11.1.5.6 = 0 +.1.3.6.1.2.1.10.7.11.1.5.7 = 0 +.1.3.6.1.2.1.10.7.11.1.6.1 = 0 +.1.3.6.1.2.1.10.7.11.1.6.2 = 0 +.1.3.6.1.2.1.10.7.11.1.6.3 = 0 +.1.3.6.1.2.1.10.7.11.1.6.4 = 0 +.1.3.6.1.2.1.10.7.11.1.6.5 = 0 +.1.3.6.1.2.1.10.7.11.1.6.6 = 0 +.1.3.6.1.2.1.10.7.11.1.6.7 = 0 +.1.3.6.1.2.1.11.1.0 = 67874 +.1.3.6.1.2.1.11.2.0 = 67874 +.1.3.6.1.2.1.11.3.0 = 0 +.1.3.6.1.2.1.11.4.0 = 0 +.1.3.6.1.2.1.11.5.0 = 133 +.1.3.6.1.2.1.11.6.0 = 0 +.1.3.6.1.2.1.11.8.0 = 0 +.1.3.6.1.2.1.11.9.0 = 0 +.1.3.6.1.2.1.11.10.0 = 0 +.1.3.6.1.2.1.11.11.0 = 0 +.1.3.6.1.2.1.11.12.0 = 0 +.1.3.6.1.2.1.11.13.0 = 68062 +.1.3.6.1.2.1.11.14.0 = 0 +.1.3.6.1.2.1.11.15.0 = 11 +.1.3.6.1.2.1.11.16.0 = 67859 +.1.3.6.1.2.1.11.17.0 = 0 +.1.3.6.1.2.1.11.18.0 = 0 +.1.3.6.1.2.1.11.19.0 = 0 +.1.3.6.1.2.1.11.20.0 = 0 +.1.3.6.1.2.1.11.21.0 = 0 +.1.3.6.1.2.1.11.22.0 = 0 +.1.3.6.1.2.1.11.24.0 = 0 +.1.3.6.1.2.1.11.25.0 = 0 +.1.3.6.1.2.1.11.26.0 = 0 +.1.3.6.1.2.1.11.27.0 = 0 +.1.3.6.1.2.1.11.28.0 = 67898 +.1.3.6.1.2.1.11.29.0 = 0 +.1.3.6.1.2.1.11.30.0 = enabled +.1.3.6.1.2.1.11.31.0 = 0 +.1.3.6.1.2.1.11.32.0 = 0 +.1.3.6.1.2.1.16.1.1.1.1.1 = 1 +.1.3.6.1.2.1.16.1.1.1.1.2 = 2 +.1.3.6.1.2.1.16.1.1.1.1.3 = 3 +.1.3.6.1.2.1.16.1.1.1.1.4 = 4 +.1.3.6.1.2.1.16.1.1.1.2.1 = .1.3.6.1.2.1.2.2.1.1.1 +.1.3.6.1.2.1.16.1.1.1.2.2 = .1.3.6.1.2.1.2.2.1.1.2 +.1.3.6.1.2.1.16.1.1.1.2.3 = .1.3.6.1.2.1.2.2.1.1.3 +.1.3.6.1.2.1.16.1.1.1.2.4 = .1.3.6.1.2.1.2.2.1.1.4 +.1.3.6.1.2.1.16.1.1.1.3.1 = 0 +.1.3.6.1.2.1.16.1.1.1.3.2 = 0 +.1.3.6.1.2.1.16.1.1.1.3.3 = 0 +.1.3.6.1.2.1.16.1.1.1.3.4 = 0 +.1.3.6.1.2.1.16.1.1.1.4.1 = 4223389753 +.1.3.6.1.2.1.16.1.1.1.4.2 = 135053161 +.1.3.6.1.2.1.16.1.1.1.4.3 = 2194071425 +.1.3.6.1.2.1.16.1.1.1.4.4 = 314336220 +.1.3.6.1.2.1.16.1.1.1.5.1 = 14805115 +.1.3.6.1.2.1.16.1.1.1.5.2 = 755129 +.1.3.6.1.2.1.16.1.1.1.5.3 = 15045949 +.1.3.6.1.2.1.16.1.1.1.5.4 = 2381335 +.1.3.6.1.2.1.16.1.1.1.6.1 = 786060 +.1.3.6.1.2.1.16.1.1.1.6.2 = 35 +.1.3.6.1.2.1.16.1.1.1.6.3 = 64 +.1.3.6.1.2.1.16.1.1.1.6.4 = 0 +.1.3.6.1.2.1.16.1.1.1.7.1 = 1333616 +.1.3.6.1.2.1.16.1.1.1.7.2 = 755094 +.1.3.6.1.2.1.16.1.1.1.7.3 = 1854490 +.1.3.6.1.2.1.16.1.1.1.7.4 = 2381335 +.1.3.6.1.2.1.16.1.1.1.8.1 = 0 +.1.3.6.1.2.1.16.1.1.1.8.2 = 0 +.1.3.6.1.2.1.16.1.1.1.8.3 = 0 +.1.3.6.1.2.1.16.1.1.1.8.4 = 0 +.1.3.6.1.2.1.16.1.1.1.9.1 = 0 +.1.3.6.1.2.1.16.1.1.1.9.2 = 0 +.1.3.6.1.2.1.16.1.1.1.9.3 = 0 +.1.3.6.1.2.1.16.1.1.1.9.4 = 0 +.1.3.6.1.2.1.16.1.1.1.10.1 = 7196121 +.1.3.6.1.2.1.16.1.1.1.10.2 = 0 +.1.3.6.1.2.1.16.1.1.1.10.3 = 0 +.1.3.6.1.2.1.16.1.1.1.10.4 = 0 +.1.3.6.1.2.1.16.1.1.1.11.1 = 0 +.1.3.6.1.2.1.16.1.1.1.11.2 = 0 +.1.3.6.1.2.1.16.1.1.1.11.3 = 0 +.1.3.6.1.2.1.16.1.1.1.11.4 = 0 +.1.3.6.1.2.1.16.1.1.1.12.1 = 0 +.1.3.6.1.2.1.16.1.1.1.12.2 = 0 +.1.3.6.1.2.1.16.1.1.1.12.3 = 0 +.1.3.6.1.2.1.16.1.1.1.12.4 = 0 +.1.3.6.1.2.1.16.1.1.1.13.1 = 0 +.1.3.6.1.2.1.16.1.1.1.13.2 = 0 +.1.3.6.1.2.1.16.1.1.1.13.3 = 0 +.1.3.6.1.2.1.16.1.1.1.13.4 = 0 +.1.3.6.1.2.1.16.1.1.1.14.1 = 976276 +.1.3.6.1.2.1.16.1.1.1.14.2 = 42 +.1.3.6.1.2.1.16.1.1.1.14.3 = 2010989 +.1.3.6.1.2.1.16.1.1.1.14.4 = 0 +.1.3.6.1.2.1.16.1.1.1.15.1 = 4299190 +.1.3.6.1.2.1.16.1.1.1.15.2 = 23 +.1.3.6.1.2.1.16.1.1.1.15.3 = 524707 +.1.3.6.1.2.1.16.1.1.1.15.4 = 0 +.1.3.6.1.2.1.16.1.1.1.16.1 = 1491542 +.1.3.6.1.2.1.16.1.1.1.16.2 = 755029 +.1.3.6.1.2.1.16.1.1.1.16.3 = 2361587 +.1.3.6.1.2.1.16.1.1.1.16.4 = 2381335 +.1.3.6.1.2.1.16.1.1.1.17.1 = 3686 +.1.3.6.1.2.1.16.1.1.1.17.2 = 35 +.1.3.6.1.2.1.16.1.1.1.17.3 = 3003 +.1.3.6.1.2.1.16.1.1.1.17.4 = 0 +.1.3.6.1.2.1.16.1.1.1.18.1 = 2165 +.1.3.6.1.2.1.16.1.1.1.18.2 = 0 +.1.3.6.1.2.1.16.1.1.1.18.3 = 24786 +.1.3.6.1.2.1.16.1.1.1.18.4 = 0 +.1.3.6.1.2.1.16.1.1.1.19.1 = 836135 +.1.3.6.1.2.1.16.1.1.1.19.2 = 0 +.1.3.6.1.2.1.16.1.1.1.19.3 = 10120877 +.1.3.6.1.2.1.16.1.1.1.19.4 = 0 +.1.3.6.1.2.1.16.1.1.1.20.1 = "system" +.1.3.6.1.2.1.16.1.1.1.20.2 = "system" +.1.3.6.1.2.1.16.1.1.1.20.3 = "system" +.1.3.6.1.2.1.16.1.1.1.20.4 = "system" +.1.3.6.1.2.1.16.1.1.1.21.1 = 1 +.1.3.6.1.2.1.16.1.1.1.21.2 = 1 +.1.3.6.1.2.1.16.1.1.1.21.3 = 1 +.1.3.6.1.2.1.16.1.1.1.21.4 = 1 +.1.3.6.1.2.1.16.1.4.1.1.1 = 0 +.1.3.6.1.2.1.16.1.4.1.1.2 = 0 +.1.3.6.1.2.1.16.1.4.1.1.3 = 0 +.1.3.6.1.2.1.16.1.4.1.1.4 = 0 +.1.3.6.1.2.1.16.1.4.1.2.1 = 0:0:41:52.73 +.1.3.6.1.2.1.16.1.4.1.2.2 = 0:0:41:52.73 +.1.3.6.1.2.1.16.1.4.1.2.3 = 0:0:41:52.73 +.1.3.6.1.2.1.16.1.4.1.2.4 = 0:0:41:52.73 +.1.3.6.1.2.1.16.1.7.1.1.1 = 0 +.1.3.6.1.2.1.16.1.7.1.1.2 = 0 +.1.3.6.1.2.1.16.1.7.1.1.3 = 0 +.1.3.6.1.2.1.16.1.7.1.1.4 = 0 +.1.3.6.1.2.1.16.1.7.1.2.1 = 14805115 +.1.3.6.1.2.1.16.1.7.1.2.2 = 755129 +.1.3.6.1.2.1.16.1.7.1.2.3 = 15045949 +.1.3.6.1.2.1.16.1.7.1.2.4 = 2381335 +.1.3.6.1.2.1.16.1.7.1.3.1 = 2 +.1.3.6.1.2.1.16.1.7.1.3.2 = 0 +.1.3.6.1.2.1.16.1.7.1.3.3 = 3 +.1.3.6.1.2.1.16.1.7.1.3.4 = 0 +.1.3.6.1.2.1.16.1.7.1.4.1 = 12813324345 +.1.3.6.1.2.1.16.1.7.1.4.2 = 135053161 +.1.3.6.1.2.1.16.1.7.1.4.3 = 15078973313 +.1.3.6.1.2.1.16.1.7.1.4.4 = 314336220 +.1.3.6.1.2.1.16.1.7.1.5.1 = 0 +.1.3.6.1.2.1.16.1.7.1.5.2 = 0 +.1.3.6.1.2.1.16.1.7.1.5.3 = 0 +.1.3.6.1.2.1.16.1.7.1.5.4 = 0 +.1.3.6.1.2.1.16.1.7.1.6.1 = 976276 +.1.3.6.1.2.1.16.1.7.1.6.2 = 42 +.1.3.6.1.2.1.16.1.7.1.6.3 = 2010989 +.1.3.6.1.2.1.16.1.7.1.6.4 = 0 +.1.3.6.1.2.1.16.1.7.1.7.1 = 0 +.1.3.6.1.2.1.16.1.7.1.7.2 = 0 +.1.3.6.1.2.1.16.1.7.1.7.3 = 0 +.1.3.6.1.2.1.16.1.7.1.7.4 = 0 +.1.3.6.1.2.1.16.1.7.1.8.1 = 4299190 +.1.3.6.1.2.1.16.1.7.1.8.2 = 23 +.1.3.6.1.2.1.16.1.7.1.8.3 = 524707 +.1.3.6.1.2.1.16.1.7.1.8.4 = 0 +.1.3.6.1.2.1.16.1.7.1.9.1 = 0 +.1.3.6.1.2.1.16.1.7.1.9.2 = 0 +.1.3.6.1.2.1.16.1.7.1.9.3 = 0 +.1.3.6.1.2.1.16.1.7.1.9.4 = 0 +.1.3.6.1.2.1.16.1.7.1.10.1 = 1491542 +.1.3.6.1.2.1.16.1.7.1.10.2 = 755029 +.1.3.6.1.2.1.16.1.7.1.10.3 = 2361587 +.1.3.6.1.2.1.16.1.7.1.10.4 = 2381335 +.1.3.6.1.2.1.16.1.7.1.11.1 = 0 +.1.3.6.1.2.1.16.1.7.1.11.2 = 0 +.1.3.6.1.2.1.16.1.7.1.11.3 = 0 +.1.3.6.1.2.1.16.1.7.1.11.4 = 0 +.1.3.6.1.2.1.16.1.7.1.12.1 = 3686 +.1.3.6.1.2.1.16.1.7.1.12.2 = 35 +.1.3.6.1.2.1.16.1.7.1.12.3 = 3003 +.1.3.6.1.2.1.16.1.7.1.12.4 = 0 +.1.3.6.1.2.1.16.1.7.1.13.1 = 0 +.1.3.6.1.2.1.16.1.7.1.13.2 = 0 +.1.3.6.1.2.1.16.1.7.1.13.3 = 0 +.1.3.6.1.2.1.16.1.7.1.13.4 = 0 +.1.3.6.1.2.1.16.1.7.1.14.1 = 2165 +.1.3.6.1.2.1.16.1.7.1.14.2 = 0 +.1.3.6.1.2.1.16.1.7.1.14.3 = 24786 +.1.3.6.1.2.1.16.1.7.1.14.4 = 0 +.1.3.6.1.2.1.16.1.7.1.15.1 = 0 +.1.3.6.1.2.1.16.1.7.1.15.2 = 0 +.1.3.6.1.2.1.16.1.7.1.15.3 = 0 +.1.3.6.1.2.1.16.1.7.1.15.4 = 0 +.1.3.6.1.2.1.16.1.7.1.16.1 = 836135 +.1.3.6.1.2.1.16.1.7.1.16.2 = 0 +.1.3.6.1.2.1.16.1.7.1.16.3 = 10120877 +.1.3.6.1.2.1.16.1.7.1.16.4 = 0 +.1.3.6.1.2.1.16.2.1.1.1.1 = 1 +.1.3.6.1.2.1.16.2.1.1.1.2 = 2 +.1.3.6.1.2.1.16.2.1.1.1.3 = 3 +.1.3.6.1.2.1.16.2.1.1.1.4 = 4 +.1.3.6.1.2.1.16.2.1.1.1.5 = 5 +.1.3.6.1.2.1.16.2.1.1.1.6 = 6 +.1.3.6.1.2.1.16.2.1.1.1.7 = 7 +.1.3.6.1.2.1.16.2.1.1.1.8 = 8 +.1.3.6.1.2.1.16.2.1.1.2.1 = .1.3.6.1.2.1.2.2.1.1.1 +.1.3.6.1.2.1.16.2.1.1.2.2 = .1.3.6.1.2.1.2.2.1.1.1 +.1.3.6.1.2.1.16.2.1.1.2.3 = .1.3.6.1.2.1.2.2.1.1.2 +.1.3.6.1.2.1.16.2.1.1.2.4 = .1.3.6.1.2.1.2.2.1.1.2 +.1.3.6.1.2.1.16.2.1.1.2.5 = .1.3.6.1.2.1.2.2.1.1.3 +.1.3.6.1.2.1.16.2.1.1.2.6 = .1.3.6.1.2.1.2.2.1.1.3 +.1.3.6.1.2.1.16.2.1.1.2.7 = .1.3.6.1.2.1.2.2.1.1.4 +.1.3.6.1.2.1.16.2.1.1.2.8 = .1.3.6.1.2.1.2.2.1.1.4 +.1.3.6.1.2.1.16.2.1.1.3.1 = 60 +.1.3.6.1.2.1.16.2.1.1.3.2 = 48 +.1.3.6.1.2.1.16.2.1.1.3.3 = 60 +.1.3.6.1.2.1.16.2.1.1.3.4 = 48 +.1.3.6.1.2.1.16.2.1.1.3.5 = 60 +.1.3.6.1.2.1.16.2.1.1.3.6 = 48 +.1.3.6.1.2.1.16.2.1.1.3.7 = 60 +.1.3.6.1.2.1.16.2.1.1.3.8 = 48 +.1.3.6.1.2.1.16.2.1.1.4.1 = 60 +.1.3.6.1.2.1.16.2.1.1.4.2 = 48 +.1.3.6.1.2.1.16.2.1.1.4.3 = 60 +.1.3.6.1.2.1.16.2.1.1.4.4 = 48 +.1.3.6.1.2.1.16.2.1.1.4.5 = 60 +.1.3.6.1.2.1.16.2.1.1.4.6 = 48 +.1.3.6.1.2.1.16.2.1.1.4.7 = 60 +.1.3.6.1.2.1.16.2.1.1.4.8 = 48 +.1.3.6.1.2.1.16.2.1.1.5.1 = 30 +.1.3.6.1.2.1.16.2.1.1.5.2 = 1800 +.1.3.6.1.2.1.16.2.1.1.5.3 = 30 +.1.3.6.1.2.1.16.2.1.1.5.4 = 1800 +.1.3.6.1.2.1.16.2.1.1.5.5 = 30 +.1.3.6.1.2.1.16.2.1.1.5.6 = 1800 +.1.3.6.1.2.1.16.2.1.1.5.7 = 30 +.1.3.6.1.2.1.16.2.1.1.5.8 = 1800 +.1.3.6.1.2.1.16.2.1.1.6.1 = "system" +.1.3.6.1.2.1.16.2.1.1.6.2 = "system" +.1.3.6.1.2.1.16.2.1.1.6.3 = "system" +.1.3.6.1.2.1.16.2.1.1.6.4 = "system" +.1.3.6.1.2.1.16.2.1.1.6.5 = "system" +.1.3.6.1.2.1.16.2.1.1.6.6 = "system" +.1.3.6.1.2.1.16.2.1.1.6.7 = "system" +.1.3.6.1.2.1.16.2.1.1.6.8 = "system" +.1.3.6.1.2.1.16.2.1.1.7.1 = 1 +.1.3.6.1.2.1.16.2.1.1.7.2 = 1 +.1.3.6.1.2.1.16.2.1.1.7.3 = 1 +.1.3.6.1.2.1.16.2.1.1.7.4 = 1 +.1.3.6.1.2.1.16.2.1.1.7.5 = 1 +.1.3.6.1.2.1.16.2.1.1.7.6 = 1 +.1.3.6.1.2.1.16.2.1.1.7.7 = 1 +.1.3.6.1.2.1.16.2.1.1.7.8 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.1 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.24 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.25 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.26 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.27 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.28 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.29 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.30 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.31 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.32 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.33 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.34 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.35 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.36 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.37 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.38 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.39 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.40 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.41 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.42 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.43 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.44 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.45 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.46 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.47 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.48 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.49 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.50 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.51 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.52 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.53 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.54 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.55 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.56 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.57 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.58 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.59 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.60 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.61 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.62 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.63 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.64 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.65 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.66 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.67 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.68 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.69 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.70 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.71 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.72 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.73 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.74 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.75 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.76 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.77 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.78 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.79 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.80 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.81 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.82 = 1 +.1.3.6.1.2.1.16.2.2.1.1.1.83 = 1 +.1.3.6.1.2.1.16.2.2.1.1.2.1 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.24 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.25 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.26 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.27 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.28 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.29 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.30 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.31 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.32 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.33 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.34 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.35 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.36 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.37 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.38 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.39 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.40 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.41 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.42 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.43 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.44 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.45 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.46 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.47 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.48 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.49 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.50 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.51 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.52 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.53 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.54 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.55 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.56 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.57 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.58 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.59 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.60 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.61 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.62 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.63 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.64 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.65 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.66 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.67 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.68 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.69 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.70 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.71 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.72 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.73 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.74 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.75 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.76 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.77 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.78 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.79 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.80 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.81 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.82 = 2 +.1.3.6.1.2.1.16.2.2.1.1.2.83 = 2 +.1.3.6.1.2.1.16.2.2.1.1.3.1 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.24 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.25 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.26 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.27 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.28 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.29 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.30 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.31 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.32 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.33 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.34 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.35 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.36 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.37 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.38 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.39 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.40 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.41 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.42 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.43 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.44 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.45 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.46 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.47 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.48 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.49 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.50 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.51 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.52 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.53 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.54 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.55 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.56 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.57 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.58 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.59 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.60 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.61 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.62 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.63 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.64 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.65 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.66 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.67 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.68 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.69 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.70 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.71 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.72 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.73 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.74 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.75 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.76 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.77 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.78 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.79 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.80 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.81 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.82 = 3 +.1.3.6.1.2.1.16.2.2.1.1.3.83 = 3 +.1.3.6.1.2.1.16.2.2.1.1.4.1 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.24 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.25 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.26 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.27 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.28 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.29 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.30 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.31 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.32 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.33 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.34 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.35 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.36 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.37 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.38 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.39 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.40 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.41 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.42 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.43 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.44 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.45 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.46 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.47 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.48 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.49 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.50 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.51 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.52 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.53 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.54 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.55 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.56 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.57 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.58 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.59 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.60 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.61 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.62 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.63 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.64 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.65 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.66 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.67 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.68 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.69 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.70 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.71 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.72 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.73 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.74 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.75 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.76 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.77 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.78 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.79 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.80 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.81 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.82 = 4 +.1.3.6.1.2.1.16.2.2.1.1.4.83 = 4 +.1.3.6.1.2.1.16.2.2.1.2.1.1 = 1 +.1.3.6.1.2.1.16.2.2.1.2.1.24 = 24 +.1.3.6.1.2.1.16.2.2.1.2.1.25 = 25 +.1.3.6.1.2.1.16.2.2.1.2.1.26 = 26 +.1.3.6.1.2.1.16.2.2.1.2.1.27 = 27 +.1.3.6.1.2.1.16.2.2.1.2.1.28 = 28 +.1.3.6.1.2.1.16.2.2.1.2.1.29 = 29 +.1.3.6.1.2.1.16.2.2.1.2.1.30 = 30 +.1.3.6.1.2.1.16.2.2.1.2.1.31 = 31 +.1.3.6.1.2.1.16.2.2.1.2.1.32 = 32 +.1.3.6.1.2.1.16.2.2.1.2.1.33 = 33 +.1.3.6.1.2.1.16.2.2.1.2.1.34 = 34 +.1.3.6.1.2.1.16.2.2.1.2.1.35 = 35 +.1.3.6.1.2.1.16.2.2.1.2.1.36 = 36 +.1.3.6.1.2.1.16.2.2.1.2.1.37 = 37 +.1.3.6.1.2.1.16.2.2.1.2.1.38 = 38 +.1.3.6.1.2.1.16.2.2.1.2.1.39 = 39 +.1.3.6.1.2.1.16.2.2.1.2.1.40 = 40 +.1.3.6.1.2.1.16.2.2.1.2.1.41 = 41 +.1.3.6.1.2.1.16.2.2.1.2.1.42 = 42 +.1.3.6.1.2.1.16.2.2.1.2.1.43 = 43 +.1.3.6.1.2.1.16.2.2.1.2.1.44 = 44 +.1.3.6.1.2.1.16.2.2.1.2.1.45 = 45 +.1.3.6.1.2.1.16.2.2.1.2.1.46 = 46 +.1.3.6.1.2.1.16.2.2.1.2.1.47 = 47 +.1.3.6.1.2.1.16.2.2.1.2.1.48 = 48 +.1.3.6.1.2.1.16.2.2.1.2.1.49 = 49 +.1.3.6.1.2.1.16.2.2.1.2.1.50 = 50 +.1.3.6.1.2.1.16.2.2.1.2.1.51 = 51 +.1.3.6.1.2.1.16.2.2.1.2.1.52 = 52 +.1.3.6.1.2.1.16.2.2.1.2.1.53 = 53 +.1.3.6.1.2.1.16.2.2.1.2.1.54 = 54 +.1.3.6.1.2.1.16.2.2.1.2.1.55 = 55 +.1.3.6.1.2.1.16.2.2.1.2.1.56 = 56 +.1.3.6.1.2.1.16.2.2.1.2.1.57 = 57 +.1.3.6.1.2.1.16.2.2.1.2.1.58 = 58 +.1.3.6.1.2.1.16.2.2.1.2.1.59 = 59 +.1.3.6.1.2.1.16.2.2.1.2.1.60 = 60 +.1.3.6.1.2.1.16.2.2.1.2.1.61 = 61 +.1.3.6.1.2.1.16.2.2.1.2.1.62 = 62 +.1.3.6.1.2.1.16.2.2.1.2.1.63 = 63 +.1.3.6.1.2.1.16.2.2.1.2.1.64 = 64 +.1.3.6.1.2.1.16.2.2.1.2.1.65 = 65 +.1.3.6.1.2.1.16.2.2.1.2.1.66 = 66 +.1.3.6.1.2.1.16.2.2.1.2.1.67 = 67 +.1.3.6.1.2.1.16.2.2.1.2.1.68 = 68 +.1.3.6.1.2.1.16.2.2.1.2.1.69 = 69 +.1.3.6.1.2.1.16.2.2.1.2.1.70 = 70 +.1.3.6.1.2.1.16.2.2.1.2.1.71 = 71 +.1.3.6.1.2.1.16.2.2.1.2.1.72 = 72 +.1.3.6.1.2.1.16.2.2.1.2.1.73 = 73 +.1.3.6.1.2.1.16.2.2.1.2.1.74 = 74 +.1.3.6.1.2.1.16.2.2.1.2.1.75 = 75 +.1.3.6.1.2.1.16.2.2.1.2.1.76 = 76 +.1.3.6.1.2.1.16.2.2.1.2.1.77 = 77 +.1.3.6.1.2.1.16.2.2.1.2.1.78 = 78 +.1.3.6.1.2.1.16.2.2.1.2.1.79 = 79 +.1.3.6.1.2.1.16.2.2.1.2.1.80 = 80 +.1.3.6.1.2.1.16.2.2.1.2.1.81 = 81 +.1.3.6.1.2.1.16.2.2.1.2.1.82 = 82 +.1.3.6.1.2.1.16.2.2.1.2.1.83 = 83 +.1.3.6.1.2.1.16.2.2.1.2.2.1 = 1 +.1.3.6.1.2.1.16.2.2.1.2.2.24 = 24 +.1.3.6.1.2.1.16.2.2.1.2.2.25 = 25 +.1.3.6.1.2.1.16.2.2.1.2.2.26 = 26 +.1.3.6.1.2.1.16.2.2.1.2.2.27 = 27 +.1.3.6.1.2.1.16.2.2.1.2.2.28 = 28 +.1.3.6.1.2.1.16.2.2.1.2.2.29 = 29 +.1.3.6.1.2.1.16.2.2.1.2.2.30 = 30 +.1.3.6.1.2.1.16.2.2.1.2.2.31 = 31 +.1.3.6.1.2.1.16.2.2.1.2.2.32 = 32 +.1.3.6.1.2.1.16.2.2.1.2.2.33 = 33 +.1.3.6.1.2.1.16.2.2.1.2.2.34 = 34 +.1.3.6.1.2.1.16.2.2.1.2.2.35 = 35 +.1.3.6.1.2.1.16.2.2.1.2.2.36 = 36 +.1.3.6.1.2.1.16.2.2.1.2.2.37 = 37 +.1.3.6.1.2.1.16.2.2.1.2.2.38 = 38 +.1.3.6.1.2.1.16.2.2.1.2.2.39 = 39 +.1.3.6.1.2.1.16.2.2.1.2.2.40 = 40 +.1.3.6.1.2.1.16.2.2.1.2.2.41 = 41 +.1.3.6.1.2.1.16.2.2.1.2.2.42 = 42 +.1.3.6.1.2.1.16.2.2.1.2.2.43 = 43 +.1.3.6.1.2.1.16.2.2.1.2.2.44 = 44 +.1.3.6.1.2.1.16.2.2.1.2.2.45 = 45 +.1.3.6.1.2.1.16.2.2.1.2.2.46 = 46 +.1.3.6.1.2.1.16.2.2.1.2.2.47 = 47 +.1.3.6.1.2.1.16.2.2.1.2.2.48 = 48 +.1.3.6.1.2.1.16.2.2.1.2.2.49 = 49 +.1.3.6.1.2.1.16.2.2.1.2.2.50 = 50 +.1.3.6.1.2.1.16.2.2.1.2.2.51 = 51 +.1.3.6.1.2.1.16.2.2.1.2.2.52 = 52 +.1.3.6.1.2.1.16.2.2.1.2.2.53 = 53 +.1.3.6.1.2.1.16.2.2.1.2.2.54 = 54 +.1.3.6.1.2.1.16.2.2.1.2.2.55 = 55 +.1.3.6.1.2.1.16.2.2.1.2.2.56 = 56 +.1.3.6.1.2.1.16.2.2.1.2.2.57 = 57 +.1.3.6.1.2.1.16.2.2.1.2.2.58 = 58 +.1.3.6.1.2.1.16.2.2.1.2.2.59 = 59 +.1.3.6.1.2.1.16.2.2.1.2.2.60 = 60 +.1.3.6.1.2.1.16.2.2.1.2.2.61 = 61 +.1.3.6.1.2.1.16.2.2.1.2.2.62 = 62 +.1.3.6.1.2.1.16.2.2.1.2.2.63 = 63 +.1.3.6.1.2.1.16.2.2.1.2.2.64 = 64 +.1.3.6.1.2.1.16.2.2.1.2.2.65 = 65 +.1.3.6.1.2.1.16.2.2.1.2.2.66 = 66 +.1.3.6.1.2.1.16.2.2.1.2.2.67 = 67 +.1.3.6.1.2.1.16.2.2.1.2.2.68 = 68 +.1.3.6.1.2.1.16.2.2.1.2.2.69 = 69 +.1.3.6.1.2.1.16.2.2.1.2.2.70 = 70 +.1.3.6.1.2.1.16.2.2.1.2.2.71 = 71 +.1.3.6.1.2.1.16.2.2.1.2.2.72 = 72 +.1.3.6.1.2.1.16.2.2.1.2.2.73 = 73 +.1.3.6.1.2.1.16.2.2.1.2.2.74 = 74 +.1.3.6.1.2.1.16.2.2.1.2.2.75 = 75 +.1.3.6.1.2.1.16.2.2.1.2.2.76 = 76 +.1.3.6.1.2.1.16.2.2.1.2.2.77 = 77 +.1.3.6.1.2.1.16.2.2.1.2.2.78 = 78 +.1.3.6.1.2.1.16.2.2.1.2.2.79 = 79 +.1.3.6.1.2.1.16.2.2.1.2.2.80 = 80 +.1.3.6.1.2.1.16.2.2.1.2.2.81 = 81 +.1.3.6.1.2.1.16.2.2.1.2.2.82 = 82 +.1.3.6.1.2.1.16.2.2.1.2.2.83 = 83 +.1.3.6.1.2.1.16.2.2.1.2.3.1 = 1 +.1.3.6.1.2.1.16.2.2.1.2.3.24 = 24 +.1.3.6.1.2.1.16.2.2.1.2.3.25 = 25 +.1.3.6.1.2.1.16.2.2.1.2.3.26 = 26 +.1.3.6.1.2.1.16.2.2.1.2.3.27 = 27 +.1.3.6.1.2.1.16.2.2.1.2.3.28 = 28 +.1.3.6.1.2.1.16.2.2.1.2.3.29 = 29 +.1.3.6.1.2.1.16.2.2.1.2.3.30 = 30 +.1.3.6.1.2.1.16.2.2.1.2.3.31 = 31 +.1.3.6.1.2.1.16.2.2.1.2.3.32 = 32 +.1.3.6.1.2.1.16.2.2.1.2.3.33 = 33 +.1.3.6.1.2.1.16.2.2.1.2.3.34 = 34 +.1.3.6.1.2.1.16.2.2.1.2.3.35 = 35 +.1.3.6.1.2.1.16.2.2.1.2.3.36 = 36 +.1.3.6.1.2.1.16.2.2.1.2.3.37 = 37 +.1.3.6.1.2.1.16.2.2.1.2.3.38 = 38 +.1.3.6.1.2.1.16.2.2.1.2.3.39 = 39 +.1.3.6.1.2.1.16.2.2.1.2.3.40 = 40 +.1.3.6.1.2.1.16.2.2.1.2.3.41 = 41 +.1.3.6.1.2.1.16.2.2.1.2.3.42 = 42 +.1.3.6.1.2.1.16.2.2.1.2.3.43 = 43 +.1.3.6.1.2.1.16.2.2.1.2.3.44 = 44 +.1.3.6.1.2.1.16.2.2.1.2.3.45 = 45 +.1.3.6.1.2.1.16.2.2.1.2.3.46 = 46 +.1.3.6.1.2.1.16.2.2.1.2.3.47 = 47 +.1.3.6.1.2.1.16.2.2.1.2.3.48 = 48 +.1.3.6.1.2.1.16.2.2.1.2.3.49 = 49 +.1.3.6.1.2.1.16.2.2.1.2.3.50 = 50 +.1.3.6.1.2.1.16.2.2.1.2.3.51 = 51 +.1.3.6.1.2.1.16.2.2.1.2.3.52 = 52 +.1.3.6.1.2.1.16.2.2.1.2.3.53 = 53 +.1.3.6.1.2.1.16.2.2.1.2.3.54 = 54 +.1.3.6.1.2.1.16.2.2.1.2.3.55 = 55 +.1.3.6.1.2.1.16.2.2.1.2.3.56 = 56 +.1.3.6.1.2.1.16.2.2.1.2.3.57 = 57 +.1.3.6.1.2.1.16.2.2.1.2.3.58 = 58 +.1.3.6.1.2.1.16.2.2.1.2.3.59 = 59 +.1.3.6.1.2.1.16.2.2.1.2.3.60 = 60 +.1.3.6.1.2.1.16.2.2.1.2.3.61 = 61 +.1.3.6.1.2.1.16.2.2.1.2.3.62 = 62 +.1.3.6.1.2.1.16.2.2.1.2.3.63 = 63 +.1.3.6.1.2.1.16.2.2.1.2.3.64 = 64 +.1.3.6.1.2.1.16.2.2.1.2.3.65 = 65 +.1.3.6.1.2.1.16.2.2.1.2.3.66 = 66 +.1.3.6.1.2.1.16.2.2.1.2.3.67 = 67 +.1.3.6.1.2.1.16.2.2.1.2.3.68 = 68 +.1.3.6.1.2.1.16.2.2.1.2.3.69 = 69 +.1.3.6.1.2.1.16.2.2.1.2.3.70 = 70 +.1.3.6.1.2.1.16.2.2.1.2.3.71 = 71 +.1.3.6.1.2.1.16.2.2.1.2.3.72 = 72 +.1.3.6.1.2.1.16.2.2.1.2.3.73 = 73 +.1.3.6.1.2.1.16.2.2.1.2.3.74 = 74 +.1.3.6.1.2.1.16.2.2.1.2.3.75 = 75 +.1.3.6.1.2.1.16.2.2.1.2.3.76 = 76 +.1.3.6.1.2.1.16.2.2.1.2.3.77 = 77 +.1.3.6.1.2.1.16.2.2.1.2.3.78 = 78 +.1.3.6.1.2.1.16.2.2.1.2.3.79 = 79 +.1.3.6.1.2.1.16.2.2.1.2.3.80 = 80 +.1.3.6.1.2.1.16.2.2.1.2.3.81 = 81 +.1.3.6.1.2.1.16.2.2.1.2.3.82 = 82 +.1.3.6.1.2.1.16.2.2.1.2.3.83 = 83 +.1.3.6.1.2.1.16.2.2.1.2.4.1 = 1 +.1.3.6.1.2.1.16.2.2.1.2.4.24 = 24 +.1.3.6.1.2.1.16.2.2.1.2.4.25 = 25 +.1.3.6.1.2.1.16.2.2.1.2.4.26 = 26 +.1.3.6.1.2.1.16.2.2.1.2.4.27 = 27 +.1.3.6.1.2.1.16.2.2.1.2.4.28 = 28 +.1.3.6.1.2.1.16.2.2.1.2.4.29 = 29 +.1.3.6.1.2.1.16.2.2.1.2.4.30 = 30 +.1.3.6.1.2.1.16.2.2.1.2.4.31 = 31 +.1.3.6.1.2.1.16.2.2.1.2.4.32 = 32 +.1.3.6.1.2.1.16.2.2.1.2.4.33 = 33 +.1.3.6.1.2.1.16.2.2.1.2.4.34 = 34 +.1.3.6.1.2.1.16.2.2.1.2.4.35 = 35 +.1.3.6.1.2.1.16.2.2.1.2.4.36 = 36 +.1.3.6.1.2.1.16.2.2.1.2.4.37 = 37 +.1.3.6.1.2.1.16.2.2.1.2.4.38 = 38 +.1.3.6.1.2.1.16.2.2.1.2.4.39 = 39 +.1.3.6.1.2.1.16.2.2.1.2.4.40 = 40 +.1.3.6.1.2.1.16.2.2.1.2.4.41 = 41 +.1.3.6.1.2.1.16.2.2.1.2.4.42 = 42 +.1.3.6.1.2.1.16.2.2.1.2.4.43 = 43 +.1.3.6.1.2.1.16.2.2.1.2.4.44 = 44 +.1.3.6.1.2.1.16.2.2.1.2.4.45 = 45 +.1.3.6.1.2.1.16.2.2.1.2.4.46 = 46 +.1.3.6.1.2.1.16.2.2.1.2.4.47 = 47 +.1.3.6.1.2.1.16.2.2.1.2.4.48 = 48 +.1.3.6.1.2.1.16.2.2.1.2.4.49 = 49 +.1.3.6.1.2.1.16.2.2.1.2.4.50 = 50 +.1.3.6.1.2.1.16.2.2.1.2.4.51 = 51 +.1.3.6.1.2.1.16.2.2.1.2.4.52 = 52 +.1.3.6.1.2.1.16.2.2.1.2.4.53 = 53 +.1.3.6.1.2.1.16.2.2.1.2.4.54 = 54 +.1.3.6.1.2.1.16.2.2.1.2.4.55 = 55 +.1.3.6.1.2.1.16.2.2.1.2.4.56 = 56 +.1.3.6.1.2.1.16.2.2.1.2.4.57 = 57 +.1.3.6.1.2.1.16.2.2.1.2.4.58 = 58 +.1.3.6.1.2.1.16.2.2.1.2.4.59 = 59 +.1.3.6.1.2.1.16.2.2.1.2.4.60 = 60 +.1.3.6.1.2.1.16.2.2.1.2.4.61 = 61 +.1.3.6.1.2.1.16.2.2.1.2.4.62 = 62 +.1.3.6.1.2.1.16.2.2.1.2.4.63 = 63 +.1.3.6.1.2.1.16.2.2.1.2.4.64 = 64 +.1.3.6.1.2.1.16.2.2.1.2.4.65 = 65 +.1.3.6.1.2.1.16.2.2.1.2.4.66 = 66 +.1.3.6.1.2.1.16.2.2.1.2.4.67 = 67 +.1.3.6.1.2.1.16.2.2.1.2.4.68 = 68 +.1.3.6.1.2.1.16.2.2.1.2.4.69 = 69 +.1.3.6.1.2.1.16.2.2.1.2.4.70 = 70 +.1.3.6.1.2.1.16.2.2.1.2.4.71 = 71 +.1.3.6.1.2.1.16.2.2.1.2.4.72 = 72 +.1.3.6.1.2.1.16.2.2.1.2.4.73 = 73 +.1.3.6.1.2.1.16.2.2.1.2.4.74 = 74 +.1.3.6.1.2.1.16.2.2.1.2.4.75 = 75 +.1.3.6.1.2.1.16.2.2.1.2.4.76 = 76 +.1.3.6.1.2.1.16.2.2.1.2.4.77 = 77 +.1.3.6.1.2.1.16.2.2.1.2.4.78 = 78 +.1.3.6.1.2.1.16.2.2.1.2.4.79 = 79 +.1.3.6.1.2.1.16.2.2.1.2.4.80 = 80 +.1.3.6.1.2.1.16.2.2.1.2.4.81 = 81 +.1.3.6.1.2.1.16.2.2.1.2.4.82 = 82 +.1.3.6.1.2.1.16.2.2.1.2.4.83 = 83 +.1.3.6.1.2.1.16.2.2.1.3.1.1 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.24 = 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.25 = 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.26 = 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.27 = 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.28 = 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.29 = 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.30 = 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.31 = 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.32 = 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.33 = 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.34 = 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.35 = 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.36 = 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.37 = 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.38 = 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.39 = 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.40 = 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.41 = 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.42 = 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.43 = 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.44 = 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.45 = 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.46 = 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.47 = 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.48 = 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.49 = 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.50 = 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.51 = 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.52 = 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.53 = 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.54 = 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.55 = 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.56 = 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.57 = 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.58 = 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.59 = 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.60 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.61 = 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.62 = 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.63 = 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.64 = 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.65 = 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.66 = 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.67 = 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.68 = 0:0:34:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.69 = 0:0:34:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.70 = 0:0:35:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.71 = 0:0:35:30.31 +.1.3.6.1.2.1.16.2.2.1.3.1.72 = 0:0:36:00.31 +.1.3.6.1.2.1.16.2.2.1.3.1.73 = 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.74 = 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.75 = 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.76 = 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.77 = 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.78 = 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.79 = 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.80 = 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.81 = 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.1.82 = 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.1.83 = 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.1 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.24 = 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.25 = 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.26 = 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.27 = 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.28 = 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.29 = 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.30 = 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.31 = 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.32 = 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.33 = 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.34 = 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.35 = 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.36 = 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.37 = 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.38 = 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.39 = 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.40 = 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.41 = 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.42 = 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.43 = 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.44 = 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.45 = 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.46 = 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.47 = 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.48 = 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.49 = 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.50 = 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.51 = 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.52 = 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.53 = 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.54 = 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.55 = 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.56 = 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.57 = 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.58 = 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.59 = 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.60 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.61 = 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.62 = 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.63 = 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.64 = 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.65 = 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.66 = 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.67 = 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.68 = 0:0:34:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.69 = 0:0:34:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.70 = 0:0:35:00.31 +.1.3.6.1.2.1.16.2.2.1.3.2.71 = 0:0:35:30.31 +.1.3.6.1.2.1.16.2.2.1.3.2.72 = 0:0:36:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.73 = 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.74 = 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.75 = 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.76 = 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.77 = 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.78 = 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.79 = 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.80 = 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.81 = 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.2.82 = 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.2.83 = 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.1 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.24 = 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.25 = 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.26 = 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.27 = 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.28 = 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.29 = 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.30 = 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.31 = 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.32 = 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.33 = 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.34 = 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.35 = 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.36 = 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.37 = 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.38 = 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.39 = 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.40 = 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.41 = 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.42 = 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.43 = 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.44 = 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.45 = 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.46 = 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.47 = 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.48 = 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.49 = 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.50 = 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.51 = 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.52 = 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.53 = 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.54 = 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.55 = 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.56 = 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.57 = 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.58 = 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.59 = 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.60 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.61 = 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.62 = 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.63 = 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.64 = 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.65 = 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.66 = 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.67 = 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.68 = 0:0:34:00.31 +.1.3.6.1.2.1.16.2.2.1.3.3.69 = 0:0:34:30.31 +.1.3.6.1.2.1.16.2.2.1.3.3.70 = 0:0:35:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.71 = 0:0:35:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.72 = 0:0:36:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.73 = 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.74 = 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.75 = 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.76 = 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.77 = 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.78 = 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.79 = 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.80 = 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.81 = 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.3.82 = 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.3.83 = 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.1 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.24 = 0:0:12:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.25 = 0:0:12:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.26 = 0:0:13:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.27 = 0:0:13:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.28 = 0:0:14:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.29 = 0:0:14:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.30 = 0:0:15:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.31 = 0:0:15:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.32 = 0:0:16:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.33 = 0:0:16:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.34 = 0:0:17:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.35 = 0:0:17:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.36 = 0:0:18:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.37 = 0:0:18:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.38 = 0:0:19:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.39 = 0:0:19:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.40 = 0:0:20:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.41 = 0:0:20:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.42 = 0:0:21:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.43 = 0:0:21:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.44 = 0:0:22:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.45 = 0:0:22:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.46 = 0:0:23:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.47 = 0:0:23:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.48 = 0:0:24:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.49 = 0:0:24:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.50 = 0:0:25:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.51 = 0:0:25:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.52 = 0:0:26:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.53 = 0:0:26:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.54 = 0:0:27:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.55 = 0:0:27:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.56 = 0:0:28:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.57 = 0:0:28:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.58 = 0:0:29:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.59 = 0:0:29:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.60 = 0:0:30:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.61 = 0:0:30:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.62 = 0:0:31:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.63 = 0:0:31:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.64 = 0:0:32:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.65 = 0:0:32:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.66 = 0:0:33:00.31 +.1.3.6.1.2.1.16.2.2.1.3.4.67 = 0:0:33:30.31 +.1.3.6.1.2.1.16.2.2.1.3.4.68 = 0:0:34:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.69 = 0:0:34:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.70 = 0:0:35:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.71 = 0:0:35:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.72 = 0:0:36:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.73 = 0:0:36:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.74 = 0:0:37:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.75 = 0:0:37:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.76 = 0:0:38:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.77 = 0:0:38:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.78 = 0:0:39:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.79 = 0:0:39:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.80 = 0:0:40:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.81 = 0:0:40:30.32 +.1.3.6.1.2.1.16.2.2.1.3.4.82 = 0:0:41:00.32 +.1.3.6.1.2.1.16.2.2.1.3.4.83 = 0:0:41:30.32 +.1.3.6.1.2.1.16.2.2.1.4.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.24 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.4.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.24 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.4.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.4.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.4.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.5.1.1 = 9600 +.1.3.6.1.2.1.16.2.2.1.5.1.25 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.26 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.27 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.28 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.29 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.30 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.31 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.32 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.33 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.34 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.35 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.36 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.37 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.38 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.39 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.40 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.41 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.42 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.43 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.44 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.45 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.46 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.47 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.48 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.49 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.50 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.51 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.52 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.53 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.54 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.55 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.56 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.57 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.58 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.59 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.60 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.61 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.62 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.63 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.64 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.65 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.66 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.67 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.68 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.69 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.70 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.71 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.72 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.73 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.74 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.75 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.76 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.77 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.78 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.79 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.80 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.81 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.82 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.83 = 160 +.1.3.6.1.2.1.16.2.2.1.5.1.84 = 160 +.1.3.6.1.2.1.16.2.2.1.5.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.5.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.5.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.5.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.6.1.1 = 60 +.1.3.6.1.2.1.16.2.2.1.6.1.25 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.26 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.27 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.28 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.29 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.30 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.31 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.32 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.33 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.34 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.35 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.36 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.37 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.38 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.39 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.40 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.41 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.42 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.43 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.44 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.45 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.46 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.47 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.48 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.49 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.50 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.51 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.52 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.53 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.54 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.55 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.56 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.57 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.58 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.59 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.60 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.61 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.62 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.63 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.64 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.65 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.66 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.67 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.68 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.69 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.70 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.71 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.72 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.73 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.74 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.75 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.76 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.77 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.78 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.79 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.80 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.81 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.82 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.83 = 1 +.1.3.6.1.2.1.16.2.2.1.6.1.84 = 1 +.1.3.6.1.2.1.16.2.2.1.6.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.6.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.6.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.6.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.7.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.7.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.7.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.7.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.8.1.1 = 60 +.1.3.6.1.2.1.16.2.2.1.8.1.25 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.26 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.27 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.28 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.29 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.30 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.31 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.32 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.33 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.34 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.35 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.36 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.37 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.38 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.39 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.40 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.41 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.42 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.43 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.44 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.45 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.46 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.47 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.48 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.49 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.50 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.51 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.52 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.53 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.54 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.55 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.56 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.57 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.58 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.59 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.60 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.61 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.62 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.63 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.64 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.65 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.66 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.67 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.68 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.69 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.70 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.71 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.72 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.73 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.74 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.75 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.76 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.77 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.78 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.79 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.80 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.81 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.82 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.83 = 1 +.1.3.6.1.2.1.16.2.2.1.8.1.84 = 1 +.1.3.6.1.2.1.16.2.2.1.8.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.8.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.8.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.8.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.9.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.9.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.9.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.9.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.10.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.10.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.10.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.10.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.11.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.11.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.11.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.11.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.12.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.12.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.12.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.12.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.13.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.13.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.13.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.25 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.13.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.25 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.14.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.25 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.14.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.25 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.14.3.85 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.14.4.85 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.1 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.26 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.27 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.28 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.29 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.30 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.31 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.32 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.33 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.34 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.35 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.36 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.37 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.38 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.39 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.40 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.41 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.42 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.43 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.44 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.45 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.46 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.47 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.48 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.49 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.50 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.51 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.52 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.53 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.54 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.55 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.56 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.57 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.58 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.59 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.60 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.61 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.62 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.63 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.64 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.65 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.66 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.67 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.68 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.69 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.70 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.71 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.72 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.73 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.74 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.75 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.76 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.77 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.78 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.79 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.80 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.81 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.82 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.83 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.84 = 0 +.1.3.6.1.2.1.16.2.2.1.15.1.85 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.1 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.26 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.27 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.28 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.29 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.30 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.31 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.32 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.33 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.34 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.35 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.36 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.37 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.38 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.39 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.40 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.41 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.42 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.43 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.44 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.45 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.46 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.47 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.48 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.49 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.50 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.51 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.52 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.53 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.54 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.55 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.56 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.57 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.58 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.59 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.60 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.61 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.62 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.63 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.64 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.65 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.66 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.67 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.68 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.69 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.70 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.71 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.72 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.73 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.74 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.75 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.76 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.77 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.78 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.79 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.80 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.81 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.82 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.83 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.84 = 0 +.1.3.6.1.2.1.16.2.2.1.15.2.85 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.1 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.26 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.27 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.28 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.29 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.30 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.31 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.32 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.33 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.34 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.35 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.36 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.37 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.38 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.39 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.40 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.41 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.42 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.43 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.44 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.45 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.46 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.47 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.48 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.49 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.50 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.51 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.52 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.53 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.54 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.55 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.56 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.57 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.58 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.59 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.60 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.61 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.62 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.63 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.64 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.65 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.66 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.67 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.68 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.69 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.70 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.71 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.72 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.73 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.74 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.75 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.76 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.77 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.78 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.79 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.80 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.81 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.82 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.83 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.84 = 0 +.1.3.6.1.2.1.16.2.2.1.15.3.85 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.1 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.26 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.27 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.28 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.29 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.30 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.31 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.32 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.33 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.34 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.35 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.36 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.37 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.38 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.39 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.40 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.41 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.42 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.43 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.44 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.45 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.46 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.47 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.48 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.49 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.50 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.51 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.52 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.53 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.54 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.55 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.56 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.57 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.58 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.59 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.60 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.61 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.62 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.63 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.64 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.65 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.66 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.67 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.68 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.69 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.70 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.71 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.72 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.73 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.74 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.75 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.76 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.77 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.78 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.79 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.80 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.81 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.82 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.83 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.84 = 0 +.1.3.6.1.2.1.16.2.2.1.15.4.85 = 0 +.1.3.6.1.2.1.16.2.6.1.1.1.61 = 0 +.1.3.6.1.2.1.16.2.6.1.1.2.62 = 0 +.1.3.6.1.2.1.16.2.6.1.1.3.63 = 0 +.1.3.6.1.2.1.16.2.6.1.1.4.64 = 0 +.1.3.6.1.2.1.16.2.6.1.1.5.65 = 0 +.1.3.6.1.2.1.16.2.6.1.1.6.66 = 0 +.1.3.6.1.2.1.16.2.6.1.1.7.67 = 0 +.1.3.6.1.2.1.16.2.6.1.1.8.68 = 0 +.1.3.6.1.2.1.16.2.6.1.1.9.69 = 0 +.1.3.6.1.2.1.16.2.6.1.1.10.70 = 0 +.1.3.6.1.2.1.16.2.6.1.1.11.71 = 0 +.1.3.6.1.2.1.16.2.6.1.1.12.72 = 0 +.1.3.6.1.2.1.16.2.6.1.1.13.73 = 0 +.1.3.6.1.2.1.16.2.6.1.1.14.74 = 0 +.1.3.6.1.2.1.16.2.6.1.1.15.75 = 0 +.1.3.6.1.2.1.16.2.6.1.1.16.76 = 0 +.1.3.6.1.2.1.16.2.6.1.1.17.77 = 0 +.1.3.6.1.2.1.16.2.6.1.1.18.78 = 0 +.1.3.6.1.2.1.16.2.6.1.1.19.79 = 0 +.1.3.6.1.2.1.16.2.6.1.1.20.80 = 0 +.1.3.6.1.2.1.16.2.6.1.1.21.81 = 0 +.1.3.6.1.2.1.16.2.6.1.1.22.82 = 0 +.1.3.6.1.2.1.16.2.6.1.1.23.83 = 0 +.1.3.6.1.2.1.16.2.6.1.1.24.84 = 0 +.1.3.6.1.2.1.16.2.6.1.1.25.85 = 0 +.1.3.6.1.2.1.16.2.6.1.1.26.26 = 0 +.1.3.6.1.2.1.16.2.6.1.1.27.27 = 0 +.1.3.6.1.2.1.16.2.6.1.1.28.28 = 0 +.1.3.6.1.2.1.16.2.6.1.1.29.29 = 0 +.1.3.6.1.2.1.16.2.6.1.1.30.30 = 0 +.1.3.6.1.2.1.16.2.6.1.1.31.31 = 0 +.1.3.6.1.2.1.16.2.6.1.1.32.32 = 0 +.1.3.6.1.2.1.16.2.6.1.1.33.33 = 0 +.1.3.6.1.2.1.16.2.6.1.1.34.34 = 0 +.1.3.6.1.2.1.16.2.6.1.1.35.35 = 0 +.1.3.6.1.2.1.16.2.6.1.1.36.36 = 0 +.1.3.6.1.2.1.16.2.6.1.1.37.37 = 0 +.1.3.6.1.2.1.16.2.6.1.1.38.38 = 0 +.1.3.6.1.2.1.16.2.6.1.1.39.39 = 0 +.1.3.6.1.2.1.16.2.6.1.1.40.40 = 0 +.1.3.6.1.2.1.16.2.6.1.1.41.41 = 0 +.1.3.6.1.2.1.16.2.6.1.1.42.42 = 0 +.1.3.6.1.2.1.16.2.6.1.1.43.43 = 0 +.1.3.6.1.2.1.16.2.6.1.1.44.44 = 0 +.1.3.6.1.2.1.16.2.6.1.1.45.45 = 0 +.1.3.6.1.2.1.16.2.6.1.1.46.46 = 0 +.1.3.6.1.2.1.16.2.6.1.1.47.47 = 0 +.1.3.6.1.2.1.16.2.6.1.1.48.48 = 0 +.1.3.6.1.2.1.16.2.6.1.1.49.49 = 0 +.1.3.6.1.2.1.16.2.6.1.1.50.50 = 0 +.1.3.6.1.2.1.16.2.6.1.1.51.51 = 0 +.1.3.6.1.2.1.16.2.6.1.1.52.52 = 0 +.1.3.6.1.2.1.16.2.6.1.1.53.53 = 0 +.1.3.6.1.2.1.16.2.6.1.1.54.54 = 0 +.1.3.6.1.2.1.16.2.6.1.1.55.55 = 0 +.1.3.6.1.2.1.16.2.6.1.1.56.56 = 0 +.1.3.6.1.2.1.16.2.6.1.1.57.57 = 0 +.1.3.6.1.2.1.16.2.6.1.1.58.58 = 0 +.1.3.6.1.2.1.16.2.6.1.1.59.59 = 0 +.1.3.6.1.2.1.16.2.6.1.1.60.60 = 0 +.1.3.6.1.2.1.16.2.6.1.1.61.1 = 0 +.1.3.6.1.2.1.16.2.6.1.1.62.61 = 0 +.1.3.6.1.2.1.16.2.6.1.1.63.62 = 0 +.1.3.6.1.2.1.16.2.6.1.1.64.63 = 0 +.1.3.6.1.2.1.16.2.6.1.1.65.64 = 0 +.1.3.6.1.2.1.16.2.6.1.1.66.65 = 0 +.1.3.6.1.2.1.16.2.6.1.1.67.66 = 0 +.1.3.6.1.2.1.16.2.6.1.1.68.67 = 0 +.1.3.6.1.2.1.16.2.6.1.1.69.68 = 0 +.1.3.6.1.2.1.16.2.6.1.1.70.69 = 0 +.1.3.6.1.2.1.16.2.6.1.1.71.70 = 0 +.1.3.6.1.2.1.16.2.6.1.1.72.71 = 0 +.1.3.6.1.2.1.16.2.6.1.1.73.72 = 0 +.1.3.6.1.2.1.16.2.6.1.1.74.73 = 0 +.1.3.6.1.2.1.16.2.6.1.1.75.74 = 0 +.1.3.6.1.2.1.16.2.6.1.1.76.75 = 0 +.1.3.6.1.2.1.16.2.6.1.1.77.76 = 0 +.1.3.6.1.2.1.16.2.6.1.1.78.77 = 0 +.1.3.6.1.2.1.16.2.6.1.1.79.78 = 0 +.1.3.6.1.2.1.16.2.6.1.1.80.79 = 0 +.1.3.6.1.2.1.16.2.6.1.1.81.80 = 0 +.1.3.6.1.2.1.16.2.6.1.1.82.81 = 0 +.1.3.6.1.2.1.16.2.6.1.1.83.82 = 0 +.1.3.6.1.2.1.16.2.6.1.1.84.83 = 0 +.1.3.6.1.2.1.16.2.6.1.1.85.84 = 0 +.1.3.6.1.2.1.16.2.6.1.1.86.85 = 0 +.1.3.6.1.2.1.16.2.6.1.1.87.26 = 0 +.1.3.6.1.2.1.16.2.6.1.1.88.27 = 0 +.1.3.6.1.2.1.16.2.6.1.1.89.28 = 0 +.1.3.6.1.2.1.16.2.6.1.1.90.29 = 0 +.1.3.6.1.2.1.16.2.6.1.1.91.30 = 0 +.1.3.6.1.2.1.16.2.6.1.1.92.31 = 0 +.1.3.6.1.2.1.16.2.6.1.1.93.32 = 0 +.1.3.6.1.2.1.16.2.6.1.1.94.33 = 0 +.1.3.6.1.2.1.16.2.6.1.1.95.34 = 0 +.1.3.6.1.2.1.16.2.6.1.1.96.35 = 0 +.1.3.6.1.2.1.16.2.6.1.1.97.36 = 0 +.1.3.6.1.2.1.16.2.6.1.1.98.37 = 0 +.1.3.6.1.2.1.16.2.6.1.1.99.38 = 0 +.1.3.6.1.2.1.16.2.6.1.1.100.39 = 0 +.1.3.6.1.2.1.16.2.6.1.1.101.40 = 0 +.1.3.6.1.2.1.16.2.6.1.1.102.41 = 0 +.1.3.6.1.2.1.16.2.6.1.1.103.42 = 0 +.1.3.6.1.2.1.16.2.6.1.1.104.43 = 0 +.1.3.6.1.2.1.16.2.6.1.1.105.44 = 0 +.1.3.6.1.2.1.16.2.6.1.1.106.45 = 0 +.1.3.6.1.2.1.16.2.6.1.1.107.46 = 0 +.1.3.6.1.2.1.16.2.6.1.1.108.47 = 0 +.1.3.6.1.2.1.16.2.6.1.1.109.48 = 0 +.1.3.6.1.2.1.16.2.6.1.1.110.49 = 0 +.1.3.6.1.2.1.16.2.6.1.1.111.50 = 0 +.1.3.6.1.2.1.16.2.6.1.1.112.51 = 0 +.1.3.6.1.2.1.16.2.6.1.1.113.52 = 0 +.1.3.6.1.2.1.16.2.6.1.1.114.53 = 0 +.1.3.6.1.2.1.16.2.6.1.1.115.54 = 0 +.1.3.6.1.2.1.16.2.6.1.1.116.55 = 0 +.1.3.6.1.2.1.16.2.6.1.1.117.56 = 0 +.1.3.6.1.2.1.16.2.6.1.1.118.57 = 0 +.1.3.6.1.2.1.16.2.6.1.1.119.58 = 0 +.1.3.6.1.2.1.16.2.6.1.1.120.59 = 0 +.1.3.6.1.2.1.16.2.6.1.1.121.60 = 0 +.1.3.6.1.2.1.16.2.6.1.1.122.1 = 0 +.1.3.6.1.2.1.16.2.6.1.1.123.61 = 0 +.1.3.6.1.2.1.16.2.6.1.1.124.62 = 0 +.1.3.6.1.2.1.16.2.6.1.1.125.63 = 0 +.1.3.6.1.2.1.16.2.6.1.1.126.64 = 0 +.1.3.6.1.2.1.16.2.6.1.1.127.65 = 0 +.1.3.6.1.2.1.16.2.6.1.1.128.66 = 0 +.1.3.6.1.2.1.16.2.6.1.1.129.67 = 0 +.1.3.6.1.2.1.16.2.6.1.1.130.68 = 0 +.1.3.6.1.2.1.16.2.6.1.1.131.69 = 0 +.1.3.6.1.2.1.16.2.6.1.1.132.70 = 0 +.1.3.6.1.2.1.16.2.6.1.1.133.71 = 0 +.1.3.6.1.2.1.16.2.6.1.1.134.72 = 0 +.1.3.6.1.2.1.16.2.6.1.1.135.73 = 0 +.1.3.6.1.2.1.16.2.6.1.1.136.74 = 0 +.1.3.6.1.2.1.16.2.6.1.1.137.75 = 0 +.1.3.6.1.2.1.16.2.6.1.1.138.76 = 0 +.1.3.6.1.2.1.16.2.6.1.1.139.77 = 0 +.1.3.6.1.2.1.16.2.6.1.1.140.78 = 0 +.1.3.6.1.2.1.16.2.6.1.1.141.79 = 0 +.1.3.6.1.2.1.16.2.6.1.1.142.80 = 0 +.1.3.6.1.2.1.16.2.6.1.1.143.81 = 0 +.1.3.6.1.2.1.16.2.6.1.1.144.82 = 0 +.1.3.6.1.2.1.16.2.6.1.1.145.83 = 0 +.1.3.6.1.2.1.16.2.6.1.1.146.84 = 0 +.1.3.6.1.2.1.16.2.6.1.1.147.85 = 0 +.1.3.6.1.2.1.16.2.6.1.1.148.26 = 0 +.1.3.6.1.2.1.16.2.6.1.1.149.27 = 0 +.1.3.6.1.2.1.16.2.6.1.1.150.28 = 0 +.1.3.6.1.2.1.16.2.6.1.1.151.29 = 0 +.1.3.6.1.2.1.16.2.6.1.1.152.30 = 0 +.1.3.6.1.2.1.16.2.6.1.1.153.31 = 0 +.1.3.6.1.2.1.16.2.6.1.1.154.32 = 0 +.1.3.6.1.2.1.16.2.6.1.1.155.33 = 0 +.1.3.6.1.2.1.16.2.6.1.1.156.34 = 0 +.1.3.6.1.2.1.16.2.6.1.1.157.35 = 0 +.1.3.6.1.2.1.16.2.6.1.1.158.36 = 0 +.1.3.6.1.2.1.16.2.6.1.1.159.37 = 0 +.1.3.6.1.2.1.16.2.6.1.1.160.38 = 0 +.1.3.6.1.2.1.16.2.6.1.1.161.39 = 0 +.1.3.6.1.2.1.16.2.6.1.1.162.40 = 0 +.1.3.6.1.2.1.16.2.6.1.1.163.41 = 0 +.1.3.6.1.2.1.16.2.6.1.1.164.42 = 0 +.1.3.6.1.2.1.16.2.6.1.1.165.43 = 0 +.1.3.6.1.2.1.16.2.6.1.1.166.44 = 0 +.1.3.6.1.2.1.16.2.6.1.1.167.45 = 0 +.1.3.6.1.2.1.16.2.6.1.1.168.46 = 0 +.1.3.6.1.2.1.16.2.6.1.1.169.47 = 0 +.1.3.6.1.2.1.16.2.6.1.1.170.48 = 0 +.1.3.6.1.2.1.16.2.6.1.1.171.49 = 0 +.1.3.6.1.2.1.16.2.6.1.1.172.50 = 0 +.1.3.6.1.2.1.16.2.6.1.1.173.51 = 0 +.1.3.6.1.2.1.16.2.6.1.1.174.52 = 0 +.1.3.6.1.2.1.16.2.6.1.1.175.53 = 0 +.1.3.6.1.2.1.16.2.6.1.1.176.54 = 0 +.1.3.6.1.2.1.16.2.6.1.1.177.55 = 0 +.1.3.6.1.2.1.16.2.6.1.1.178.56 = 0 +.1.3.6.1.2.1.16.2.6.1.1.179.57 = 0 +.1.3.6.1.2.1.16.2.6.1.1.180.58 = 0 +.1.3.6.1.2.1.16.2.6.1.1.181.59 = 0 +.1.3.6.1.2.1.16.2.6.1.1.182.60 = 0 +.1.3.6.1.2.1.16.2.6.1.1.183.1 = 0 +.1.3.6.1.2.1.16.2.6.1.1.184.61 = 0 +.1.3.6.1.2.1.16.2.6.1.1.185.62 = 0 +.1.3.6.1.2.1.16.2.6.1.1.186.63 = 0 +.1.3.6.1.2.1.16.2.6.1.1.187.64 = 0 +.1.3.6.1.2.1.16.2.6.1.1.188.65 = 0 +.1.3.6.1.2.1.16.2.6.1.1.189.66 = 0 +.1.3.6.1.2.1.16.2.6.1.1.190.67 = 0 +.1.3.6.1.2.1.16.2.6.1.1.191.68 = 0 +.1.3.6.1.2.1.16.2.6.1.1.192.69 = 0 +.1.3.6.1.2.1.16.2.6.1.1.193.70 = 0 +.1.3.6.1.2.1.16.2.6.1.1.194.71 = 0 +.1.3.6.1.2.1.16.2.6.1.1.195.72 = 0 +.1.3.6.1.2.1.16.2.6.1.1.196.73 = 0 +.1.3.6.1.2.1.16.2.6.1.1.197.74 = 0 +.1.3.6.1.2.1.16.2.6.1.1.198.75 = 0 +.1.3.6.1.2.1.16.2.6.1.1.199.76 = 0 +.1.3.6.1.2.1.16.2.6.1.1.200.77 = 0 +.1.3.6.1.2.1.16.2.6.1.1.201.78 = 0 +.1.3.6.1.2.1.16.2.6.1.1.202.79 = 0 +.1.3.6.1.2.1.16.2.6.1.1.203.80 = 0 +.1.3.6.1.2.1.16.2.6.1.1.204.81 = 0 +.1.3.6.1.2.1.16.2.6.1.1.205.82 = 0 +.1.3.6.1.2.1.16.2.6.1.1.206.83 = 0 +.1.3.6.1.2.1.16.2.6.1.1.207.84 = 0 +.1.3.6.1.2.1.16.2.6.1.1.208.85 = 0 +.1.3.6.1.2.1.16.2.6.1.1.209.26 = 0 +.1.3.6.1.2.1.16.2.6.1.1.210.27 = 0 +.1.3.6.1.2.1.16.2.6.1.1.211.28 = 0 +.1.3.6.1.2.1.16.2.6.1.1.212.29 = 0 +.1.3.6.1.2.1.16.2.6.1.1.213.30 = 0 +.1.3.6.1.2.1.16.2.6.1.1.214.31 = 0 +.1.3.6.1.2.1.16.2.6.1.1.215.32 = 0 +.1.3.6.1.2.1.16.2.6.1.1.216.33 = 0 +.1.3.6.1.2.1.16.2.6.1.1.217.34 = 0 +.1.3.6.1.2.1.16.2.6.1.1.218.35 = 0 +.1.3.6.1.2.1.16.2.6.1.1.219.36 = 0 +.1.3.6.1.2.1.16.2.6.1.1.220.37 = 0 +.1.3.6.1.2.1.16.2.6.1.1.221.38 = 0 +.1.3.6.1.2.1.16.2.6.1.1.222.39 = 0 +.1.3.6.1.2.1.16.2.6.1.1.223.40 = 0 +.1.3.6.1.2.1.16.2.6.1.1.224.41 = 0 +.1.3.6.1.2.1.16.2.6.1.1.225.42 = 0 +.1.3.6.1.2.1.16.2.6.1.1.226.43 = 0 +.1.3.6.1.2.1.16.2.6.1.1.227.44 = 0 +.1.3.6.1.2.1.16.2.6.1.1.228.45 = 0 +.1.3.6.1.2.1.16.2.6.1.1.229.46 = 0 +.1.3.6.1.2.1.16.2.6.1.1.230.47 = 0 +.1.3.6.1.2.1.16.2.6.1.1.231.48 = 0 +.1.3.6.1.2.1.16.2.6.1.1.232.49 = 0 +.1.3.6.1.2.1.16.2.6.1.1.233.50 = 0 +.1.3.6.1.2.1.16.2.6.1.1.234.51 = 0 +.1.3.6.1.2.1.16.2.6.1.1.235.52 = 0 +.1.3.6.1.2.1.16.2.6.1.1.236.53 = 0 +.1.3.6.1.2.1.16.2.6.1.1.237.54 = 0 +.1.3.6.1.2.1.16.2.6.1.1.238.55 = 0 +.1.3.6.1.2.1.16.2.6.1.1.239.56 = 0 +.1.3.6.1.2.1.16.2.6.1.1.240.57 = 0 +.1.3.6.1.2.1.16.2.6.1.1.241.58 = 0 +.1.3.6.1.2.1.16.2.6.1.1.242.59 = 0 +.1.3.6.1.2.1.16.2.6.1.1.243.60 = 0 +.1.3.6.1.2.1.16.2.6.1.1.244.1 = 0 +.1.3.6.1.2.1.16.2.6.1.2.1.61 = 1 +.1.3.6.1.2.1.16.2.6.1.2.2.62 = 1 +.1.3.6.1.2.1.16.2.6.1.2.3.63 = 1 +.1.3.6.1.2.1.16.2.6.1.2.4.64 = 1 +.1.3.6.1.2.1.16.2.6.1.2.5.65 = 1 +.1.3.6.1.2.1.16.2.6.1.2.6.66 = 1 +.1.3.6.1.2.1.16.2.6.1.2.7.67 = 1 +.1.3.6.1.2.1.16.2.6.1.2.8.68 = 1 +.1.3.6.1.2.1.16.2.6.1.2.9.69 = 1 +.1.3.6.1.2.1.16.2.6.1.2.10.70 = 1 +.1.3.6.1.2.1.16.2.6.1.2.11.71 = 1 +.1.3.6.1.2.1.16.2.6.1.2.12.72 = 1 +.1.3.6.1.2.1.16.2.6.1.2.13.73 = 1 +.1.3.6.1.2.1.16.2.6.1.2.14.74 = 1 +.1.3.6.1.2.1.16.2.6.1.2.15.75 = 1 +.1.3.6.1.2.1.16.2.6.1.2.16.76 = 1 +.1.3.6.1.2.1.16.2.6.1.2.17.77 = 1 +.1.3.6.1.2.1.16.2.6.1.2.18.78 = 1 +.1.3.6.1.2.1.16.2.6.1.2.19.79 = 1 +.1.3.6.1.2.1.16.2.6.1.2.20.80 = 1 +.1.3.6.1.2.1.16.2.6.1.2.21.81 = 1 +.1.3.6.1.2.1.16.2.6.1.2.22.82 = 1 +.1.3.6.1.2.1.16.2.6.1.2.23.83 = 1 +.1.3.6.1.2.1.16.2.6.1.2.24.84 = 1 +.1.3.6.1.2.1.16.2.6.1.2.25.85 = 1 +.1.3.6.1.2.1.16.2.6.1.2.26.26 = 1 +.1.3.6.1.2.1.16.2.6.1.2.27.27 = 1 +.1.3.6.1.2.1.16.2.6.1.2.28.28 = 1 +.1.3.6.1.2.1.16.2.6.1.2.29.29 = 1 +.1.3.6.1.2.1.16.2.6.1.2.30.30 = 1 +.1.3.6.1.2.1.16.2.6.1.2.31.31 = 1 +.1.3.6.1.2.1.16.2.6.1.2.32.32 = 1 +.1.3.6.1.2.1.16.2.6.1.2.33.33 = 1 +.1.3.6.1.2.1.16.2.6.1.2.34.34 = 1 +.1.3.6.1.2.1.16.2.6.1.2.35.35 = 1 +.1.3.6.1.2.1.16.2.6.1.2.36.36 = 1 +.1.3.6.1.2.1.16.2.6.1.2.37.37 = 1 +.1.3.6.1.2.1.16.2.6.1.2.38.38 = 1 +.1.3.6.1.2.1.16.2.6.1.2.39.39 = 1 +.1.3.6.1.2.1.16.2.6.1.2.40.40 = 1 +.1.3.6.1.2.1.16.2.6.1.2.41.41 = 1 +.1.3.6.1.2.1.16.2.6.1.2.42.42 = 1 +.1.3.6.1.2.1.16.2.6.1.2.43.43 = 1 +.1.3.6.1.2.1.16.2.6.1.2.44.44 = 1 +.1.3.6.1.2.1.16.2.6.1.2.45.45 = 1 +.1.3.6.1.2.1.16.2.6.1.2.46.46 = 1 +.1.3.6.1.2.1.16.2.6.1.2.47.47 = 1 +.1.3.6.1.2.1.16.2.6.1.2.48.48 = 1 +.1.3.6.1.2.1.16.2.6.1.2.49.49 = 1 +.1.3.6.1.2.1.16.2.6.1.2.50.50 = 1 +.1.3.6.1.2.1.16.2.6.1.2.51.51 = 1 +.1.3.6.1.2.1.16.2.6.1.2.52.52 = 1 +.1.3.6.1.2.1.16.2.6.1.2.53.53 = 1 +.1.3.6.1.2.1.16.2.6.1.2.54.54 = 1 +.1.3.6.1.2.1.16.2.6.1.2.55.55 = 1 +.1.3.6.1.2.1.16.2.6.1.2.56.56 = 1 +.1.3.6.1.2.1.16.2.6.1.2.57.57 = 1 +.1.3.6.1.2.1.16.2.6.1.2.58.58 = 1 +.1.3.6.1.2.1.16.2.6.1.2.59.59 = 1 +.1.3.6.1.2.1.16.2.6.1.2.60.60 = 1 +.1.3.6.1.2.1.16.2.6.1.2.61.1 = 60 +.1.3.6.1.2.1.16.2.6.1.2.62.61 = 0 +.1.3.6.1.2.1.16.2.6.1.2.63.62 = 0 +.1.3.6.1.2.1.16.2.6.1.2.64.63 = 0 +.1.3.6.1.2.1.16.2.6.1.2.65.64 = 0 +.1.3.6.1.2.1.16.2.6.1.2.66.65 = 0 +.1.3.6.1.2.1.16.2.6.1.2.67.66 = 0 +.1.3.6.1.2.1.16.2.6.1.2.68.67 = 0 +.1.3.6.1.2.1.16.2.6.1.2.69.68 = 0 +.1.3.6.1.2.1.16.2.6.1.2.70.69 = 0 +.1.3.6.1.2.1.16.2.6.1.2.71.70 = 0 +.1.3.6.1.2.1.16.2.6.1.2.72.71 = 0 +.1.3.6.1.2.1.16.2.6.1.2.73.72 = 0 +.1.3.6.1.2.1.16.2.6.1.2.74.73 = 0 +.1.3.6.1.2.1.16.2.6.1.2.75.74 = 0 +.1.3.6.1.2.1.16.2.6.1.2.76.75 = 0 +.1.3.6.1.2.1.16.2.6.1.2.77.76 = 0 +.1.3.6.1.2.1.16.2.6.1.2.78.77 = 0 +.1.3.6.1.2.1.16.2.6.1.2.79.78 = 0 +.1.3.6.1.2.1.16.2.6.1.2.80.79 = 0 +.1.3.6.1.2.1.16.2.6.1.2.81.80 = 0 +.1.3.6.1.2.1.16.2.6.1.2.82.81 = 0 +.1.3.6.1.2.1.16.2.6.1.2.83.82 = 0 +.1.3.6.1.2.1.16.2.6.1.2.84.83 = 0 +.1.3.6.1.2.1.16.2.6.1.2.85.84 = 0 +.1.3.6.1.2.1.16.2.6.1.2.86.85 = 0 +.1.3.6.1.2.1.16.2.6.1.2.87.26 = 0 +.1.3.6.1.2.1.16.2.6.1.2.88.27 = 0 +.1.3.6.1.2.1.16.2.6.1.2.89.28 = 0 +.1.3.6.1.2.1.16.2.6.1.2.90.29 = 0 +.1.3.6.1.2.1.16.2.6.1.2.91.30 = 0 +.1.3.6.1.2.1.16.2.6.1.2.92.31 = 0 +.1.3.6.1.2.1.16.2.6.1.2.93.32 = 0 +.1.3.6.1.2.1.16.2.6.1.2.94.33 = 0 +.1.3.6.1.2.1.16.2.6.1.2.95.34 = 0 +.1.3.6.1.2.1.16.2.6.1.2.96.35 = 0 +.1.3.6.1.2.1.16.2.6.1.2.97.36 = 0 +.1.3.6.1.2.1.16.2.6.1.2.98.37 = 0 +.1.3.6.1.2.1.16.2.6.1.2.99.38 = 0 +.1.3.6.1.2.1.16.2.6.1.2.100.39 = 0 +.1.3.6.1.2.1.16.2.6.1.2.101.40 = 0 +.1.3.6.1.2.1.16.2.6.1.2.102.41 = 0 +.1.3.6.1.2.1.16.2.6.1.2.103.42 = 0 +.1.3.6.1.2.1.16.2.6.1.2.104.43 = 0 +.1.3.6.1.2.1.16.2.6.1.2.105.44 = 0 +.1.3.6.1.2.1.16.2.6.1.2.106.45 = 0 +.1.3.6.1.2.1.16.2.6.1.2.107.46 = 0 +.1.3.6.1.2.1.16.2.6.1.2.108.47 = 0 +.1.3.6.1.2.1.16.2.6.1.2.109.48 = 0 +.1.3.6.1.2.1.16.2.6.1.2.110.49 = 0 +.1.3.6.1.2.1.16.2.6.1.2.111.50 = 0 +.1.3.6.1.2.1.16.2.6.1.2.112.51 = 0 +.1.3.6.1.2.1.16.2.6.1.2.113.52 = 0 +.1.3.6.1.2.1.16.2.6.1.2.114.53 = 0 +.1.3.6.1.2.1.16.2.6.1.2.115.54 = 0 +.1.3.6.1.2.1.16.2.6.1.2.116.55 = 0 +.1.3.6.1.2.1.16.2.6.1.2.117.56 = 0 +.1.3.6.1.2.1.16.2.6.1.2.118.57 = 0 +.1.3.6.1.2.1.16.2.6.1.2.119.58 = 0 +.1.3.6.1.2.1.16.2.6.1.2.120.59 = 0 +.1.3.6.1.2.1.16.2.6.1.2.121.60 = 0 +.1.3.6.1.2.1.16.2.6.1.2.122.1 = 0 +.1.3.6.1.2.1.16.2.6.1.2.123.61 = 0 +.1.3.6.1.2.1.16.2.6.1.2.124.62 = 0 +.1.3.6.1.2.1.16.2.6.1.2.125.63 = 0 +.1.3.6.1.2.1.16.2.6.1.2.126.64 = 0 +.1.3.6.1.2.1.16.2.6.1.2.127.65 = 0 +.1.3.6.1.2.1.16.2.6.1.2.128.66 = 0 +.1.3.6.1.2.1.16.2.6.1.2.129.67 = 0 +.1.3.6.1.2.1.16.2.6.1.2.130.68 = 0 +.1.3.6.1.2.1.16.2.6.1.2.131.69 = 0 +.1.3.6.1.2.1.16.2.6.1.2.132.70 = 0 +.1.3.6.1.2.1.16.2.6.1.2.133.71 = 0 +.1.3.6.1.2.1.16.2.6.1.2.134.72 = 0 +.1.3.6.1.2.1.16.2.6.1.2.135.73 = 0 +.1.3.6.1.2.1.16.2.6.1.2.136.74 = 0 +.1.3.6.1.2.1.16.2.6.1.2.137.75 = 0 +.1.3.6.1.2.1.16.2.6.1.2.138.76 = 0 +.1.3.6.1.2.1.16.2.6.1.2.139.77 = 0 +.1.3.6.1.2.1.16.2.6.1.2.140.78 = 0 +.1.3.6.1.2.1.16.2.6.1.2.141.79 = 0 +.1.3.6.1.2.1.16.2.6.1.2.142.80 = 0 +.1.3.6.1.2.1.16.2.6.1.2.143.81 = 0 +.1.3.6.1.2.1.16.2.6.1.2.144.82 = 0 +.1.3.6.1.2.1.16.2.6.1.2.145.83 = 0 +.1.3.6.1.2.1.16.2.6.1.2.146.84 = 0 +.1.3.6.1.2.1.16.2.6.1.2.147.85 = 0 +.1.3.6.1.2.1.16.2.6.1.2.148.26 = 0 +.1.3.6.1.2.1.16.2.6.1.2.149.27 = 0 +.1.3.6.1.2.1.16.2.6.1.2.150.28 = 0 +.1.3.6.1.2.1.16.2.6.1.2.151.29 = 0 +.1.3.6.1.2.1.16.2.6.1.2.152.30 = 0 +.1.3.6.1.2.1.16.2.6.1.2.153.31 = 0 +.1.3.6.1.2.1.16.2.6.1.2.154.32 = 0 +.1.3.6.1.2.1.16.2.6.1.2.155.33 = 0 +.1.3.6.1.2.1.16.2.6.1.2.156.34 = 0 +.1.3.6.1.2.1.16.2.6.1.2.157.35 = 0 +.1.3.6.1.2.1.16.2.6.1.2.158.36 = 0 +.1.3.6.1.2.1.16.2.6.1.2.159.37 = 0 +.1.3.6.1.2.1.16.2.6.1.2.160.38 = 0 +.1.3.6.1.2.1.16.2.6.1.2.161.39 = 0 +.1.3.6.1.2.1.16.2.6.1.2.162.40 = 0 +.1.3.6.1.2.1.16.2.6.1.2.163.41 = 0 +.1.3.6.1.2.1.16.2.6.1.2.164.42 = 0 +.1.3.6.1.2.1.16.2.6.1.2.165.43 = 0 +.1.3.6.1.2.1.16.2.6.1.2.166.44 = 0 +.1.3.6.1.2.1.16.2.6.1.2.167.45 = 0 +.1.3.6.1.2.1.16.2.6.1.2.168.46 = 0 +.1.3.6.1.2.1.16.2.6.1.2.169.47 = 0 +.1.3.6.1.2.1.16.2.6.1.2.170.48 = 0 +.1.3.6.1.2.1.16.2.6.1.2.171.49 = 0 +.1.3.6.1.2.1.16.2.6.1.2.172.50 = 0 +.1.3.6.1.2.1.16.2.6.1.2.173.51 = 0 +.1.3.6.1.2.1.16.2.6.1.2.174.52 = 0 +.1.3.6.1.2.1.16.2.6.1.2.175.53 = 0 +.1.3.6.1.2.1.16.2.6.1.2.176.54 = 0 +.1.3.6.1.2.1.16.2.6.1.2.177.55 = 0 +.1.3.6.1.2.1.16.2.6.1.2.178.56 = 0 +.1.3.6.1.2.1.16.2.6.1.2.179.57 = 0 +.1.3.6.1.2.1.16.2.6.1.2.180.58 = 0 +.1.3.6.1.2.1.16.2.6.1.2.181.59 = 0 +.1.3.6.1.2.1.16.2.6.1.2.182.60 = 0 +.1.3.6.1.2.1.16.2.6.1.2.183.1 = 0 +.1.3.6.1.2.1.16.2.6.1.2.184.61 = 0 +.1.3.6.1.2.1.16.2.6.1.2.185.62 = 0 +.1.3.6.1.2.1.16.2.6.1.2.186.63 = 0 +.1.3.6.1.2.1.16.2.6.1.2.187.64 = 0 +.1.3.6.1.2.1.16.2.6.1.2.188.65 = 0 +.1.3.6.1.2.1.16.2.6.1.2.189.66 = 0 +.1.3.6.1.2.1.16.2.6.1.2.190.67 = 0 +.1.3.6.1.2.1.16.2.6.1.2.191.68 = 0 +.1.3.6.1.2.1.16.2.6.1.2.192.69 = 0 +.1.3.6.1.2.1.16.2.6.1.2.193.70 = 0 +.1.3.6.1.2.1.16.2.6.1.2.194.71 = 0 +.1.3.6.1.2.1.16.2.6.1.2.195.72 = 0 +.1.3.6.1.2.1.16.2.6.1.2.196.73 = 0 +.1.3.6.1.2.1.16.2.6.1.2.197.74 = 0 +.1.3.6.1.2.1.16.2.6.1.2.198.75 = 0 +.1.3.6.1.2.1.16.2.6.1.2.199.76 = 0 +.1.3.6.1.2.1.16.2.6.1.2.200.77 = 0 +.1.3.6.1.2.1.16.2.6.1.2.201.78 = 0 +.1.3.6.1.2.1.16.2.6.1.2.202.79 = 0 +.1.3.6.1.2.1.16.2.6.1.2.203.80 = 0 +.1.3.6.1.2.1.16.2.6.1.2.204.81 = 0 +.1.3.6.1.2.1.16.2.6.1.2.205.82 = 0 +.1.3.6.1.2.1.16.2.6.1.2.206.83 = 0 +.1.3.6.1.2.1.16.2.6.1.2.207.84 = 0 +.1.3.6.1.2.1.16.2.6.1.2.208.85 = 0 +.1.3.6.1.2.1.16.2.6.1.2.209.26 = 0 +.1.3.6.1.2.1.16.2.6.1.2.210.27 = 0 +.1.3.6.1.2.1.16.2.6.1.2.211.28 = 0 +.1.3.6.1.2.1.16.2.6.1.2.212.29 = 0 +.1.3.6.1.2.1.16.2.6.1.2.213.30 = 0 +.1.3.6.1.2.1.16.2.6.1.2.214.31 = 0 +.1.3.6.1.2.1.16.2.6.1.2.215.32 = 0 +.1.3.6.1.2.1.16.2.6.1.2.216.33 = 0 +.1.3.6.1.2.1.16.2.6.1.2.217.34 = 0 +.1.3.6.1.2.1.16.2.6.1.2.218.35 = 0 +.1.3.6.1.2.1.16.2.6.1.2.219.36 = 0 +.1.3.6.1.2.1.16.2.6.1.2.220.37 = 0 +.1.3.6.1.2.1.16.2.6.1.2.221.38 = 0 +.1.3.6.1.2.1.16.2.6.1.2.222.39 = 0 +.1.3.6.1.2.1.16.2.6.1.2.223.40 = 0 +.1.3.6.1.2.1.16.2.6.1.2.224.41 = 0 +.1.3.6.1.2.1.16.2.6.1.2.225.42 = 0 +.1.3.6.1.2.1.16.2.6.1.2.226.43 = 0 +.1.3.6.1.2.1.16.2.6.1.2.227.44 = 0 +.1.3.6.1.2.1.16.2.6.1.2.228.45 = 0 +.1.3.6.1.2.1.16.2.6.1.2.229.46 = 0 +.1.3.6.1.2.1.16.2.6.1.2.230.47 = 0 +.1.3.6.1.2.1.16.2.6.1.2.231.48 = 0 +.1.3.6.1.2.1.16.2.6.1.2.232.49 = 0 +.1.3.6.1.2.1.16.2.6.1.2.233.50 = 0 +.1.3.6.1.2.1.16.2.6.1.2.234.51 = 0 +.1.3.6.1.2.1.16.2.6.1.2.235.52 = 0 +.1.3.6.1.2.1.16.2.6.1.2.236.53 = 0 +.1.3.6.1.2.1.16.2.6.1.2.237.54 = 0 +.1.3.6.1.2.1.16.2.6.1.2.238.55 = 0 +.1.3.6.1.2.1.16.2.6.1.2.239.56 = 0 +.1.3.6.1.2.1.16.2.6.1.2.240.57 = 0 +.1.3.6.1.2.1.16.2.6.1.2.241.58 = 0 +.1.3.6.1.2.1.16.2.6.1.2.242.59 = 0 +.1.3.6.1.2.1.16.2.6.1.2.243.60 = 0 +.1.3.6.1.2.1.16.2.6.1.2.244.1 = 0 +.1.3.6.1.2.1.16.2.6.1.3.1.61 = 0 +.1.3.6.1.2.1.16.2.6.1.3.2.62 = 0 +.1.3.6.1.2.1.16.2.6.1.3.3.63 = 0 +.1.3.6.1.2.1.16.2.6.1.3.4.64 = 0 +.1.3.6.1.2.1.16.2.6.1.3.5.65 = 0 +.1.3.6.1.2.1.16.2.6.1.3.6.66 = 0 +.1.3.6.1.2.1.16.2.6.1.3.7.67 = 0 +.1.3.6.1.2.1.16.2.6.1.3.8.68 = 0 +.1.3.6.1.2.1.16.2.6.1.3.9.69 = 0 +.1.3.6.1.2.1.16.2.6.1.3.10.70 = 0 +.1.3.6.1.2.1.16.2.6.1.3.11.71 = 0 +.1.3.6.1.2.1.16.2.6.1.3.12.72 = 0 +.1.3.6.1.2.1.16.2.6.1.3.13.73 = 0 +.1.3.6.1.2.1.16.2.6.1.3.14.74 = 0 +.1.3.6.1.2.1.16.2.6.1.3.15.75 = 0 +.1.3.6.1.2.1.16.2.6.1.3.16.76 = 0 +.1.3.6.1.2.1.16.2.6.1.3.17.77 = 0 +.1.3.6.1.2.1.16.2.6.1.3.18.78 = 0 +.1.3.6.1.2.1.16.2.6.1.3.19.79 = 0 +.1.3.6.1.2.1.16.2.6.1.3.20.80 = 0 +.1.3.6.1.2.1.16.2.6.1.3.21.81 = 0 +.1.3.6.1.2.1.16.2.6.1.3.22.82 = 0 +.1.3.6.1.2.1.16.2.6.1.3.23.83 = 0 +.1.3.6.1.2.1.16.2.6.1.3.24.84 = 0 +.1.3.6.1.2.1.16.2.6.1.3.25.85 = 0 +.1.3.6.1.2.1.16.2.6.1.3.26.26 = 0 +.1.3.6.1.2.1.16.2.6.1.3.27.27 = 0 +.1.3.6.1.2.1.16.2.6.1.3.28.28 = 0 +.1.3.6.1.2.1.16.2.6.1.3.29.29 = 0 +.1.3.6.1.2.1.16.2.6.1.3.30.30 = 0 +.1.3.6.1.2.1.16.2.6.1.3.31.31 = 0 +.1.3.6.1.2.1.16.2.6.1.3.32.32 = 0 +.1.3.6.1.2.1.16.2.6.1.3.33.33 = 0 +.1.3.6.1.2.1.16.2.6.1.3.34.34 = 0 +.1.3.6.1.2.1.16.2.6.1.3.35.35 = 0 +.1.3.6.1.2.1.16.2.6.1.3.36.36 = 0 +.1.3.6.1.2.1.16.2.6.1.3.37.37 = 0 +.1.3.6.1.2.1.16.2.6.1.3.38.38 = 0 +.1.3.6.1.2.1.16.2.6.1.3.39.39 = 0 +.1.3.6.1.2.1.16.2.6.1.3.40.40 = 0 +.1.3.6.1.2.1.16.2.6.1.3.41.41 = 0 +.1.3.6.1.2.1.16.2.6.1.3.42.42 = 0 +.1.3.6.1.2.1.16.2.6.1.3.43.43 = 0 +.1.3.6.1.2.1.16.2.6.1.3.44.44 = 0 +.1.3.6.1.2.1.16.2.6.1.3.45.45 = 0 +.1.3.6.1.2.1.16.2.6.1.3.46.46 = 0 +.1.3.6.1.2.1.16.2.6.1.3.47.47 = 0 +.1.3.6.1.2.1.16.2.6.1.3.48.48 = 0 +.1.3.6.1.2.1.16.2.6.1.3.49.49 = 0 +.1.3.6.1.2.1.16.2.6.1.3.50.50 = 0 +.1.3.6.1.2.1.16.2.6.1.3.51.51 = 0 +.1.3.6.1.2.1.16.2.6.1.3.52.52 = 0 +.1.3.6.1.2.1.16.2.6.1.3.53.53 = 0 +.1.3.6.1.2.1.16.2.6.1.3.54.54 = 0 +.1.3.6.1.2.1.16.2.6.1.3.55.55 = 0 +.1.3.6.1.2.1.16.2.6.1.3.56.56 = 0 +.1.3.6.1.2.1.16.2.6.1.3.57.57 = 0 +.1.3.6.1.2.1.16.2.6.1.3.58.58 = 0 +.1.3.6.1.2.1.16.2.6.1.3.59.59 = 0 +.1.3.6.1.2.1.16.2.6.1.3.60.60 = 0 +.1.3.6.1.2.1.16.2.6.1.3.61.1 = 0 +.1.3.6.1.2.1.16.2.6.1.3.62.61 = 0 +.1.3.6.1.2.1.16.2.6.1.3.63.62 = 0 +.1.3.6.1.2.1.16.2.6.1.3.64.63 = 0 +.1.3.6.1.2.1.16.2.6.1.3.65.64 = 0 +.1.3.6.1.2.1.16.2.6.1.3.66.65 = 0 +.1.3.6.1.2.1.16.2.6.1.3.67.66 = 0 +.1.3.6.1.2.1.16.2.6.1.3.68.67 = 0 +.1.3.6.1.2.1.16.2.6.1.3.69.68 = 0 +.1.3.6.1.2.1.16.2.6.1.3.70.69 = 0 +.1.3.6.1.2.1.16.2.6.1.3.71.70 = 0 +.1.3.6.1.2.1.16.2.6.1.3.72.71 = 0 +.1.3.6.1.2.1.16.2.6.1.3.73.72 = 0 +.1.3.6.1.2.1.16.2.6.1.3.74.73 = 0 +.1.3.6.1.2.1.16.2.6.1.3.75.74 = 0 +.1.3.6.1.2.1.16.2.6.1.3.76.75 = 0 +.1.3.6.1.2.1.16.2.6.1.3.77.76 = 0 +.1.3.6.1.2.1.16.2.6.1.3.78.77 = 0 +.1.3.6.1.2.1.16.2.6.1.3.79.78 = 0 +.1.3.6.1.2.1.16.2.6.1.3.80.79 = 0 +.1.3.6.1.2.1.16.2.6.1.3.81.80 = 0 +.1.3.6.1.2.1.16.2.6.1.3.82.81 = 0 +.1.3.6.1.2.1.16.2.6.1.3.83.82 = 0 +.1.3.6.1.2.1.16.2.6.1.3.84.83 = 0 +.1.3.6.1.2.1.16.2.6.1.3.85.84 = 0 +.1.3.6.1.2.1.16.2.6.1.3.86.85 = 0 +.1.3.6.1.2.1.16.2.6.1.3.87.26 = 0 +.1.3.6.1.2.1.16.2.6.1.3.88.27 = 0 +.1.3.6.1.2.1.16.2.6.1.3.89.28 = 0 +.1.3.6.1.2.1.16.2.6.1.3.90.29 = 0 +.1.3.6.1.2.1.16.2.6.1.3.91.30 = 0 +.1.3.6.1.2.1.16.2.6.1.3.92.31 = 0 +.1.3.6.1.2.1.16.2.6.1.3.93.32 = 0 +.1.3.6.1.2.1.16.2.6.1.3.94.33 = 0 +.1.3.6.1.2.1.16.2.6.1.3.95.34 = 0 +.1.3.6.1.2.1.16.2.6.1.3.96.35 = 0 +.1.3.6.1.2.1.16.2.6.1.3.97.36 = 0 +.1.3.6.1.2.1.16.2.6.1.3.98.37 = 0 +.1.3.6.1.2.1.16.2.6.1.3.99.38 = 0 +.1.3.6.1.2.1.16.2.6.1.3.100.39 = 0 +.1.3.6.1.2.1.16.2.6.1.3.101.40 = 0 +.1.3.6.1.2.1.16.2.6.1.3.102.41 = 0 +.1.3.6.1.2.1.16.2.6.1.3.103.42 = 0 +.1.3.6.1.2.1.16.2.6.1.3.104.43 = 0 +.1.3.6.1.2.1.16.2.6.1.3.105.44 = 0 +.1.3.6.1.2.1.16.2.6.1.3.106.45 = 0 +.1.3.6.1.2.1.16.2.6.1.3.107.46 = 0 +.1.3.6.1.2.1.16.2.6.1.3.108.47 = 0 +.1.3.6.1.2.1.16.2.6.1.3.109.48 = 0 +.1.3.6.1.2.1.16.2.6.1.3.110.49 = 0 +.1.3.6.1.2.1.16.2.6.1.3.111.50 = 0 +.1.3.6.1.2.1.16.2.6.1.3.112.51 = 0 +.1.3.6.1.2.1.16.2.6.1.3.113.52 = 0 +.1.3.6.1.2.1.16.2.6.1.3.114.53 = 0 +.1.3.6.1.2.1.16.2.6.1.3.115.54 = 0 +.1.3.6.1.2.1.16.2.6.1.3.116.55 = 0 +.1.3.6.1.2.1.16.2.6.1.3.117.56 = 0 +.1.3.6.1.2.1.16.2.6.1.3.118.57 = 0 +.1.3.6.1.2.1.16.2.6.1.3.119.58 = 0 +.1.3.6.1.2.1.16.2.6.1.3.120.59 = 0 +.1.3.6.1.2.1.16.2.6.1.3.121.60 = 0 +.1.3.6.1.2.1.16.2.6.1.3.122.1 = 0 +.1.3.6.1.2.1.16.2.6.1.3.123.61 = 0 +.1.3.6.1.2.1.16.2.6.1.3.124.62 = 0 +.1.3.6.1.2.1.16.2.6.1.3.125.63 = 0 +.1.3.6.1.2.1.16.2.6.1.3.126.64 = 0 +.1.3.6.1.2.1.16.2.6.1.3.127.65 = 0 +.1.3.6.1.2.1.16.2.6.1.3.128.66 = 0 +.1.3.6.1.2.1.16.2.6.1.3.129.67 = 0 +.1.3.6.1.2.1.16.2.6.1.3.130.68 = 0 +.1.3.6.1.2.1.16.2.6.1.3.131.69 = 0 +.1.3.6.1.2.1.16.2.6.1.3.132.70 = 0 +.1.3.6.1.2.1.16.2.6.1.3.133.71 = 0 +.1.3.6.1.2.1.16.2.6.1.3.134.72 = 0 +.1.3.6.1.2.1.16.2.6.1.3.135.73 = 0 +.1.3.6.1.2.1.16.2.6.1.3.136.74 = 0 +.1.3.6.1.2.1.16.2.6.1.3.137.75 = 0 +.1.3.6.1.2.1.16.2.6.1.3.138.76 = 0 +.1.3.6.1.2.1.16.2.6.1.3.139.77 = 0 +.1.3.6.1.2.1.16.2.6.1.3.140.78 = 0 +.1.3.6.1.2.1.16.2.6.1.3.141.79 = 0 +.1.3.6.1.2.1.16.2.6.1.3.142.80 = 0 +.1.3.6.1.2.1.16.2.6.1.3.143.81 = 0 +.1.3.6.1.2.1.16.2.6.1.3.144.82 = 0 +.1.3.6.1.2.1.16.2.6.1.3.145.83 = 0 +.1.3.6.1.2.1.16.2.6.1.3.146.84 = 0 +.1.3.6.1.2.1.16.2.6.1.3.147.85 = 0 +.1.3.6.1.2.1.16.2.6.1.3.148.26 = 0 +.1.3.6.1.2.1.16.2.6.1.3.149.27 = 0 +.1.3.6.1.2.1.16.2.6.1.3.150.28 = 0 +.1.3.6.1.2.1.16.2.6.1.3.151.29 = 0 +.1.3.6.1.2.1.16.2.6.1.3.152.30 = 0 +.1.3.6.1.2.1.16.2.6.1.3.153.31 = 0 +.1.3.6.1.2.1.16.2.6.1.3.154.32 = 0 +.1.3.6.1.2.1.16.2.6.1.3.155.33 = 0 +.1.3.6.1.2.1.16.2.6.1.3.156.34 = 0 +.1.3.6.1.2.1.16.2.6.1.3.157.35 = 0 +.1.3.6.1.2.1.16.2.6.1.3.158.36 = 0 +.1.3.6.1.2.1.16.2.6.1.3.159.37 = 0 +.1.3.6.1.2.1.16.2.6.1.3.160.38 = 0 +.1.3.6.1.2.1.16.2.6.1.3.161.39 = 0 +.1.3.6.1.2.1.16.2.6.1.3.162.40 = 0 +.1.3.6.1.2.1.16.2.6.1.3.163.41 = 0 +.1.3.6.1.2.1.16.2.6.1.3.164.42 = 0 +.1.3.6.1.2.1.16.2.6.1.3.165.43 = 0 +.1.3.6.1.2.1.16.2.6.1.3.166.44 = 0 +.1.3.6.1.2.1.16.2.6.1.3.167.45 = 0 +.1.3.6.1.2.1.16.2.6.1.3.168.46 = 0 +.1.3.6.1.2.1.16.2.6.1.3.169.47 = 0 +.1.3.6.1.2.1.16.2.6.1.3.170.48 = 0 +.1.3.6.1.2.1.16.2.6.1.3.171.49 = 0 +.1.3.6.1.2.1.16.2.6.1.3.172.50 = 0 +.1.3.6.1.2.1.16.2.6.1.3.173.51 = 0 +.1.3.6.1.2.1.16.2.6.1.3.174.52 = 0 +.1.3.6.1.2.1.16.2.6.1.3.175.53 = 0 +.1.3.6.1.2.1.16.2.6.1.3.176.54 = 0 +.1.3.6.1.2.1.16.2.6.1.3.177.55 = 0 +.1.3.6.1.2.1.16.2.6.1.3.178.56 = 0 +.1.3.6.1.2.1.16.2.6.1.3.179.57 = 0 +.1.3.6.1.2.1.16.2.6.1.3.180.58 = 0 +.1.3.6.1.2.1.16.2.6.1.3.181.59 = 0 +.1.3.6.1.2.1.16.2.6.1.3.182.60 = 0 +.1.3.6.1.2.1.16.2.6.1.3.183.1 = 0 +.1.3.6.1.2.1.16.2.6.1.3.184.61 = 0 +.1.3.6.1.2.1.16.2.6.1.3.185.62 = 0 +.1.3.6.1.2.1.16.2.6.1.3.186.63 = 0 +.1.3.6.1.2.1.16.2.6.1.3.187.64 = 0 +.1.3.6.1.2.1.16.2.6.1.3.188.65 = 0 +.1.3.6.1.2.1.16.2.6.1.3.189.66 = 0 +.1.3.6.1.2.1.16.2.6.1.3.190.67 = 0 +.1.3.6.1.2.1.16.2.6.1.3.191.68 = 0 +.1.3.6.1.2.1.16.2.6.1.3.192.69 = 0 +.1.3.6.1.2.1.16.2.6.1.3.193.70 = 0 +.1.3.6.1.2.1.16.2.6.1.3.194.71 = 0 +.1.3.6.1.2.1.16.2.6.1.3.195.72 = 0 +.1.3.6.1.2.1.16.2.6.1.3.196.73 = 0 +.1.3.6.1.2.1.16.2.6.1.3.197.74 = 0 +.1.3.6.1.2.1.16.2.6.1.3.198.75 = 0 +.1.3.6.1.2.1.16.2.6.1.3.199.76 = 0 +.1.3.6.1.2.1.16.2.6.1.3.200.77 = 0 +.1.3.6.1.2.1.16.2.6.1.3.201.78 = 0 +.1.3.6.1.2.1.16.2.6.1.3.202.79 = 0 +.1.3.6.1.2.1.16.2.6.1.3.203.80 = 0 +.1.3.6.1.2.1.16.2.6.1.3.204.81 = 0 +.1.3.6.1.2.1.16.2.6.1.3.205.82 = 0 +.1.3.6.1.2.1.16.2.6.1.3.206.83 = 0 +.1.3.6.1.2.1.16.2.6.1.3.207.84 = 0 +.1.3.6.1.2.1.16.2.6.1.3.208.85 = 0 +.1.3.6.1.2.1.16.2.6.1.3.209.26 = 0 +.1.3.6.1.2.1.16.2.6.1.3.210.27 = 0 +.1.3.6.1.2.1.16.2.6.1.3.211.28 = 0 +.1.3.6.1.2.1.16.2.6.1.3.212.29 = 0 +.1.3.6.1.2.1.16.2.6.1.3.213.30 = 0 +.1.3.6.1.2.1.16.2.6.1.3.214.31 = 0 +.1.3.6.1.2.1.16.2.6.1.3.215.32 = 0 +.1.3.6.1.2.1.16.2.6.1.3.216.33 = 0 +.1.3.6.1.2.1.16.2.6.1.3.217.34 = 0 +.1.3.6.1.2.1.16.2.6.1.3.218.35 = 0 +.1.3.6.1.2.1.16.2.6.1.3.219.36 = 0 +.1.3.6.1.2.1.16.2.6.1.3.220.37 = 0 +.1.3.6.1.2.1.16.2.6.1.3.221.38 = 0 +.1.3.6.1.2.1.16.2.6.1.3.222.39 = 0 +.1.3.6.1.2.1.16.2.6.1.3.223.40 = 0 +.1.3.6.1.2.1.16.2.6.1.3.224.41 = 0 +.1.3.6.1.2.1.16.2.6.1.3.225.42 = 0 +.1.3.6.1.2.1.16.2.6.1.3.226.43 = 0 +.1.3.6.1.2.1.16.2.6.1.3.227.44 = 0 +.1.3.6.1.2.1.16.2.6.1.3.228.45 = 0 +.1.3.6.1.2.1.16.2.6.1.3.229.46 = 0 +.1.3.6.1.2.1.16.2.6.1.3.230.47 = 0 +.1.3.6.1.2.1.16.2.6.1.3.231.48 = 0 +.1.3.6.1.2.1.16.2.6.1.3.232.49 = 0 +.1.3.6.1.2.1.16.2.6.1.3.233.50 = 0 +.1.3.6.1.2.1.16.2.6.1.3.234.51 = 0 +.1.3.6.1.2.1.16.2.6.1.3.235.52 = 0 +.1.3.6.1.2.1.16.2.6.1.3.236.53 = 0 +.1.3.6.1.2.1.16.2.6.1.3.237.54 = 0 +.1.3.6.1.2.1.16.2.6.1.3.238.55 = 0 +.1.3.6.1.2.1.16.2.6.1.3.239.56 = 0 +.1.3.6.1.2.1.16.2.6.1.3.240.57 = 0 +.1.3.6.1.2.1.16.2.6.1.3.241.58 = 0 +.1.3.6.1.2.1.16.2.6.1.3.242.59 = 0 +.1.3.6.1.2.1.16.2.6.1.3.243.60 = 0 +.1.3.6.1.2.1.16.2.6.1.3.244.1 = 0 +.1.3.6.1.2.1.16.2.6.1.4.1.61 = 160 +.1.3.6.1.2.1.16.2.6.1.4.2.62 = 160 +.1.3.6.1.2.1.16.2.6.1.4.3.63 = 160 +.1.3.6.1.2.1.16.2.6.1.4.4.64 = 160 +.1.3.6.1.2.1.16.2.6.1.4.5.65 = 160 +.1.3.6.1.2.1.16.2.6.1.4.6.66 = 160 +.1.3.6.1.2.1.16.2.6.1.4.7.67 = 160 +.1.3.6.1.2.1.16.2.6.1.4.8.68 = 160 +.1.3.6.1.2.1.16.2.6.1.4.9.69 = 160 +.1.3.6.1.2.1.16.2.6.1.4.10.70 = 160 +.1.3.6.1.2.1.16.2.6.1.4.11.71 = 160 +.1.3.6.1.2.1.16.2.6.1.4.12.72 = 160 +.1.3.6.1.2.1.16.2.6.1.4.13.73 = 160 +.1.3.6.1.2.1.16.2.6.1.4.14.74 = 160 +.1.3.6.1.2.1.16.2.6.1.4.15.75 = 160 +.1.3.6.1.2.1.16.2.6.1.4.16.76 = 160 +.1.3.6.1.2.1.16.2.6.1.4.17.77 = 160 +.1.3.6.1.2.1.16.2.6.1.4.18.78 = 160 +.1.3.6.1.2.1.16.2.6.1.4.19.79 = 160 +.1.3.6.1.2.1.16.2.6.1.4.20.80 = 160 +.1.3.6.1.2.1.16.2.6.1.4.21.81 = 160 +.1.3.6.1.2.1.16.2.6.1.4.22.82 = 160 +.1.3.6.1.2.1.16.2.6.1.4.23.83 = 160 +.1.3.6.1.2.1.16.2.6.1.4.24.84 = 160 +.1.3.6.1.2.1.16.2.6.1.4.25.85 = 160 +.1.3.6.1.2.1.16.2.6.1.4.26.26 = 160 +.1.3.6.1.2.1.16.2.6.1.4.27.27 = 160 +.1.3.6.1.2.1.16.2.6.1.4.28.28 = 160 +.1.3.6.1.2.1.16.2.6.1.4.29.29 = 160 +.1.3.6.1.2.1.16.2.6.1.4.30.30 = 160 +.1.3.6.1.2.1.16.2.6.1.4.31.31 = 160 +.1.3.6.1.2.1.16.2.6.1.4.32.32 = 160 +.1.3.6.1.2.1.16.2.6.1.4.33.33 = 160 +.1.3.6.1.2.1.16.2.6.1.4.34.34 = 160 +.1.3.6.1.2.1.16.2.6.1.4.35.35 = 160 +.1.3.6.1.2.1.16.2.6.1.4.36.36 = 160 +.1.3.6.1.2.1.16.2.6.1.4.37.37 = 160 +.1.3.6.1.2.1.16.2.6.1.4.38.38 = 160 +.1.3.6.1.2.1.16.2.6.1.4.39.39 = 160 +.1.3.6.1.2.1.16.2.6.1.4.40.40 = 160 +.1.3.6.1.2.1.16.2.6.1.4.41.41 = 160 +.1.3.6.1.2.1.16.2.6.1.4.42.42 = 160 +.1.3.6.1.2.1.16.2.6.1.4.43.43 = 160 +.1.3.6.1.2.1.16.2.6.1.4.44.44 = 160 +.1.3.6.1.2.1.16.2.6.1.4.45.45 = 160 +.1.3.6.1.2.1.16.2.6.1.4.46.46 = 160 +.1.3.6.1.2.1.16.2.6.1.4.47.47 = 160 +.1.3.6.1.2.1.16.2.6.1.4.48.48 = 160 +.1.3.6.1.2.1.16.2.6.1.4.49.49 = 160 +.1.3.6.1.2.1.16.2.6.1.4.50.50 = 160 +.1.3.6.1.2.1.16.2.6.1.4.51.51 = 160 +.1.3.6.1.2.1.16.2.6.1.4.52.52 = 160 +.1.3.6.1.2.1.16.2.6.1.4.53.53 = 160 +.1.3.6.1.2.1.16.2.6.1.4.54.54 = 160 +.1.3.6.1.2.1.16.2.6.1.4.55.55 = 160 +.1.3.6.1.2.1.16.2.6.1.4.56.56 = 160 +.1.3.6.1.2.1.16.2.6.1.4.57.57 = 160 +.1.3.6.1.2.1.16.2.6.1.4.58.58 = 160 +.1.3.6.1.2.1.16.2.6.1.4.59.59 = 160 +.1.3.6.1.2.1.16.2.6.1.4.60.60 = 160 +.1.3.6.1.2.1.16.2.6.1.4.61.1 = 9600 +.1.3.6.1.2.1.16.2.6.1.4.62.61 = 0 +.1.3.6.1.2.1.16.2.6.1.4.63.62 = 0 +.1.3.6.1.2.1.16.2.6.1.4.64.63 = 0 +.1.3.6.1.2.1.16.2.6.1.4.65.64 = 0 +.1.3.6.1.2.1.16.2.6.1.4.66.65 = 0 +.1.3.6.1.2.1.16.2.6.1.4.67.66 = 0 +.1.3.6.1.2.1.16.2.6.1.4.68.67 = 0 +.1.3.6.1.2.1.16.2.6.1.4.69.68 = 0 +.1.3.6.1.2.1.16.2.6.1.4.70.69 = 0 +.1.3.6.1.2.1.16.2.6.1.4.71.70 = 0 +.1.3.6.1.2.1.16.2.6.1.4.72.71 = 0 +.1.3.6.1.2.1.16.2.6.1.4.73.72 = 0 +.1.3.6.1.2.1.16.2.6.1.4.74.73 = 0 +.1.3.6.1.2.1.16.2.6.1.4.75.74 = 0 +.1.3.6.1.2.1.16.2.6.1.4.76.75 = 0 +.1.3.6.1.2.1.16.2.6.1.4.77.76 = 0 +.1.3.6.1.2.1.16.2.6.1.4.78.77 = 0 +.1.3.6.1.2.1.16.2.6.1.4.79.78 = 0 +.1.3.6.1.2.1.16.2.6.1.4.80.79 = 0 +.1.3.6.1.2.1.16.2.6.1.4.81.80 = 0 +.1.3.6.1.2.1.16.2.6.1.4.82.81 = 0 +.1.3.6.1.2.1.16.2.6.1.4.83.82 = 0 +.1.3.6.1.2.1.16.2.6.1.4.84.83 = 0 +.1.3.6.1.2.1.16.2.6.1.4.85.84 = 0 +.1.3.6.1.2.1.16.2.6.1.4.86.85 = 0 +.1.3.6.1.2.1.16.2.6.1.4.87.26 = 0 +.1.3.6.1.2.1.16.2.6.1.4.88.27 = 0 +.1.3.6.1.2.1.16.2.6.1.4.89.28 = 0 +.1.3.6.1.2.1.16.2.6.1.4.90.29 = 0 +.1.3.6.1.2.1.16.2.6.1.4.91.30 = 0 +.1.3.6.1.2.1.16.2.6.1.4.92.31 = 0 +.1.3.6.1.2.1.16.2.6.1.4.93.32 = 0 +.1.3.6.1.2.1.16.2.6.1.4.94.33 = 0 +.1.3.6.1.2.1.16.2.6.1.4.95.34 = 0 +.1.3.6.1.2.1.16.2.6.1.4.96.35 = 0 +.1.3.6.1.2.1.16.2.6.1.4.97.36 = 0 +.1.3.6.1.2.1.16.2.6.1.4.98.37 = 0 +.1.3.6.1.2.1.16.2.6.1.4.99.38 = 0 +.1.3.6.1.2.1.16.2.6.1.4.100.39 = 0 +.1.3.6.1.2.1.16.2.6.1.4.101.40 = 0 +.1.3.6.1.2.1.16.2.6.1.4.102.41 = 0 +.1.3.6.1.2.1.16.2.6.1.4.103.42 = 0 +.1.3.6.1.2.1.16.2.6.1.4.104.43 = 0 +.1.3.6.1.2.1.16.2.6.1.4.105.44 = 0 +.1.3.6.1.2.1.16.2.6.1.4.106.45 = 0 +.1.3.6.1.2.1.16.2.6.1.4.107.46 = 0 +.1.3.6.1.2.1.16.2.6.1.4.108.47 = 0 +.1.3.6.1.2.1.16.2.6.1.4.109.48 = 0 +.1.3.6.1.2.1.16.2.6.1.4.110.49 = 0 +.1.3.6.1.2.1.16.2.6.1.4.111.50 = 0 +.1.3.6.1.2.1.16.2.6.1.4.112.51 = 0 +.1.3.6.1.2.1.16.2.6.1.4.113.52 = 0 +.1.3.6.1.2.1.16.2.6.1.4.114.53 = 0 +.1.3.6.1.2.1.16.2.6.1.4.115.54 = 0 +.1.3.6.1.2.1.16.2.6.1.4.116.55 = 0 +.1.3.6.1.2.1.16.2.6.1.4.117.56 = 0 +.1.3.6.1.2.1.16.2.6.1.4.118.57 = 0 +.1.3.6.1.2.1.16.2.6.1.4.119.58 = 0 +.1.3.6.1.2.1.16.2.6.1.4.120.59 = 0 +.1.3.6.1.2.1.16.2.6.1.4.121.60 = 0 +.1.3.6.1.2.1.16.2.6.1.4.122.1 = 0 +.1.3.6.1.2.1.16.2.6.1.4.123.61 = 0 +.1.3.6.1.2.1.16.2.6.1.4.124.62 = 0 +.1.3.6.1.2.1.16.2.6.1.4.125.63 = 0 +.1.3.6.1.2.1.16.2.6.1.4.126.64 = 0 +.1.3.6.1.2.1.16.2.6.1.4.127.65 = 0 +.1.3.6.1.2.1.16.2.6.1.4.128.66 = 0 +.1.3.6.1.2.1.16.2.6.1.4.129.67 = 0 +.1.3.6.1.2.1.16.2.6.1.4.130.68 = 0 +.1.3.6.1.2.1.16.2.6.1.4.131.69 = 0 +.1.3.6.1.2.1.16.2.6.1.4.132.70 = 0 +.1.3.6.1.2.1.16.2.6.1.4.133.71 = 0 +.1.3.6.1.2.1.16.2.6.1.4.134.72 = 0 +.1.3.6.1.2.1.16.2.6.1.4.135.73 = 0 +.1.3.6.1.2.1.16.2.6.1.4.136.74 = 0 +.1.3.6.1.2.1.16.2.6.1.4.137.75 = 0 +.1.3.6.1.2.1.16.2.6.1.4.138.76 = 0 +.1.3.6.1.2.1.16.2.6.1.4.139.77 = 0 +.1.3.6.1.2.1.16.2.6.1.4.140.78 = 0 +.1.3.6.1.2.1.16.2.6.1.4.141.79 = 0 +.1.3.6.1.2.1.16.2.6.1.4.142.80 = 0 +.1.3.6.1.2.1.16.2.6.1.4.143.81 = 0 +.1.3.6.1.2.1.16.2.6.1.4.144.82 = 0 +.1.3.6.1.2.1.16.2.6.1.4.145.83 = 0 +.1.3.6.1.2.1.16.2.6.1.4.146.84 = 0 +.1.3.6.1.2.1.16.2.6.1.4.147.85 = 0 +.1.3.6.1.2.1.16.2.6.1.4.148.26 = 0 +.1.3.6.1.2.1.16.2.6.1.4.149.27 = 0 +.1.3.6.1.2.1.16.2.6.1.4.150.28 = 0 +.1.3.6.1.2.1.16.2.6.1.4.151.29 = 0 +.1.3.6.1.2.1.16.2.6.1.4.152.30 = 0 +.1.3.6.1.2.1.16.2.6.1.4.153.31 = 0 +.1.3.6.1.2.1.16.2.6.1.4.154.32 = 0 +.1.3.6.1.2.1.16.2.6.1.4.155.33 = 0 +.1.3.6.1.2.1.16.2.6.1.4.156.34 = 0 +.1.3.6.1.2.1.16.2.6.1.4.157.35 = 0 +.1.3.6.1.2.1.16.2.6.1.4.158.36 = 0 +.1.3.6.1.2.1.16.2.6.1.4.159.37 = 0 +.1.3.6.1.2.1.16.2.6.1.4.160.38 = 0 +.1.3.6.1.2.1.16.2.6.1.4.161.39 = 0 +.1.3.6.1.2.1.16.2.6.1.4.162.40 = 0 +.1.3.6.1.2.1.16.2.6.1.4.163.41 = 0 +.1.3.6.1.2.1.16.2.6.1.4.164.42 = 0 +.1.3.6.1.2.1.16.2.6.1.4.165.43 = 0 +.1.3.6.1.2.1.16.2.6.1.4.166.44 = 0 +.1.3.6.1.2.1.16.2.6.1.4.167.45 = 0 +.1.3.6.1.2.1.16.2.6.1.4.168.46 = 0 +.1.3.6.1.2.1.16.2.6.1.4.169.47 = 0 +.1.3.6.1.2.1.16.2.6.1.4.170.48 = 0 +.1.3.6.1.2.1.16.2.6.1.4.171.49 = 0 +.1.3.6.1.2.1.16.2.6.1.4.172.50 = 0 +.1.3.6.1.2.1.16.2.6.1.4.173.51 = 0 +.1.3.6.1.2.1.16.2.6.1.4.174.52 = 0 +.1.3.6.1.2.1.16.2.6.1.4.175.53 = 0 +.1.3.6.1.2.1.16.2.6.1.4.176.54 = 0 +.1.3.6.1.2.1.16.2.6.1.4.177.55 = 0 +.1.3.6.1.2.1.16.2.6.1.4.178.56 = 0 +.1.3.6.1.2.1.16.2.6.1.4.179.57 = 0 +.1.3.6.1.2.1.16.2.6.1.4.180.58 = 0 +.1.3.6.1.2.1.16.2.6.1.4.181.59 = 0 +.1.3.6.1.2.1.16.2.6.1.4.182.60 = 0 +.1.3.6.1.2.1.16.2.6.1.4.183.1 = 0 +.1.3.6.1.2.1.16.2.6.1.4.184.61 = 0 +.1.3.6.1.2.1.16.2.6.1.4.185.62 = 0 +.1.3.6.1.2.1.16.2.6.1.4.186.63 = 0 +.1.3.6.1.2.1.16.2.6.1.4.187.64 = 0 +.1.3.6.1.2.1.16.2.6.1.4.188.65 = 0 +.1.3.6.1.2.1.16.2.6.1.4.189.66 = 0 +.1.3.6.1.2.1.16.2.6.1.4.190.67 = 0 +.1.3.6.1.2.1.16.2.6.1.4.191.68 = 0 +.1.3.6.1.2.1.16.2.6.1.4.192.69 = 0 +.1.3.6.1.2.1.16.2.6.1.4.193.70 = 0 +.1.3.6.1.2.1.16.2.6.1.4.194.71 = 0 +.1.3.6.1.2.1.16.2.6.1.4.195.72 = 0 +.1.3.6.1.2.1.16.2.6.1.4.196.73 = 0 +.1.3.6.1.2.1.16.2.6.1.4.197.74 = 0 +.1.3.6.1.2.1.16.2.6.1.4.198.75 = 0 +.1.3.6.1.2.1.16.2.6.1.4.199.76 = 0 +.1.3.6.1.2.1.16.2.6.1.4.200.77 = 0 +.1.3.6.1.2.1.16.2.6.1.4.201.78 = 0 +.1.3.6.1.2.1.16.2.6.1.4.202.79 = 0 +.1.3.6.1.2.1.16.2.6.1.4.203.80 = 0 +.1.3.6.1.2.1.16.2.6.1.4.204.81 = 0 +.1.3.6.1.2.1.16.2.6.1.4.205.82 = 0 +.1.3.6.1.2.1.16.2.6.1.4.206.83 = 0 +.1.3.6.1.2.1.16.2.6.1.4.207.84 = 0 +.1.3.6.1.2.1.16.2.6.1.4.208.85 = 0 +.1.3.6.1.2.1.16.2.6.1.4.209.26 = 0 +.1.3.6.1.2.1.16.2.6.1.4.210.27 = 0 +.1.3.6.1.2.1.16.2.6.1.4.211.28 = 0 +.1.3.6.1.2.1.16.2.6.1.4.212.29 = 0 +.1.3.6.1.2.1.16.2.6.1.4.213.30 = 0 +.1.3.6.1.2.1.16.2.6.1.4.214.31 = 0 +.1.3.6.1.2.1.16.2.6.1.4.215.32 = 0 +.1.3.6.1.2.1.16.2.6.1.4.216.33 = 0 +.1.3.6.1.2.1.16.2.6.1.4.217.34 = 0 +.1.3.6.1.2.1.16.2.6.1.4.218.35 = 0 +.1.3.6.1.2.1.16.2.6.1.4.219.36 = 0 +.1.3.6.1.2.1.16.2.6.1.4.220.37 = 0 +.1.3.6.1.2.1.16.2.6.1.4.221.38 = 0 +.1.3.6.1.2.1.16.2.6.1.4.222.39 = 0 +.1.3.6.1.2.1.16.2.6.1.4.223.40 = 0 +.1.3.6.1.2.1.16.2.6.1.4.224.41 = 0 +.1.3.6.1.2.1.16.2.6.1.4.225.42 = 0 +.1.3.6.1.2.1.16.2.6.1.4.226.43 = 0 +.1.3.6.1.2.1.16.2.6.1.4.227.44 = 0 +.1.3.6.1.2.1.16.2.6.1.4.228.45 = 0 +.1.3.6.1.2.1.16.2.6.1.4.229.46 = 0 +.1.3.6.1.2.1.16.2.6.1.4.230.47 = 0 +.1.3.6.1.2.1.16.2.6.1.4.231.48 = 0 +.1.3.6.1.2.1.16.2.6.1.4.232.49 = 0 +.1.3.6.1.2.1.16.2.6.1.4.233.50 = 0 +.1.3.6.1.2.1.16.2.6.1.4.234.51 = 0 +.1.3.6.1.2.1.16.2.6.1.4.235.52 = 0 +.1.3.6.1.2.1.16.2.6.1.4.236.53 = 0 +.1.3.6.1.2.1.16.2.6.1.4.237.54 = 0 +.1.3.6.1.2.1.16.2.6.1.4.238.55 = 0 +.1.3.6.1.2.1.16.2.6.1.4.239.56 = 0 +.1.3.6.1.2.1.16.2.6.1.4.240.57 = 0 +.1.3.6.1.2.1.16.2.6.1.4.241.58 = 0 +.1.3.6.1.2.1.16.2.6.1.4.242.59 = 0 +.1.3.6.1.2.1.16.2.6.1.4.243.60 = 0 +.1.3.6.1.2.1.16.2.6.1.4.244.1 = 0 +.1.3.6.1.2.1.26.2.2.1.2.1.1.1 = 14 +.1.3.6.1.2.1.26.2.2.1.2.2.1.1 = 14 +.1.3.6.1.2.1.26.2.2.1.2.3.1.1 = 14 +.1.3.6.1.2.1.26.2.2.1.2.4.1.1 = 14 +.1.3.6.1.2.1.26.2.2.1.2.5.1.1 = 2 +.1.3.6.1.2.1.26.2.2.1.2.6.1.1 = 2 +.1.3.6.1.2.1.26.2.2.1.2.7.1.1 = 2 +.1.3.6.1.2.1.26.5.1.1.1.1.1 = 1 +.1.3.6.1.2.1.26.5.1.1.1.2.1 = 1 +.1.3.6.1.2.1.26.5.1.1.1.3.1 = 1 +.1.3.6.1.2.1.26.5.1.1.1.4.1 = 1 +.1.3.6.1.2.1.26.5.1.1.1.5.1 = 1 +.1.3.6.1.2.1.26.5.1.1.1.6.1 = 2 +.1.3.6.1.2.1.26.5.1.1.1.7.1 = 2 +.1.3.6.1.2.1.26.5.1.1.2.1.1 = 2 +.1.3.6.1.2.1.26.5.1.1.2.2.1 = 2 +.1.3.6.1.2.1.26.5.1.1.2.3.1 = 2 +.1.3.6.1.2.1.26.5.1.1.2.4.1 = 2 +.1.3.6.1.2.1.26.5.1.1.2.5.1 = 1 +.1.3.6.1.2.1.26.5.1.1.2.6.1 = 2 +.1.3.6.1.2.1.26.5.1.1.2.7.1 = 2 +.1.3.6.1.2.1.26.5.1.1.4.1.1 = 2 +.1.3.6.1.2.1.26.5.1.1.4.2.1 = 2 +.1.3.6.1.2.1.26.5.1.1.4.3.1 = 2 +.1.3.6.1.2.1.26.5.1.1.4.4.1 = 2 +.1.3.6.1.2.1.26.5.1.1.4.5.1 = 3 +.1.3.6.1.2.1.26.5.1.1.4.6.1 = 2 +.1.3.6.1.2.1.26.5.1.1.4.7.1 = 2 +.1.3.6.1.2.1.26.5.1.1.5.1.1 = 0 +.1.3.6.1.2.1.26.5.1.1.5.2.1 = 0 +.1.3.6.1.2.1.26.5.1.1.5.3.1 = 0 +.1.3.6.1.2.1.26.5.1.1.5.4.1 = 0 +.1.3.6.1.2.1.26.5.1.1.5.5.1 = 0 +.1.3.6.1.2.1.26.5.1.1.5.6.1 = 0 +.1.3.6.1.2.1.26.5.1.1.5.7.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.1.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.2.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.3.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.4.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.5.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.6.1 = 0 +.1.3.6.1.2.1.26.5.1.1.6.7.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.1.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.2.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.3.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.4.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.5.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.6.1 = 0 +.1.3.6.1.2.1.26.5.1.1.7.7.1 = 0 +.1.3.6.1.2.1.26.5.1.1.8.1.1 = 2 +.1.3.6.1.2.1.26.5.1.1.8.2.1 = 2 +.1.3.6.1.2.1.26.5.1.1.8.3.1 = 2 +.1.3.6.1.2.1.26.5.1.1.8.4.1 = 2 +.1.3.6.1.2.1.26.5.1.1.8.5.1 = 2 +.1.3.6.1.2.1.26.5.1.1.8.6.1 = 2 +.1.3.6.1.2.1.26.5.1.1.8.7.1 = 2 +.1.3.6.1.2.1.26.5.1.1.9.1.1 = "00 C2 " +.1.3.6.1.2.1.26.5.1.1.9.2.1 = "24 C2 " +.1.3.6.1.2.1.26.5.1.1.9.3.1 = "24 C2 " +.1.3.6.1.2.1.26.5.1.1.9.4.1 = "00 C2 " +.1.3.6.1.2.1.26.5.1.1.9.5.1 = "24 C0 " +.1.3.6.1.2.1.26.5.1.1.9.6.1 = "00 C2 " +.1.3.6.1.2.1.26.5.1.1.9.7.1 = "00 C2 " +.1.3.6.1.2.1.26.5.1.1.10.1.1 = "00 C1 " +.1.3.6.1.2.1.26.5.1.1.10.2.1 = "24 C1 " +.1.3.6.1.2.1.26.5.1.1.10.3.1 = "24 C1 " +.1.3.6.1.2.1.26.5.1.1.10.4.1 = "00 C1 " +.1.3.6.1.2.1.26.5.1.1.10.5.1 = "24 C0 " +.1.3.6.1.2.1.26.5.1.1.10.6.1 = "00 C1 " +.1.3.6.1.2.1.26.5.1.1.10.7.1 = "00 C1 " +.1.3.6.1.2.1.26.5.1.1.11.1.1 = "" +.1.3.6.1.2.1.26.5.1.1.11.2.1 = "" +.1.3.6.1.2.1.26.5.1.1.11.3.1 = "" +.1.3.6.1.2.1.26.5.1.1.11.4.1 = "00 C1 " +.1.3.6.1.2.1.26.5.1.1.11.5.1 = "6C C0 " +.1.3.6.1.2.1.26.5.1.1.11.6.1 = "" +.1.3.6.1.2.1.26.5.1.1.11.7.1 = "" +.1.3.6.1.2.1.26.5.1.1.12.1.1 = 1 +.1.3.6.1.2.1.26.5.1.1.12.2.1 = 1 +.1.3.6.1.2.1.26.5.1.1.12.3.1 = 1 +.1.3.6.1.2.1.26.5.1.1.12.4.1 = 1 +.1.3.6.1.2.1.26.5.1.1.12.5.1 = 1 +.1.3.6.1.2.1.26.5.1.1.12.6.1 = 1 +.1.3.6.1.2.1.26.5.1.1.12.7.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.1.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.2.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.3.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.4.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.5.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.6.1 = 1 +.1.3.6.1.2.1.26.5.1.1.13.7.1 = 1 +.1.3.6.1.2.1.31.1.1.1.1.1 = EVEN_VLAN_UPLINK +.1.3.6.1.2.1.31.1.1.1.1.2 = ODD_VLAN_UPLINK +.1.3.6.1.2.1.31.1.1.1.1.3 = EVEN_VLAN_DOWNLIN +.1.3.6.1.2.1.31.1.1.1.1.4 = ODD_VLAN_DOWNLINK +.1.3.6.1.2.1.31.1.1.1.1.5 = Management +.1.3.6.1.2.1.31.1.1.1.1.6 = LAG-1 +.1.3.6.1.2.1.31.1.1.1.1.7 = LAG-2 +.1.3.6.1.2.1.31.1.1.1.1.1003 = VLAN_MGMT +.1.3.6.1.2.1.31.1.1.1.2.1 = 1333618 +.1.3.6.1.2.1.31.1.1.1.2.2 = 755094 +.1.3.6.1.2.1.31.1.1.1.2.3 = 1854490 +.1.3.6.1.2.1.31.1.1.1.2.4 = 2381335 +.1.3.6.1.2.1.31.1.1.1.2.5 = 1059008058 +.1.3.6.1.2.1.31.1.1.1.2.6 = 0 +.1.3.6.1.2.1.31.1.1.1.2.7 = 0 +.1.3.6.1.2.1.31.1.1.1.2.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.3.1 = 786060 +.1.3.6.1.2.1.31.1.1.1.3.2 = 35 +.1.3.6.1.2.1.31.1.1.1.3.3 = 64 +.1.3.6.1.2.1.31.1.1.1.3.4 = 0 +.1.3.6.1.2.1.31.1.1.1.3.5 = 291433787 +.1.3.6.1.2.1.31.1.1.1.3.6 = 0 +.1.3.6.1.2.1.31.1.1.1.3.7 = 0 +.1.3.6.1.2.1.31.1.1.1.3.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.4.1 = 1327114 +.1.3.6.1.2.1.31.1.1.1.4.2 = 751328 +.1.3.6.1.2.1.31.1.1.1.4.3 = 1854514 +.1.3.6.1.2.1.31.1.1.1.4.4 = 2381370 +.1.3.6.1.2.1.31.1.1.1.4.5 = 6 +.1.3.6.1.2.1.31.1.1.1.4.6 = 0 +.1.3.6.1.2.1.31.1.1.1.4.7 = 0 +.1.3.6.1.2.1.31.1.1.1.4.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.5.1 = 64 +.1.3.6.1.2.1.31.1.1.1.5.2 = 0 +.1.3.6.1.2.1.31.1.1.1.5.3 = 24 +.1.3.6.1.2.1.31.1.1.1.5.4 = 0 +.1.3.6.1.2.1.31.1.1.1.5.5 = 558851 +.1.3.6.1.2.1.31.1.1.1.5.6 = 0 +.1.3.6.1.2.1.31.1.1.1.5.7 = 0 +.1.3.6.1.2.1.31.1.1.1.5.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.6.1 = 12813324665 +.1.3.6.1.2.1.31.1.1.1.6.2 = 135053161 +.1.3.6.1.2.1.31.1.1.1.6.3 = 15078973313 +.1.3.6.1.2.1.31.1.1.1.6.4 = 314336220 +.1.3.6.1.2.1.31.1.1.1.6.5 = 132727052162 +.1.3.6.1.2.1.31.1.1.1.6.6 = 0 +.1.3.6.1.2.1.31.1.1.1.6.7 = 0 +.1.3.6.1.2.1.31.1.1.1.6.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.7.1 = 12685439 +.1.3.6.1.2.1.31.1.1.1.7.2 = 0 +.1.3.6.1.2.1.31.1.1.1.7.3 = 13188103 +.1.3.6.1.2.1.31.1.1.1.7.4 = 0 +.1.3.6.1.2.1.31.1.1.1.7.5 = 6690176 +.1.3.6.1.2.1.31.1.1.1.7.6 = 0 +.1.3.6.1.2.1.31.1.1.1.7.7 = 0 +.1.3.6.1.2.1.31.1.1.1.7.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.8.1 = 1333618 +.1.3.6.1.2.1.31.1.1.1.8.2 = 755094 +.1.3.6.1.2.1.31.1.1.1.8.3 = 1854490 +.1.3.6.1.2.1.31.1.1.1.8.4 = 2381335 +.1.3.6.1.2.1.31.1.1.1.8.5 = 1059008058 +.1.3.6.1.2.1.31.1.1.1.8.6 = 0 +.1.3.6.1.2.1.31.1.1.1.8.7 = 0 +.1.3.6.1.2.1.31.1.1.1.8.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.9.1 = 786060 +.1.3.6.1.2.1.31.1.1.1.9.2 = 35 +.1.3.6.1.2.1.31.1.1.1.9.3 = 64 +.1.3.6.1.2.1.31.1.1.1.9.4 = 0 +.1.3.6.1.2.1.31.1.1.1.9.5 = 291433787 +.1.3.6.1.2.1.31.1.1.1.9.6 = 0 +.1.3.6.1.2.1.31.1.1.1.9.7 = 0 +.1.3.6.1.2.1.31.1.1.1.9.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.10.1 = 15250068986 +.1.3.6.1.2.1.31.1.1.1.10.2 = 110445216 +.1.3.6.1.2.1.31.1.1.1.10.3 = 12089036710 +.1.3.6.1.2.1.31.1.1.1.10.4 = 354824130 +.1.3.6.1.2.1.31.1.1.1.10.5 = 1387157336 +.1.3.6.1.2.1.31.1.1.1.10.6 = 0 +.1.3.6.1.2.1.31.1.1.1.10.7 = 0 +.1.3.6.1.2.1.31.1.1.1.10.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.11.1 = 20489384 +.1.3.6.1.2.1.31.1.1.1.11.2 = 0 +.1.3.6.1.2.1.31.1.1.1.11.3 = 12156384 +.1.3.6.1.2.1.31.1.1.1.11.4 = 0 +.1.3.6.1.2.1.31.1.1.1.11.5 = 8711365 +.1.3.6.1.2.1.31.1.1.1.11.6 = 0 +.1.3.6.1.2.1.31.1.1.1.11.7 = 0 +.1.3.6.1.2.1.31.1.1.1.11.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.12.1 = 1327114 +.1.3.6.1.2.1.31.1.1.1.12.2 = 751328 +.1.3.6.1.2.1.31.1.1.1.12.3 = 1854514 +.1.3.6.1.2.1.31.1.1.1.12.4 = 2381370 +.1.3.6.1.2.1.31.1.1.1.12.5 = 6 +.1.3.6.1.2.1.31.1.1.1.12.6 = 0 +.1.3.6.1.2.1.31.1.1.1.12.7 = 0 +.1.3.6.1.2.1.31.1.1.1.12.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.13.1 = 64 +.1.3.6.1.2.1.31.1.1.1.13.2 = 0 +.1.3.6.1.2.1.31.1.1.1.13.3 = 24 +.1.3.6.1.2.1.31.1.1.1.13.4 = 0 +.1.3.6.1.2.1.31.1.1.1.13.5 = 558851 +.1.3.6.1.2.1.31.1.1.1.13.6 = 0 +.1.3.6.1.2.1.31.1.1.1.13.7 = 0 +.1.3.6.1.2.1.31.1.1.1.13.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.15.1 = 1000 +.1.3.6.1.2.1.31.1.1.1.15.2 = 0 +.1.3.6.1.2.1.31.1.1.1.15.3 = 0 +.1.3.6.1.2.1.31.1.1.1.15.4 = 0 +.1.3.6.1.2.1.31.1.1.1.15.5 = 100 +.1.3.6.1.2.1.31.1.1.1.15.6 = 0 +.1.3.6.1.2.1.31.1.1.1.15.7 = 0 +.1.3.6.1.2.1.31.1.1.1.15.1003 = 0 +.1.3.6.1.2.1.31.1.1.1.16.1 = false +.1.3.6.1.2.1.31.1.1.1.16.2 = false +.1.3.6.1.2.1.31.1.1.1.16.3 = false +.1.3.6.1.2.1.31.1.1.1.16.4 = false +.1.3.6.1.2.1.31.1.1.1.16.5 = false +.1.3.6.1.2.1.31.1.1.1.16.6 = false +.1.3.6.1.2.1.31.1.1.1.16.7 = false +.1.3.6.1.2.1.31.1.1.1.16.1003 = false +.1.3.6.1.2.1.31.1.1.1.17.1 = true +.1.3.6.1.2.1.31.1.1.1.17.2 = true +.1.3.6.1.2.1.31.1.1.1.17.3 = true +.1.3.6.1.2.1.31.1.1.1.17.4 = true +.1.3.6.1.2.1.31.1.1.1.17.5 = true +.1.3.6.1.2.1.31.1.1.1.17.6 = true +.1.3.6.1.2.1.31.1.1.1.17.7 = true +.1.3.6.1.2.1.31.1.1.1.17.1003 = true +.1.3.6.1.2.1.31.1.1.1.18.1 = +.1.3.6.1.2.1.31.1.1.1.18.2 = +.1.3.6.1.2.1.31.1.1.1.18.3 = +.1.3.6.1.2.1.31.1.1.1.18.4 = +.1.3.6.1.2.1.31.1.1.1.18.5 = +.1.3.6.1.2.1.31.1.1.1.18.6 = +.1.3.6.1.2.1.31.1.1.1.18.7 = +.1.3.6.1.2.1.31.1.1.1.18.1003 = +.1.3.6.1.2.1.31.1.1.1.19.1 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.2 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.3 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.4 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.6 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.7 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1003 = 0:0:00:00.00 +.1.3.6.1.2.1.31.1.5.0 = 0:0:00:00.00 +.1.3.6.1.2.1.55.1.1.0 = notForwarding +.1.3.6.1.2.1.55.1.2.0 = 64 +.1.3.6.1.2.1.55.1.3.0 = 2 +.1.3.6.1.2.1.55.1.5.1.2.1 = lo +.1.3.6.1.2.1.55.1.5.1.2.10 = eth5 +.1.3.6.1.2.1.55.1.5.1.3.1 = .0.0 +.1.3.6.1.2.1.55.1.5.1.3.10 = .0.0 +.1.3.6.1.2.1.55.1.5.1.4.1 = 16436 octets +.1.3.6.1.2.1.55.1.5.1.4.10 = 1500 octets +.1.3.6.1.2.1.55.1.5.1.8.1 = +.1.3.6.1.2.1.55.1.5.1.8.10 = 0:15:ad:47:3e:65 +.1.3.6.1.2.1.55.1.5.1.9.1 = up +.1.3.6.1.2.1.55.1.5.1.9.10 = up +.1.3.6.1.2.1.55.1.5.1.10.1 = up +.1.3.6.1.2.1.55.1.5.1.10.10 = up +.1.3.6.1.4.1.22420.1.1.1.0 = "AMN-1000-GT-S" +.1.3.6.1.4.1.22420.1.1.2.0 = "00:15:AD:47:3E:60" +.1.3.6.1.4.1.22420.1.1.3.0 = "NID12-DC-MTSO-Pri" +.1.3.6.1.4.1.22420.1.1.4.0 = "AMT_7.9.1_23673" +.1.3.6.1.4.1.22420.1.1.5.0 = "619-2179:20:23:14" +.1.3.6.1.4.1.22420.1.1.6.0 = "G419-2495" +.1.3.6.1.4.1.22420.1.1.7.0 = "Dry-contact Input" +.1.3.6.1.4.1.22420.1.1.10.1.1.1 = 1 +.1.3.6.1.4.1.22420.1.1.10.1.1.2 = 2 +.1.3.6.1.4.1.22420.1.1.10.1.1.3 = 3 +.1.3.6.1.4.1.22420.1.1.10.1.1.4 = 4 +.1.3.6.1.4.1.22420.1.1.10.1.1.5 = 5 +.1.3.6.1.4.1.22420.1.1.10.1.2.1 = "SFP-1" +.1.3.6.1.4.1.22420.1.1.10.1.2.2 = "SFP-2" +.1.3.6.1.4.1.22420.1.1.10.1.2.3 = "SFP-3" +.1.3.6.1.4.1.22420.1.1.10.1.2.4 = "SFP-4" +.1.3.6.1.4.1.22420.1.1.10.1.2.5 = "Management" +.1.3.6.1.4.1.22420.1.1.10.1.3.1 = 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.2 = 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.3 = 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.4 = 14 +.1.3.6.1.4.1.22420.1.1.10.1.3.5 = 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.1 = 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.2 = 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.3 = 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.4 = 2 +.1.3.6.1.4.1.22420.1.1.10.1.4.5 = 2 +.1.3.6.1.4.1.22420.1.1.11.1.1.2 = 2 +.1.3.6.1.4.1.22420.1.1.11.1.1.3 = 3 +.1.3.6.1.4.1.22420.1.1.11.1.2.2 = "Feed A" +.1.3.6.1.4.1.22420.1.1.11.1.2.3 = "Feed B" +.1.3.6.1.4.1.22420.1.1.11.1.3.2 = 2 +.1.3.6.1.4.1.22420.1.1.11.1.3.3 = 2 +.1.3.6.1.4.1.22420.1.1.11.1.4.2 = 1 +.1.3.6.1.4.1.22420.1.1.11.1.4.3 = 2 +.1.3.6.1.4.1.22420.1.1.12.1.2.1 = 44 +.1.3.6.1.4.1.22420.1.1.12.1.2.2 = 34 +.1.3.6.1.4.1.22420.1.1.12.1.3.1 = 85 +.1.3.6.1.4.1.22420.1.1.12.1.3.2 = 85 +.1.3.6.1.4.1.22420.1.1.12.1.4.1 = 2 +.1.3.6.1.4.1.22420.1.1.12.1.4.2 = 2 +.1.3.6.1.4.1.22420.1.1.12.1.5.1 = 90 +.1.3.6.1.4.1.22420.1.1.12.1.5.2 = 90 +.1.3.6.1.4.1.22420.1.1.12.1.6.1 = 2 +.1.3.6.1.4.1.22420.1.1.12.1.6.2 = 2 +.1.3.6.1.4.1.22420.1.1.12.1.7.1 = "Sensor 1" +.1.3.6.1.4.1.22420.1.1.12.1.7.2 = "Sensor 2" +.1.3.6.1.4.1.22420.1.1.20.0 = 12 +.1.3.6.1.4.1.22420.1.1.21.0 = 14 +.1.3.6.1.4.1.22420.1.1.22.0 = 15 +.1.3.6.1.4.1.22420.1.1.23.0 = 15 +.1.3.6.1.4.1.22420.1.1.24.0 = 5 +.1.3.6.1.4.1.22420.1.1.25.0 = 90350370 +.1.3.6.1.4.1.22420.2.1.1.0 = 2500 +.1.3.6.1.4.1.22420.2.1.2.0 = 10000 +.1.3.6.1.4.1.22420.2.1.3.0 = 1 +.1.3.6.1.4.1.22420.2.1.4.0 = 1 +.1.3.6.1.4.1.22420.2.1.5.0 = 1 +.1.3.6.1.4.1.22420.2.1.6.0 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.1.1 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.1.2 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.1.3 = 3 +.1.3.6.1.4.1.22420.2.1.10.1.1.4 = 4 +.1.3.6.1.4.1.22420.2.1.10.1.1.5 = 5 +.1.3.6.1.4.1.22420.2.1.10.1.1.6 = 6 +.1.3.6.1.4.1.22420.2.1.10.1.1.7 = 7 +.1.3.6.1.4.1.22420.2.1.10.1.1.8 = 8 +.1.3.6.1.4.1.22420.2.1.10.1.1.9 = 9 +.1.3.6.1.4.1.22420.2.1.10.1.1.10 = 10 +.1.3.6.1.4.1.22420.2.1.10.1.1.11 = 11 +.1.3.6.1.4.1.22420.2.1.10.1.1.12 = 12 +.1.3.6.1.4.1.22420.2.1.10.1.1.13 = 13 +.1.3.6.1.4.1.22420.2.1.10.1.1.14 = 14 +.1.3.6.1.4.1.22420.2.1.10.1.1.15 = 15 +.1.3.6.1.4.1.22420.2.1.10.1.1.16 = 16 +.1.3.6.1.4.1.22420.2.1.10.1.1.17 = 17 +.1.3.6.1.4.1.22420.2.1.10.1.1.18 = 18 +.1.3.6.1.4.1.22420.2.1.10.1.1.19 = 19 +.1.3.6.1.4.1.22420.2.1.10.1.1.20 = 20 +.1.3.6.1.4.1.22420.2.1.10.1.1.21 = 21 +.1.3.6.1.4.1.22420.2.1.10.1.1.22 = 22 +.1.3.6.1.4.1.22420.2.1.10.1.1.23 = 23 +.1.3.6.1.4.1.22420.2.1.10.1.1.24 = 24 +.1.3.6.1.4.1.22420.2.1.10.1.1.25 = 25 +.1.3.6.1.4.1.22420.2.1.10.1.1.26 = 26 +.1.3.6.1.4.1.22420.2.1.10.1.1.27 = 27 +.1.3.6.1.4.1.22420.2.1.10.1.1.28 = 28 +.1.3.6.1.4.1.22420.2.1.10.1.1.29 = 29 +.1.3.6.1.4.1.22420.2.1.10.1.1.30 = 30 +.1.3.6.1.4.1.22420.2.1.10.1.1.31 = 31 +.1.3.6.1.4.1.22420.2.1.10.1.1.32 = 32 +.1.3.6.1.4.1.22420.2.1.10.1.1.33 = 33 +.1.3.6.1.4.1.22420.2.1.10.1.1.34 = 34 +.1.3.6.1.4.1.22420.2.1.10.1.1.35 = 35 +.1.3.6.1.4.1.22420.2.1.10.1.1.36 = 36 +.1.3.6.1.4.1.22420.2.1.10.1.1.37 = 37 +.1.3.6.1.4.1.22420.2.1.10.1.1.38 = 38 +.1.3.6.1.4.1.22420.2.1.10.1.1.39 = 39 +.1.3.6.1.4.1.22420.2.1.10.1.1.40 = 40 +.1.3.6.1.4.1.22420.2.1.10.1.1.41 = 41 +.1.3.6.1.4.1.22420.2.1.10.1.1.42 = 42 +.1.3.6.1.4.1.22420.2.1.10.1.1.43 = 43 +.1.3.6.1.4.1.22420.2.1.10.1.1.44 = 44 +.1.3.6.1.4.1.22420.2.1.10.1.1.45 = 45 +.1.3.6.1.4.1.22420.2.1.10.1.1.46 = 46 +.1.3.6.1.4.1.22420.2.1.10.1.1.47 = 47 +.1.3.6.1.4.1.22420.2.1.10.1.1.48 = 48 +.1.3.6.1.4.1.22420.2.1.10.1.1.49 = 49 +.1.3.6.1.4.1.22420.2.1.10.1.1.50 = 50 +.1.3.6.1.4.1.22420.2.1.10.1.1.51 = 51 +.1.3.6.1.4.1.22420.2.1.10.1.1.52 = 52 +.1.3.6.1.4.1.22420.2.1.10.1.1.53 = 53 +.1.3.6.1.4.1.22420.2.1.10.1.1.54 = 54 +.1.3.6.1.4.1.22420.2.1.10.1.1.55 = 55 +.1.3.6.1.4.1.22420.2.1.10.1.1.56 = 56 +.1.3.6.1.4.1.22420.2.1.10.1.1.57 = 57 +.1.3.6.1.4.1.22420.2.1.10.1.1.58 = 58 +.1.3.6.1.4.1.22420.2.1.10.1.1.59 = 59 +.1.3.6.1.4.1.22420.2.1.10.1.1.60 = 60 +.1.3.6.1.4.1.22420.2.1.10.1.1.61 = 61 +.1.3.6.1.4.1.22420.2.1.10.1.1.62 = 62 +.1.3.6.1.4.1.22420.2.1.10.1.1.63 = 63 +.1.3.6.1.4.1.22420.2.1.10.1.1.64 = 64 +.1.3.6.1.4.1.22420.2.1.10.1.1.65 = 65 +.1.3.6.1.4.1.22420.2.1.10.1.1.66 = 66 +.1.3.6.1.4.1.22420.2.1.10.1.1.67 = 67 +.1.3.6.1.4.1.22420.2.1.10.1.1.68 = 68 +.1.3.6.1.4.1.22420.2.1.10.1.1.69 = 69 +.1.3.6.1.4.1.22420.2.1.10.1.1.70 = 70 +.1.3.6.1.4.1.22420.2.1.10.1.1.71 = 71 +.1.3.6.1.4.1.22420.2.1.10.1.1.72 = 72 +.1.3.6.1.4.1.22420.2.1.10.1.1.73 = 73 +.1.3.6.1.4.1.22420.2.1.10.1.1.74 = 74 +.1.3.6.1.4.1.22420.2.1.10.1.1.75 = 75 +.1.3.6.1.4.1.22420.2.1.10.1.1.76 = 76 +.1.3.6.1.4.1.22420.2.1.10.1.1.77 = 77 +.1.3.6.1.4.1.22420.2.1.10.1.1.78 = 78 +.1.3.6.1.4.1.22420.2.1.10.1.1.79 = 79 +.1.3.6.1.4.1.22420.2.1.10.1.1.80 = 80 +.1.3.6.1.4.1.22420.2.1.10.1.1.81 = 81 +.1.3.6.1.4.1.22420.2.1.10.1.1.82 = 82 +.1.3.6.1.4.1.22420.2.1.10.1.1.83 = 83 +.1.3.6.1.4.1.22420.2.1.10.1.1.84 = 84 +.1.3.6.1.4.1.22420.2.1.10.1.1.85 = 85 +.1.3.6.1.4.1.22420.2.1.10.1.1.86 = 86 +.1.3.6.1.4.1.22420.2.1.10.1.1.87 = 87 +.1.3.6.1.4.1.22420.2.1.10.1.1.88 = 88 +.1.3.6.1.4.1.22420.2.1.10.1.1.89 = 89 +.1.3.6.1.4.1.22420.2.1.10.1.1.90 = 90 +.1.3.6.1.4.1.22420.2.1.10.1.1.91 = 91 +.1.3.6.1.4.1.22420.2.1.10.1.1.92 = 92 +.1.3.6.1.4.1.22420.2.1.10.1.1.93 = 93 +.1.3.6.1.4.1.22420.2.1.10.1.1.94 = 94 +.1.3.6.1.4.1.22420.2.1.10.1.1.95 = 95 +.1.3.6.1.4.1.22420.2.1.10.1.1.96 = 96 +.1.3.6.1.4.1.22420.2.1.10.1.1.97 = 97 +.1.3.6.1.4.1.22420.2.1.10.1.1.98 = 98 +.1.3.6.1.4.1.22420.2.1.10.1.1.99 = 99 +.1.3.6.1.4.1.22420.2.1.10.1.1.100 = 100 +.1.3.6.1.4.1.22420.2.1.10.1.1.101 = 101 +.1.3.6.1.4.1.22420.2.1.10.1.1.102 = 102 +.1.3.6.1.4.1.22420.2.1.10.1.1.103 = 103 +.1.3.6.1.4.1.22420.2.1.10.1.1.104 = 104 +.1.3.6.1.4.1.22420.2.1.10.1.1.105 = 105 +.1.3.6.1.4.1.22420.2.1.10.1.1.106 = 106 +.1.3.6.1.4.1.22420.2.1.10.1.1.107 = 107 +.1.3.6.1.4.1.22420.2.1.10.1.1.108 = 108 +.1.3.6.1.4.1.22420.2.1.10.1.1.109 = 109 +.1.3.6.1.4.1.22420.2.1.10.1.1.110 = 110 +.1.3.6.1.4.1.22420.2.1.10.1.1.111 = 111 +.1.3.6.1.4.1.22420.2.1.10.1.1.112 = 112 +.1.3.6.1.4.1.22420.2.1.10.1.1.113 = 113 +.1.3.6.1.4.1.22420.2.1.10.1.1.114 = 114 +.1.3.6.1.4.1.22420.2.1.10.1.1.115 = 115 +.1.3.6.1.4.1.22420.2.1.10.1.1.116 = 116 +.1.3.6.1.4.1.22420.2.1.10.1.1.117 = 117 +.1.3.6.1.4.1.22420.2.1.10.1.1.118 = 118 +.1.3.6.1.4.1.22420.2.1.10.1.1.119 = 119 +.1.3.6.1.4.1.22420.2.1.10.1.1.120 = 120 +.1.3.6.1.4.1.22420.2.1.10.1.1.121 = 121 +.1.3.6.1.4.1.22420.2.1.10.1.1.122 = 122 +.1.3.6.1.4.1.22420.2.1.10.1.1.123 = 123 +.1.3.6.1.4.1.22420.2.1.10.1.1.124 = 124 +.1.3.6.1.4.1.22420.2.1.10.1.1.125 = 125 +.1.3.6.1.4.1.22420.2.1.10.1.1.126 = 126 +.1.3.6.1.4.1.22420.2.1.10.1.1.127 = 127 +.1.3.6.1.4.1.22420.2.1.10.1.1.128 = 128 +.1.3.6.1.4.1.22420.2.1.10.1.1.129 = 129 +.1.3.6.1.4.1.22420.2.1.10.1.1.130 = 130 +.1.3.6.1.4.1.22420.2.1.10.1.1.131 = 131 +.1.3.6.1.4.1.22420.2.1.10.1.1.132 = 132 +.1.3.6.1.4.1.22420.2.1.10.1.1.133 = 133 +.1.3.6.1.4.1.22420.2.1.10.1.1.134 = 134 +.1.3.6.1.4.1.22420.2.1.10.1.1.135 = 135 +.1.3.6.1.4.1.22420.2.1.10.1.1.136 = 136 +.1.3.6.1.4.1.22420.2.1.10.1.1.137 = 137 +.1.3.6.1.4.1.22420.2.1.10.1.1.138 = 138 +.1.3.6.1.4.1.22420.2.1.10.1.1.139 = 139 +.1.3.6.1.4.1.22420.2.1.10.1.1.140 = 140 +.1.3.6.1.4.1.22420.2.1.10.1.1.141 = 141 +.1.3.6.1.4.1.22420.2.1.10.1.1.142 = 142 +.1.3.6.1.4.1.22420.2.1.10.1.1.143 = 143 +.1.3.6.1.4.1.22420.2.1.10.1.1.144 = 144 +.1.3.6.1.4.1.22420.2.1.10.1.1.145 = 145 +.1.3.6.1.4.1.22420.2.1.10.1.1.146 = 146 +.1.3.6.1.4.1.22420.2.1.10.1.1.147 = 147 +.1.3.6.1.4.1.22420.2.1.10.1.1.148 = 148 +.1.3.6.1.4.1.22420.2.1.10.1.1.149 = 149 +.1.3.6.1.4.1.22420.2.1.10.1.1.150 = 150 +.1.3.6.1.4.1.22420.2.1.10.1.1.151 = 151 +.1.3.6.1.4.1.22420.2.1.10.1.1.152 = 152 +.1.3.6.1.4.1.22420.2.1.10.1.1.153 = 153 +.1.3.6.1.4.1.22420.2.1.10.1.1.154 = 154 +.1.3.6.1.4.1.22420.2.1.10.1.1.155 = 155 +.1.3.6.1.4.1.22420.2.1.10.1.1.156 = 156 +.1.3.6.1.4.1.22420.2.1.10.1.1.157 = 157 +.1.3.6.1.4.1.22420.2.1.10.1.1.158 = 158 +.1.3.6.1.4.1.22420.2.1.10.1.1.159 = 159 +.1.3.6.1.4.1.22420.2.1.10.1.1.160 = 160 +.1.3.6.1.4.1.22420.2.1.10.1.1.161 = 161 +.1.3.6.1.4.1.22420.2.1.10.1.1.162 = 162 +.1.3.6.1.4.1.22420.2.1.10.1.1.163 = 163 +.1.3.6.1.4.1.22420.2.1.10.1.1.164 = 164 +.1.3.6.1.4.1.22420.2.1.10.1.1.165 = 165 +.1.3.6.1.4.1.22420.2.1.10.1.1.166 = 166 +.1.3.6.1.4.1.22420.2.1.10.1.1.167 = 167 +.1.3.6.1.4.1.22420.2.1.10.1.1.168 = 168 +.1.3.6.1.4.1.22420.2.1.10.1.1.169 = 169 +.1.3.6.1.4.1.22420.2.1.10.1.1.170 = 170 +.1.3.6.1.4.1.22420.2.1.10.1.1.171 = 171 +.1.3.6.1.4.1.22420.2.1.10.1.1.172 = 172 +.1.3.6.1.4.1.22420.2.1.10.1.1.173 = 173 +.1.3.6.1.4.1.22420.2.1.10.1.1.174 = 174 +.1.3.6.1.4.1.22420.2.1.10.1.1.175 = 175 +.1.3.6.1.4.1.22420.2.1.10.1.1.176 = 176 +.1.3.6.1.4.1.22420.2.1.10.1.1.177 = 177 +.1.3.6.1.4.1.22420.2.1.10.1.1.178 = 178 +.1.3.6.1.4.1.22420.2.1.10.1.1.179 = 179 +.1.3.6.1.4.1.22420.2.1.10.1.1.180 = 180 +.1.3.6.1.4.1.22420.2.1.10.1.1.181 = 181 +.1.3.6.1.4.1.22420.2.1.10.1.1.182 = 182 +.1.3.6.1.4.1.22420.2.1.10.1.1.183 = 183 +.1.3.6.1.4.1.22420.2.1.10.1.1.184 = 184 +.1.3.6.1.4.1.22420.2.1.10.1.1.185 = 185 +.1.3.6.1.4.1.22420.2.1.10.1.1.186 = 186 +.1.3.6.1.4.1.22420.2.1.10.1.1.187 = 187 +.1.3.6.1.4.1.22420.2.1.10.1.1.188 = 188 +.1.3.6.1.4.1.22420.2.1.10.1.1.189 = 189 +.1.3.6.1.4.1.22420.2.1.10.1.1.190 = 190 +.1.3.6.1.4.1.22420.2.1.10.1.1.191 = 191 +.1.3.6.1.4.1.22420.2.1.10.1.1.192 = 192 +.1.3.6.1.4.1.22420.2.1.10.1.1.193 = 193 +.1.3.6.1.4.1.22420.2.1.10.1.1.194 = 194 +.1.3.6.1.4.1.22420.2.1.10.1.1.195 = 195 +.1.3.6.1.4.1.22420.2.1.10.1.1.196 = 196 +.1.3.6.1.4.1.22420.2.1.10.1.1.197 = 197 +.1.3.6.1.4.1.22420.2.1.10.1.1.198 = 198 +.1.3.6.1.4.1.22420.2.1.10.1.1.199 = 199 +.1.3.6.1.4.1.22420.2.1.10.1.1.200 = 200 +.1.3.6.1.4.1.22420.2.1.10.1.1.201 = 201 +.1.3.6.1.4.1.22420.2.1.10.1.1.202 = 202 +.1.3.6.1.4.1.22420.2.1.10.1.1.203 = 203 +.1.3.6.1.4.1.22420.2.1.10.1.1.204 = 204 +.1.3.6.1.4.1.22420.2.1.10.1.1.205 = 205 +.1.3.6.1.4.1.22420.2.1.10.1.1.206 = 206 +.1.3.6.1.4.1.22420.2.1.10.1.1.207 = 207 +.1.3.6.1.4.1.22420.2.1.10.1.1.208 = 208 +.1.3.6.1.4.1.22420.2.1.10.1.1.209 = 209 +.1.3.6.1.4.1.22420.2.1.10.1.1.210 = 210 +.1.3.6.1.4.1.22420.2.1.10.1.1.211 = 211 +.1.3.6.1.4.1.22420.2.1.10.1.1.212 = 212 +.1.3.6.1.4.1.22420.2.1.10.1.1.213 = 213 +.1.3.6.1.4.1.22420.2.1.10.1.1.214 = 214 +.1.3.6.1.4.1.22420.2.1.10.1.1.215 = 215 +.1.3.6.1.4.1.22420.2.1.10.1.1.216 = 216 +.1.3.6.1.4.1.22420.2.1.10.1.1.217 = 217 +.1.3.6.1.4.1.22420.2.1.10.1.1.218 = 218 +.1.3.6.1.4.1.22420.2.1.10.1.2.1 = 8000001 +.1.3.6.1.4.1.22420.2.1.10.1.2.2 = 8000002 +.1.3.6.1.4.1.22420.2.1.10.1.2.3 = 8000004 +.1.3.6.1.4.1.22420.2.1.10.1.2.4 = 8000005 +.1.3.6.1.4.1.22420.2.1.10.1.2.5 = 8000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.6 = 8000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.7 = 8000040 +.1.3.6.1.4.1.22420.2.1.10.1.2.8 = 8000041 +.1.3.6.1.4.1.22420.2.1.10.1.2.9 = 8000140 +.1.3.6.1.4.1.22420.2.1.10.1.2.10 = 8000141 +.1.3.6.1.4.1.22420.2.1.10.1.2.11 = 2000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.12 = 2000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.13 = 2000103 +.1.3.6.1.4.1.22420.2.1.10.1.2.14 = 2000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.15 = 2000105 +.1.3.6.1.4.1.22420.2.1.10.1.2.16 = 2000106 +.1.3.6.1.4.1.22420.2.1.10.1.2.17 = 2000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.18 = 2000108 +.1.3.6.1.4.1.22420.2.1.10.1.2.19 = 2000109 +.1.3.6.1.4.1.22420.2.1.10.1.2.20 = 2000110 +.1.3.6.1.4.1.22420.2.1.10.1.2.21 = 2000111 +.1.3.6.1.4.1.22420.2.1.10.1.2.22 = 2000112 +.1.3.6.1.4.1.22420.2.1.10.1.2.23 = 2000113 +.1.3.6.1.4.1.22420.2.1.10.1.2.24 = 2000114 +.1.3.6.1.4.1.22420.2.1.10.1.2.25 = 2000115 +.1.3.6.1.4.1.22420.2.1.10.1.2.26 = 2000116 +.1.3.6.1.4.1.22420.2.1.10.1.2.27 = 2000117 +.1.3.6.1.4.1.22420.2.1.10.1.2.28 = 2000118 +.1.3.6.1.4.1.22420.2.1.10.1.2.29 = 2000119 +.1.3.6.1.4.1.22420.2.1.10.1.2.30 = 2000120 +.1.3.6.1.4.1.22420.2.1.10.1.2.31 = 2000121 +.1.3.6.1.4.1.22420.2.1.10.1.2.32 = 2000201 +.1.3.6.1.4.1.22420.2.1.10.1.2.33 = 2000202 +.1.3.6.1.4.1.22420.2.1.10.1.2.34 = 2000203 +.1.3.6.1.4.1.22420.2.1.10.1.2.35 = 2000204 +.1.3.6.1.4.1.22420.2.1.10.1.2.36 = 2000205 +.1.3.6.1.4.1.22420.2.1.10.1.2.37 = 2000206 +.1.3.6.1.4.1.22420.2.1.10.1.2.38 = 2000207 +.1.3.6.1.4.1.22420.2.1.10.1.2.39 = 2000208 +.1.3.6.1.4.1.22420.2.1.10.1.2.40 = 2000209 +.1.3.6.1.4.1.22420.2.1.10.1.2.41 = 2000210 +.1.3.6.1.4.1.22420.2.1.10.1.2.42 = 2000211 +.1.3.6.1.4.1.22420.2.1.10.1.2.43 = 2000212 +.1.3.6.1.4.1.22420.2.1.10.1.2.44 = 2000213 +.1.3.6.1.4.1.22420.2.1.10.1.2.45 = 2000214 +.1.3.6.1.4.1.22420.2.1.10.1.2.46 = 2000215 +.1.3.6.1.4.1.22420.2.1.10.1.2.47 = 2000216 +.1.3.6.1.4.1.22420.2.1.10.1.2.48 = 2000217 +.1.3.6.1.4.1.22420.2.1.10.1.2.49 = 2000218 +.1.3.6.1.4.1.22420.2.1.10.1.2.50 = 2000219 +.1.3.6.1.4.1.22420.2.1.10.1.2.51 = 2000220 +.1.3.6.1.4.1.22420.2.1.10.1.2.52 = 2000221 +.1.3.6.1.4.1.22420.2.1.10.1.2.53 = 2000301 +.1.3.6.1.4.1.22420.2.1.10.1.2.54 = 2000302 +.1.3.6.1.4.1.22420.2.1.10.1.2.55 = 2000303 +.1.3.6.1.4.1.22420.2.1.10.1.2.56 = 2000304 +.1.3.6.1.4.1.22420.2.1.10.1.2.57 = 2000305 +.1.3.6.1.4.1.22420.2.1.10.1.2.58 = 2000306 +.1.3.6.1.4.1.22420.2.1.10.1.2.59 = 2000307 +.1.3.6.1.4.1.22420.2.1.10.1.2.60 = 2000308 +.1.3.6.1.4.1.22420.2.1.10.1.2.61 = 2000309 +.1.3.6.1.4.1.22420.2.1.10.1.2.62 = 2000310 +.1.3.6.1.4.1.22420.2.1.10.1.2.63 = 2000311 +.1.3.6.1.4.1.22420.2.1.10.1.2.64 = 2000312 +.1.3.6.1.4.1.22420.2.1.10.1.2.65 = 2000313 +.1.3.6.1.4.1.22420.2.1.10.1.2.66 = 2000314 +.1.3.6.1.4.1.22420.2.1.10.1.2.67 = 2000315 +.1.3.6.1.4.1.22420.2.1.10.1.2.68 = 2000316 +.1.3.6.1.4.1.22420.2.1.10.1.2.69 = 2000317 +.1.3.6.1.4.1.22420.2.1.10.1.2.70 = 2000318 +.1.3.6.1.4.1.22420.2.1.10.1.2.71 = 2000319 +.1.3.6.1.4.1.22420.2.1.10.1.2.72 = 2000320 +.1.3.6.1.4.1.22420.2.1.10.1.2.73 = 2000321 +.1.3.6.1.4.1.22420.2.1.10.1.2.74 = 2000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.75 = 2000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.76 = 2000403 +.1.3.6.1.4.1.22420.2.1.10.1.2.77 = 2000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.78 = 2000405 +.1.3.6.1.4.1.22420.2.1.10.1.2.79 = 2000406 +.1.3.6.1.4.1.22420.2.1.10.1.2.80 = 2000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.81 = 2000408 +.1.3.6.1.4.1.22420.2.1.10.1.2.82 = 2000409 +.1.3.6.1.4.1.22420.2.1.10.1.2.83 = 2000410 +.1.3.6.1.4.1.22420.2.1.10.1.2.84 = 2000411 +.1.3.6.1.4.1.22420.2.1.10.1.2.85 = 2000412 +.1.3.6.1.4.1.22420.2.1.10.1.2.86 = 2000413 +.1.3.6.1.4.1.22420.2.1.10.1.2.87 = 2000414 +.1.3.6.1.4.1.22420.2.1.10.1.2.88 = 2000415 +.1.3.6.1.4.1.22420.2.1.10.1.2.89 = 2000416 +.1.3.6.1.4.1.22420.2.1.10.1.2.90 = 2000417 +.1.3.6.1.4.1.22420.2.1.10.1.2.91 = 2000418 +.1.3.6.1.4.1.22420.2.1.10.1.2.92 = 2000419 +.1.3.6.1.4.1.22420.2.1.10.1.2.93 = 2000420 +.1.3.6.1.4.1.22420.2.1.10.1.2.94 = 2000421 +.1.3.6.1.4.1.22420.2.1.10.1.2.95 = 1000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.96 = 1000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.97 = 1000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.98 = 1000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.99 = 1000201 +.1.3.6.1.4.1.22420.2.1.10.1.2.100 = 1000202 +.1.3.6.1.4.1.22420.2.1.10.1.2.101 = 1000204 +.1.3.6.1.4.1.22420.2.1.10.1.2.102 = 1000207 +.1.3.6.1.4.1.22420.2.1.10.1.2.103 = 1000301 +.1.3.6.1.4.1.22420.2.1.10.1.2.104 = 1000302 +.1.3.6.1.4.1.22420.2.1.10.1.2.105 = 1000304 +.1.3.6.1.4.1.22420.2.1.10.1.2.106 = 1000307 +.1.3.6.1.4.1.22420.2.1.10.1.2.107 = 1000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.108 = 1000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.109 = 1000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.110 = 1000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.111 = 1000501 +.1.3.6.1.4.1.22420.2.1.10.1.2.112 = 1000601 +.1.3.6.1.4.1.22420.2.1.10.1.2.113 = 1000602 +.1.3.6.1.4.1.22420.2.1.10.1.2.114 = 1000604 +.1.3.6.1.4.1.22420.2.1.10.1.2.115 = 1000603 +.1.3.6.1.4.1.22420.2.1.10.1.2.116 = 1000701 +.1.3.6.1.4.1.22420.2.1.10.1.2.117 = 1000702 +.1.3.6.1.4.1.22420.2.1.10.1.2.118 = 1000704 +.1.3.6.1.4.1.22420.2.1.10.1.2.119 = 1000703 +.1.3.6.1.4.1.22420.2.1.10.1.2.120 = 8000006 +.1.3.6.1.4.1.22420.2.1.10.1.2.121 = 8000007 +.1.3.6.1.4.1.22420.2.1.10.1.2.122 = 8000080 +.1.3.6.1.4.1.22420.2.1.10.1.2.123 = 7000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.124 = 7000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.125 = 7000106 +.1.3.6.1.4.1.22420.2.1.10.1.2.126 = 7000108 +.1.3.6.1.4.1.22420.2.1.10.1.2.127 = 7000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.128 = 7000105 +.1.3.6.1.4.1.22420.2.1.10.1.2.129 = 7000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.130 = 18000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.131 = 18000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.132 = 3000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.133 = 3000102 +.1.3.6.1.4.1.22420.2.1.10.1.2.134 = 3000103 +.1.3.6.1.4.1.22420.2.1.10.1.2.135 = 3000104 +.1.3.6.1.4.1.22420.2.1.10.1.2.136 = 3000105 +.1.3.6.1.4.1.22420.2.1.10.1.2.137 = 3000106 +.1.3.6.1.4.1.22420.2.1.10.1.2.138 = 3000107 +.1.3.6.1.4.1.22420.2.1.10.1.2.139 = 3000108 +.1.3.6.1.4.1.22420.2.1.10.1.2.140 = 3000109 +.1.3.6.1.4.1.22420.2.1.10.1.2.141 = 3000110 +.1.3.6.1.4.1.22420.2.1.10.1.2.142 = 3000111 +.1.3.6.1.4.1.22420.2.1.10.1.2.143 = 3000112 +.1.3.6.1.4.1.22420.2.1.10.1.2.144 = 3000113 +.1.3.6.1.4.1.22420.2.1.10.1.2.145 = 3000114 +.1.3.6.1.4.1.22420.2.1.10.1.2.146 = 3000115 +.1.3.6.1.4.1.22420.2.1.10.1.2.147 = 3000201 +.1.3.6.1.4.1.22420.2.1.10.1.2.148 = 3000202 +.1.3.6.1.4.1.22420.2.1.10.1.2.149 = 3000203 +.1.3.6.1.4.1.22420.2.1.10.1.2.150 = 3000204 +.1.3.6.1.4.1.22420.2.1.10.1.2.151 = 3000205 +.1.3.6.1.4.1.22420.2.1.10.1.2.152 = 3000206 +.1.3.6.1.4.1.22420.2.1.10.1.2.153 = 3000207 +.1.3.6.1.4.1.22420.2.1.10.1.2.154 = 3000208 +.1.3.6.1.4.1.22420.2.1.10.1.2.155 = 3000209 +.1.3.6.1.4.1.22420.2.1.10.1.2.156 = 3000210 +.1.3.6.1.4.1.22420.2.1.10.1.2.157 = 3000211 +.1.3.6.1.4.1.22420.2.1.10.1.2.158 = 3000212 +.1.3.6.1.4.1.22420.2.1.10.1.2.159 = 3000213 +.1.3.6.1.4.1.22420.2.1.10.1.2.160 = 3000214 +.1.3.6.1.4.1.22420.2.1.10.1.2.161 = 3000215 +.1.3.6.1.4.1.22420.2.1.10.1.2.162 = 3000301 +.1.3.6.1.4.1.22420.2.1.10.1.2.163 = 3000302 +.1.3.6.1.4.1.22420.2.1.10.1.2.164 = 3000303 +.1.3.6.1.4.1.22420.2.1.10.1.2.165 = 3000304 +.1.3.6.1.4.1.22420.2.1.10.1.2.166 = 3000305 +.1.3.6.1.4.1.22420.2.1.10.1.2.167 = 3000306 +.1.3.6.1.4.1.22420.2.1.10.1.2.168 = 3000307 +.1.3.6.1.4.1.22420.2.1.10.1.2.169 = 3000308 +.1.3.6.1.4.1.22420.2.1.10.1.2.170 = 3000309 +.1.3.6.1.4.1.22420.2.1.10.1.2.171 = 3000310 +.1.3.6.1.4.1.22420.2.1.10.1.2.172 = 3000311 +.1.3.6.1.4.1.22420.2.1.10.1.2.173 = 3000312 +.1.3.6.1.4.1.22420.2.1.10.1.2.174 = 3000313 +.1.3.6.1.4.1.22420.2.1.10.1.2.175 = 3000314 +.1.3.6.1.4.1.22420.2.1.10.1.2.176 = 3000315 +.1.3.6.1.4.1.22420.2.1.10.1.2.177 = 3000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.178 = 3000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.179 = 3000403 +.1.3.6.1.4.1.22420.2.1.10.1.2.180 = 3000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.181 = 3000405 +.1.3.6.1.4.1.22420.2.1.10.1.2.182 = 3000406 +.1.3.6.1.4.1.22420.2.1.10.1.2.183 = 3000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.184 = 3000408 +.1.3.6.1.4.1.22420.2.1.10.1.2.185 = 3000409 +.1.3.6.1.4.1.22420.2.1.10.1.2.186 = 3000410 +.1.3.6.1.4.1.22420.2.1.10.1.2.187 = 3000411 +.1.3.6.1.4.1.22420.2.1.10.1.2.188 = 3000412 +.1.3.6.1.4.1.22420.2.1.10.1.2.189 = 3000413 +.1.3.6.1.4.1.22420.2.1.10.1.2.190 = 3000414 +.1.3.6.1.4.1.22420.2.1.10.1.2.191 = 3000415 +.1.3.6.1.4.1.22420.2.1.10.1.2.192 = 7000401 +.1.3.6.1.4.1.22420.2.1.10.1.2.193 = 7000412 +.1.3.6.1.4.1.22420.2.1.10.1.2.194 = 7000404 +.1.3.6.1.4.1.22420.2.1.10.1.2.195 = 7000411 +.1.3.6.1.4.1.22420.2.1.10.1.2.196 = 7000403 +.1.3.6.1.4.1.22420.2.1.10.1.2.197 = 7000410 +.1.3.6.1.4.1.22420.2.1.10.1.2.198 = 7000402 +.1.3.6.1.4.1.22420.2.1.10.1.2.199 = 7000414 +.1.3.6.1.4.1.22420.2.1.10.1.2.200 = 7000406 +.1.3.6.1.4.1.22420.2.1.10.1.2.201 = 7000413 +.1.3.6.1.4.1.22420.2.1.10.1.2.202 = 7000405 +.1.3.6.1.4.1.22420.2.1.10.1.2.203 = 7000417 +.1.3.6.1.4.1.22420.2.1.10.1.2.204 = 7000409 +.1.3.6.1.4.1.22420.2.1.10.1.2.205 = 7000415 +.1.3.6.1.4.1.22420.2.1.10.1.2.206 = 7000407 +.1.3.6.1.4.1.22420.2.1.10.1.2.207 = 7000416 +.1.3.6.1.4.1.22420.2.1.10.1.2.208 = 7000408 +.1.3.6.1.4.1.22420.2.1.10.1.2.209 = 7000421 +.1.3.6.1.4.1.22420.2.1.10.1.2.210 = 7000420 +.1.3.6.1.4.1.22420.2.1.10.1.2.211 = 7000423 +.1.3.6.1.4.1.22420.2.1.10.1.2.212 = 7000422 +.1.3.6.1.4.1.22420.2.1.10.1.2.213 = 7000425 +.1.3.6.1.4.1.22420.2.1.10.1.2.214 = 7000424 +.1.3.6.1.4.1.22420.2.1.10.1.2.215 = 7000428 +.1.3.6.1.4.1.22420.2.1.10.1.2.216 = 7000429 +.1.3.6.1.4.1.22420.2.1.10.1.2.217 = 19000101 +.1.3.6.1.4.1.22420.2.1.10.1.2.218 = 19000102 +.1.3.6.1.4.1.22420.2.1.10.1.3.1 = "First overheat threshold" +.1.3.6.1.4.1.22420.2.1.10.1.3.2 = "Second overheat threshold" +.1.3.6.1.4.1.22420.2.1.10.1.3.3 = "No power supply on feed A" +.1.3.6.1.4.1.22420.2.1.10.1.3.4 = "No power supply on feed B" +.1.3.6.1.4.1.22420.2.1.10.1.3.5 = "First overheat threshold" +.1.3.6.1.4.1.22420.2.1.10.1.3.6 = "Second overheat threshold" +.1.3.6.1.4.1.22420.2.1.10.1.3.7 = "Fan 1 slow" +.1.3.6.1.4.1.22420.2.1.10.1.3.8 = "Fan 1 failure" +.1.3.6.1.4.1.22420.2.1.10.1.3.9 = "Fan 2 slow" +.1.3.6.1.4.1.22420.2.1.10.1.3.10 = "Fan 2 failure" +.1.3.6.1.4.1.22420.2.1.10.1.3.11 = "SFP-1 temperature high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.12 = "SFP-1 temperature low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.13 = "SFP-1 temperature high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.14 = "SFP-1 temperature low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.15 = "SFP-1 supply voltage high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.16 = "SFP-1 supply voltage low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.17 = "SFP-1 supply voltage high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.18 = "SFP-1 supply voltage low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.19 = "SFP-1 laser bias current high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.20 = "SFP-1 laser bias current low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.21 = "SFP-1 laser bias current high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.22 = "SFP-1 laser bias current low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.23 = "SFP-1 transmit power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.24 = "SFP-1 transmit power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.25 = "SFP-1 transmit power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.26 = "SFP-1 transmit power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.27 = "SFP-1 receive power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.28 = "SFP-1 receive power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.29 = "SFP-1 receive power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.30 = "SFP-1 receive power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.31 = "SFP-1 not present" +.1.3.6.1.4.1.22420.2.1.10.1.3.32 = "SFP-2 temperature high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.33 = "SFP-2 temperature low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.34 = "SFP-2 temperature high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.35 = "SFP-2 temperature low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.36 = "SFP-2 supply voltage high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.37 = "SFP-2 supply voltage low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.38 = "SFP-2 supply voltage high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.39 = "SFP-2 supply voltage low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.40 = "SFP-2 laser bias current high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.41 = "SFP-2 laser bias current low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.42 = "SFP-2 laser bias current high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.43 = "SFP-2 laser bias current low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.44 = "SFP-2 transmit power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.45 = "SFP-2 transmit power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.46 = "SFP-2 transmit power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.47 = "SFP-2 transmit power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.48 = "SFP-2 receive power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.49 = "SFP-2 receive power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.50 = "SFP-2 receive power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.51 = "SFP-2 receive power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.52 = "SFP-2 not present" +.1.3.6.1.4.1.22420.2.1.10.1.3.53 = "SFP-3 temperature high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.54 = "SFP-3 temperature low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.55 = "SFP-3 temperature high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.56 = "SFP-3 temperature low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.57 = "SFP-3 supply voltage high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.58 = "SFP-3 supply voltage low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.59 = "SFP-3 supply voltage high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.60 = "SFP-3 supply voltage low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.61 = "SFP-3 laser bias current high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.62 = "SFP-3 laser bias current low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.63 = "SFP-3 laser bias current high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.64 = "SFP-3 laser bias current low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.65 = "SFP-3 transmit power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.66 = "SFP-3 transmit power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.67 = "SFP-3 transmit power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.68 = "SFP-3 transmit power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.69 = "SFP-3 receive power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.70 = "SFP-3 receive power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.71 = "SFP-3 receive power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.72 = "SFP-3 receive power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.73 = "SFP-3 not present" +.1.3.6.1.4.1.22420.2.1.10.1.3.74 = "SFP-4 temperature high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.75 = "SFP-4 temperature low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.76 = "SFP-4 temperature high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.77 = "SFP-4 temperature low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.78 = "SFP-4 supply voltage high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.79 = "SFP-4 supply voltage low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.80 = "SFP-4 supply voltage high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.81 = "SFP-4 supply voltage low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.82 = "SFP-4 laser bias current high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.83 = "SFP-4 laser bias current low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.84 = "SFP-4 laser bias current high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.85 = "SFP-4 laser bias current low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.86 = "SFP-4 transmit power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.87 = "SFP-4 transmit power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.88 = "SFP-4 transmit power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.89 = "SFP-4 transmit power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.90 = "SFP-4 receive power high alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.91 = "SFP-4 receive power low alarm" +.1.3.6.1.4.1.22420.2.1.10.1.3.92 = "SFP-4 receive power high warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.93 = "SFP-4 receive power low warning" +.1.3.6.1.4.1.22420.2.1.10.1.3.94 = "SFP-4 not present" +.1.3.6.1.4.1.22420.2.1.10.1.3.95 = "Link down on EVEN_VLAN_UPLINK port" +.1.3.6.1.4.1.22420.2.1.10.1.3.96 = "Loopback on port EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.97 = "Fault propagation caused link down on port EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.98 = "SA caused link down on port EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.99 = "Link down on ODD_VLAN_UPLINK port" +.1.3.6.1.4.1.22420.2.1.10.1.3.100 = "Loopback on port ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.101 = "Fault propagation caused link down on port ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.102 = "SA caused link down on port ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.103 = "Link down on EVEN_VLAN_DOWNLIN port" +.1.3.6.1.4.1.22420.2.1.10.1.3.104 = "Loopback on port EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.3.105 = "Fault propagation caused link down on port EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.3.106 = "SA caused link down on port EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.3.107 = "Link down on ODD_VLAN_DOWNLINK port" +.1.3.6.1.4.1.22420.2.1.10.1.3.108 = "Loopback on port ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.109 = "Fault propagation caused link down on port ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.110 = "SA caused link down on port ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.3.111 = "Link down on Management port" +.1.3.6.1.4.1.22420.2.1.10.1.3.112 = "Link down on LAG-1 port" +.1.3.6.1.4.1.22420.2.1.10.1.3.113 = "Loopback on port LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.3.114 = "Fault propagation caused link down on port LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.3.115 = "Sub-port speed mismatch on port LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.3.116 = "Link down on LAG-2 port" +.1.3.6.1.4.1.22420.2.1.10.1.3.117 = "Loopback on port LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.3.118 = "Fault propagation caused link down on port LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.3.119 = "Sub-port speed mismatch on port LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.3.120 = "Input 1 Active" +.1.3.6.1.4.1.22420.2.1.10.1.3.121 = "Input 2 Active" +.1.3.6.1.4.1.22420.2.1.10.1.3.122 = "Troubleshooting tool is running" +.1.3.6.1.4.1.22420.2.1.10.1.3.123 = "NTP client lost server communication" +.1.3.6.1.4.1.22420.2.1.10.1.3.124 = "NTP Time-of-day synchronization - May affect one-way delay measurements" +.1.3.6.1.4.1.22420.2.1.10.1.3.125 = "NTP client used interface without timestamp capability" +.1.3.6.1.4.1.22420.2.1.10.1.3.126 = "Remote NTP server used an interface without timestamp capability" +.1.3.6.1.4.1.22420.2.1.10.1.3.127 = "PTP client failure communication with server" +.1.3.6.1.4.1.22420.2.1.10.1.3.128 = "PTP Time-of-day synchronization - May affect one-way delay measurements" +.1.3.6.1.4.1.22420.2.1.10.1.3.129 = "PTP client used interface without timestamp capability" +.1.3.6.1.4.1.22420.2.1.10.1.3.130 = "Inventory entries list is almost full" +.1.3.6.1.4.1.22420.2.1.10.1.3.131 = "Inventory entries list is full" +.1.3.6.1.4.1.22420.2.1.10.1.3.132 = "PAA_Site573_VL2216 PAA_CC_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.133 = "PAA_Site573_VL2216 PAA_PL_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.134 = "PAA_Site573_VL2216 PAA_OW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.135 = "PAA_Site573_VL2216 PAA_OW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.136 = "PAA_Site573_VL2216 PAA_OW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.137 = "PAA_Site573_VL2216 PAA_OW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.138 = "PAA_Site573_VL2216 PAA_TW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.139 = "PAA_Site573_VL2216 PAA_TW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.140 = "PAA_Site573_VL2216 PAA_TW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.141 = "PAA_Site573_VL2216 PAA_TW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.142 = "PAA_Site573_VL2216 PAA_VLAN1_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.143 = "PAA_Site573_VL2216 PAA_VLAN2_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.144 = "PAA_Site573_VL2216 PAA_VLAN1_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.145 = "PAA_Site573_VL2216 PAA_VLAN2_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.146 = "PAA_Site573_VL2216 PAA_DSCP_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.147 = "PAA_site573_2216_PNAP PAA_CC_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.148 = "PAA_site573_2216_PNAP PAA_PL_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.149 = "PAA_site573_2216_PNAP PAA_OW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.150 = "PAA_site573_2216_PNAP PAA_OW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.151 = "PAA_site573_2216_PNAP PAA_OW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.152 = "PAA_site573_2216_PNAP PAA_OW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.153 = "PAA_site573_2216_PNAP PAA_TW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.154 = "PAA_site573_2216_PNAP PAA_TW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.155 = "PAA_site573_2216_PNAP PAA_TW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.156 = "PAA_site573_2216_PNAP PAA_TW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.157 = "PAA_site573_2216_PNAP PAA_VLAN1_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.158 = "PAA_site573_2216_PNAP PAA_VLAN2_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.159 = "PAA_site573_2216_PNAP PAA_VLAN1_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.160 = "PAA_site573_2216_PNAP PAA_VLAN2_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.161 = "PAA_site573_2216_PNAP PAA_DSCP_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.162 = "PAA_Site573_VL2217 PAA_CC_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.163 = "PAA_Site573_VL2217 PAA_PL_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.164 = "PAA_Site573_VL2217 PAA_OW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.165 = "PAA_Site573_VL2217 PAA_OW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.166 = "PAA_Site573_VL2217 PAA_OW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.167 = "PAA_Site573_VL2217 PAA_OW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.168 = "PAA_Site573_VL2217 PAA_TW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.169 = "PAA_Site573_VL2217 PAA_TW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.170 = "PAA_Site573_VL2217 PAA_TW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.171 = "PAA_Site573_VL2217 PAA_TW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.172 = "PAA_Site573_VL2217 PAA_VLAN1_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.173 = "PAA_Site573_VL2217 PAA_VLAN2_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.174 = "PAA_Site573_VL2217 PAA_VLAN1_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.175 = "PAA_Site573_VL2217 PAA_VLAN2_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.176 = "PAA_Site573_VL2217 PAA_DSCP_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.177 = "PAA_site573_2217_PNAP PAA_CC_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.178 = "PAA_site573_2217_PNAP PAA_PL_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.179 = "PAA_site573_2217_PNAP PAA_OW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.180 = "PAA_site573_2217_PNAP PAA_OW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.181 = "PAA_site573_2217_PNAP PAA_OW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.182 = "PAA_site573_2217_PNAP PAA_OW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.183 = "PAA_site573_2217_PNAP PAA_TW_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.184 = "PAA_site573_2217_PNAP PAA_TW_AVG_DELAY_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.185 = "PAA_site573_2217_PNAP PAA_TW_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.186 = "PAA_site573_2217_PNAP PAA_TW_AVG_DV_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.187 = "PAA_site573_2217_PNAP PAA_VLAN1_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.188 = "PAA_site573_2217_PNAP PAA_VLAN2_ID_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.189 = "PAA_site573_2217_PNAP PAA_VLAN1_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.190 = "PAA_site573_2217_PNAP PAA_VLAN2_PRIO_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.191 = "PAA_site573_2217_PNAP PAA_DSCP_ALERT" +.1.3.6.1.4.1.22420.2.1.10.1.3.192 = "VCAgent communication failure with Vision EMS" +.1.3.6.1.4.1.22420.2.1.10.1.3.193 = "VCAgent High Resolution PAA statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.194 = "VCAgent High Resolution PAA instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.195 = "VCAgent High Resolution Regulator statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.196 = "VCAgent High Resolution Regulator instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.197 = "VCAgent High Resolution Policy statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.198 = "VCAgent High Resolution Policy instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.199 = "VCAgent High Resolution SOAM DMM statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.200 = "VCAgent High Resolution SOAM DMM instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.201 = "VCAgent High Resolution SOAM PL statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.202 = "VCAgent High Resolution SOAM PL instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.203 = "VCAgent High Resolution SOAM SLM statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.204 = "VCAgent High Resolution SOAM SLM instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.205 = "VCAgent High Resolution SOAM SA statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.206 = "VCAgent High Resolution SOAM SA instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.207 = "VCAgent High Resolution SOAM SA Metrics statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.208 = "VCAgent High Resolution SOAM SA Metrics instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.209 = "VCAgent High Resolution TWAMP statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.210 = "VCAgent High Resolution TWAMP instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.211 = "VCAgent High Resolution Shaper statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.212 = "VCAgent High Resolution Shaper instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.213 = "VCAgent High Resolution Port statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.214 = "VCAgent High Resolution Port instances validation" +.1.3.6.1.4.1.22420.2.1.10.1.3.215 = "VCAgent High Resolution SFP statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.216 = "VCAgent High Resolution System Health statistics buffer full" +.1.3.6.1.4.1.22420.2.1.10.1.3.217 = "One or more certificates is about to expire" +.1.3.6.1.4.1.22420.2.1.10.1.3.218 = "One or more certificates has expired" +.1.3.6.1.4.1.22420.2.1.10.1.4.1 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.2 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.3 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.4 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.5 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.6 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.7 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.8 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.9 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.10 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.11 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.12 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.13 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.14 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.15 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.16 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.17 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.18 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.19 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.20 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.21 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.22 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.23 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.24 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.25 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.26 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.27 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.28 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.29 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.30 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.31 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.32 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.33 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.34 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.35 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.36 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.37 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.38 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.39 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.40 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.41 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.42 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.43 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.44 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.45 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.46 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.47 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.48 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.49 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.50 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.51 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.52 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.53 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.54 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.55 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.56 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.57 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.58 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.59 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.60 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.61 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.62 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.63 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.64 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.65 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.66 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.67 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.68 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.69 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.70 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.71 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.72 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.73 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.74 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.75 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.76 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.77 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.78 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.79 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.80 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.81 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.82 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.83 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.84 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.85 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.86 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.87 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.88 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.89 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.90 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.91 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.92 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.93 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.94 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.95 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.96 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.97 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.98 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.99 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.100 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.101 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.102 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.103 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.104 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.105 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.106 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.107 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.108 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.109 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.110 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.111 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.4.112 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.113 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.114 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.115 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.116 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.4.117 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.118 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.119 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.120 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.121 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.122 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.123 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.124 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.125 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.126 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.127 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.128 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.129 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.130 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.131 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.132 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.133 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.134 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.135 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.136 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.137 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.138 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.139 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.140 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.141 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.142 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.143 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.144 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.145 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.146 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.147 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.148 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.149 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.150 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.151 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.152 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.153 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.154 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.155 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.156 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.157 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.158 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.159 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.160 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.161 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.162 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.163 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.164 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.165 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.166 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.167 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.168 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.169 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.170 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.171 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.172 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.173 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.174 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.175 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.176 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.177 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.178 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.179 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.180 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.181 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.182 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.183 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.184 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.185 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.186 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.187 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.188 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.189 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.190 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.191 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.192 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.193 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.194 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.195 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.196 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.197 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.198 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.199 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.200 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.201 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.202 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.203 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.204 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.205 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.206 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.207 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.208 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.209 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.210 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.211 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.212 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.213 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.214 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.215 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.216 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.217 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.4.218 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.1 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.2 = 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.3 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.4 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.5 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.6 = 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.7 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.8 = 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.9 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.10 = 3 +.1.3.6.1.4.1.22420.2.1.10.1.5.11 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.12 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.13 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.14 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.15 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.16 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.17 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.18 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.19 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.20 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.21 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.22 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.23 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.24 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.25 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.26 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.27 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.28 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.29 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.30 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.31 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.32 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.33 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.34 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.35 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.36 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.37 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.38 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.39 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.40 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.41 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.42 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.43 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.44 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.45 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.46 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.47 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.48 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.49 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.50 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.51 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.52 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.53 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.54 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.55 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.56 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.57 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.58 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.59 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.60 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.61 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.62 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.63 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.64 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.65 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.66 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.67 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.68 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.69 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.70 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.71 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.72 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.73 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.74 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.75 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.76 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.77 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.78 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.79 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.80 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.81 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.82 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.83 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.84 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.85 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.86 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.87 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.88 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.89 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.90 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.91 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.92 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.93 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.94 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.95 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.96 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.97 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.98 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.99 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.100 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.101 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.102 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.103 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.104 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.105 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.106 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.107 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.108 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.109 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.110 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.111 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.112 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.113 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.114 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.115 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.116 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.117 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.118 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.119 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.120 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.121 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.5.122 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.123 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.124 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.125 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.126 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.127 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.128 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.129 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.130 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.131 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.132 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.133 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.134 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.135 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.136 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.137 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.138 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.139 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.140 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.141 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.142 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.143 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.144 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.145 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.146 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.147 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.148 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.149 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.150 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.151 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.152 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.153 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.154 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.155 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.156 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.157 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.158 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.159 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.160 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.161 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.162 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.163 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.164 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.165 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.166 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.167 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.168 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.169 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.170 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.171 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.172 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.173 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.174 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.175 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.176 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.177 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.178 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.179 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.180 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.181 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.182 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.183 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.184 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.185 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.186 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.187 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.188 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.189 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.190 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.191 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.192 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.193 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.194 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.195 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.196 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.197 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.198 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.199 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.200 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.201 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.202 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.203 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.204 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.205 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.206 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.207 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.208 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.209 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.210 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.211 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.212 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.213 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.214 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.215 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.216 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.5.217 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.5.218 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.1 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.2 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.3 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.4 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.5 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.6 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.7 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.8 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.9 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.10 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.11 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.12 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.13 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.14 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.15 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.16 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.17 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.18 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.19 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.20 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.21 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.22 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.23 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.24 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.25 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.26 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.27 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.28 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.29 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.30 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.31 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.32 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.33 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.34 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.35 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.36 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.37 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.38 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.39 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.40 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.41 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.42 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.43 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.44 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.45 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.46 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.47 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.48 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.49 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.50 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.51 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.52 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.53 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.54 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.55 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.56 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.57 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.58 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.59 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.60 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.61 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.62 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.63 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.64 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.65 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.66 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.67 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.68 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.69 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.70 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.71 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.72 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.73 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.74 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.75 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.76 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.77 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.78 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.79 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.80 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.81 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.82 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.83 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.84 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.85 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.86 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.87 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.88 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.89 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.90 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.91 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.92 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.93 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.94 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.95 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.96 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.97 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.98 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.99 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.100 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.101 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.102 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.103 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.104 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.105 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.106 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.107 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.108 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.109 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.110 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.111 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.112 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.113 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.114 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.115 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.116 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.117 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.118 = 1 +.1.3.6.1.4.1.22420.2.1.10.1.6.119 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.120 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.121 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.122 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.123 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.124 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.125 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.126 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.127 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.128 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.129 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.130 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.131 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.132 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.133 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.134 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.135 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.136 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.137 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.138 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.139 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.140 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.141 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.142 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.143 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.144 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.145 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.146 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.147 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.148 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.149 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.150 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.151 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.152 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.153 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.154 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.155 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.156 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.157 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.158 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.159 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.160 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.161 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.162 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.163 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.164 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.165 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.166 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.167 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.168 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.169 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.170 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.171 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.172 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.173 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.174 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.175 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.176 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.177 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.178 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.179 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.180 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.181 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.182 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.183 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.184 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.185 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.186 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.187 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.188 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.189 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.190 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.191 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.192 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.193 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.194 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.195 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.196 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.197 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.198 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.199 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.200 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.201 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.202 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.203 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.204 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.205 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.206 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.207 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.208 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.209 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.210 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.211 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.212 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.213 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.214 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.215 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.216 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.217 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.6.218 = 2 +.1.3.6.1.4.1.22420.2.1.10.1.7.1 = "8.0000.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.2 = "8.0000.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.3 = "8.0000.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.4 = "8.0000.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.5 = "8.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.6 = "8.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.7 = "8.0000.40" +.1.3.6.1.4.1.22420.2.1.10.1.7.8 = "8.0000.41" +.1.3.6.1.4.1.22420.2.1.10.1.7.9 = "8.0001.40" +.1.3.6.1.4.1.22420.2.1.10.1.7.10 = "8.0001.41" +.1.3.6.1.4.1.22420.2.1.10.1.7.11 = "2.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.12 = "2.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.13 = "2.0001.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.14 = "2.0001.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.15 = "2.0001.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.16 = "2.0001.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.17 = "2.0001.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.18 = "2.0001.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.19 = "2.0001.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.20 = "2.0001.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.21 = "2.0001.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.22 = "2.0001.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.23 = "2.0001.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.24 = "2.0001.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.25 = "2.0001.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.26 = "2.0001.16" +.1.3.6.1.4.1.22420.2.1.10.1.7.27 = "2.0001.17" +.1.3.6.1.4.1.22420.2.1.10.1.7.28 = "2.0001.18" +.1.3.6.1.4.1.22420.2.1.10.1.7.29 = "2.0001.19" +.1.3.6.1.4.1.22420.2.1.10.1.7.30 = "2.0001.20" +.1.3.6.1.4.1.22420.2.1.10.1.7.31 = "2.0001.21" +.1.3.6.1.4.1.22420.2.1.10.1.7.32 = "2.0002.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.33 = "2.0002.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.34 = "2.0002.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.35 = "2.0002.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.36 = "2.0002.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.37 = "2.0002.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.38 = "2.0002.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.39 = "2.0002.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.40 = "2.0002.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.41 = "2.0002.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.42 = "2.0002.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.43 = "2.0002.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.44 = "2.0002.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.45 = "2.0002.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.46 = "2.0002.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.47 = "2.0002.16" +.1.3.6.1.4.1.22420.2.1.10.1.7.48 = "2.0002.17" +.1.3.6.1.4.1.22420.2.1.10.1.7.49 = "2.0002.18" +.1.3.6.1.4.1.22420.2.1.10.1.7.50 = "2.0002.19" +.1.3.6.1.4.1.22420.2.1.10.1.7.51 = "2.0002.20" +.1.3.6.1.4.1.22420.2.1.10.1.7.52 = "2.0002.21" +.1.3.6.1.4.1.22420.2.1.10.1.7.53 = "2.0003.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.54 = "2.0003.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.55 = "2.0003.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.56 = "2.0003.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.57 = "2.0003.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.58 = "2.0003.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.59 = "2.0003.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.60 = "2.0003.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.61 = "2.0003.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.62 = "2.0003.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.63 = "2.0003.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.64 = "2.0003.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.65 = "2.0003.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.66 = "2.0003.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.67 = "2.0003.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.68 = "2.0003.16" +.1.3.6.1.4.1.22420.2.1.10.1.7.69 = "2.0003.17" +.1.3.6.1.4.1.22420.2.1.10.1.7.70 = "2.0003.18" +.1.3.6.1.4.1.22420.2.1.10.1.7.71 = "2.0003.19" +.1.3.6.1.4.1.22420.2.1.10.1.7.72 = "2.0003.20" +.1.3.6.1.4.1.22420.2.1.10.1.7.73 = "2.0003.21" +.1.3.6.1.4.1.22420.2.1.10.1.7.74 = "2.0004.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.75 = "2.0004.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.76 = "2.0004.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.77 = "2.0004.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.78 = "2.0004.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.79 = "2.0004.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.80 = "2.0004.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.81 = "2.0004.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.82 = "2.0004.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.83 = "2.0004.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.84 = "2.0004.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.85 = "2.0004.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.86 = "2.0004.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.87 = "2.0004.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.88 = "2.0004.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.89 = "2.0004.16" +.1.3.6.1.4.1.22420.2.1.10.1.7.90 = "2.0004.17" +.1.3.6.1.4.1.22420.2.1.10.1.7.91 = "2.0004.18" +.1.3.6.1.4.1.22420.2.1.10.1.7.92 = "2.0004.19" +.1.3.6.1.4.1.22420.2.1.10.1.7.93 = "2.0004.20" +.1.3.6.1.4.1.22420.2.1.10.1.7.94 = "2.0004.21" +.1.3.6.1.4.1.22420.2.1.10.1.7.95 = "1.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.96 = "1.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.97 = "1.0001.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.98 = "1.0001.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.99 = "1.0002.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.100 = "1.0002.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.101 = "1.0002.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.102 = "1.0002.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.103 = "1.0003.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.104 = "1.0003.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.105 = "1.0003.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.106 = "1.0003.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.107 = "1.0004.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.108 = "1.0004.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.109 = "1.0004.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.110 = "1.0004.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.111 = "1.0005.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.112 = "1.0006.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.113 = "1.0006.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.114 = "1.0006.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.115 = "1.0006.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.116 = "1.0007.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.117 = "1.0007.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.118 = "1.0007.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.119 = "1.0007.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.120 = "8.0000.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.121 = "8.0000.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.122 = "8.0000.80" +.1.3.6.1.4.1.22420.2.1.10.1.7.123 = "7.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.124 = "7.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.125 = "7.0001.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.126 = "7.0001.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.127 = "7.0001.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.128 = "7.0001.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.129 = "7.0001.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.130 = "18.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.131 = "18.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.132 = "3.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.133 = "3.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.134 = "3.0001.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.135 = "3.0001.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.136 = "3.0001.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.137 = "3.0001.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.138 = "3.0001.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.139 = "3.0001.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.140 = "3.0001.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.141 = "3.0001.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.142 = "3.0001.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.143 = "3.0001.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.144 = "3.0001.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.145 = "3.0001.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.146 = "3.0001.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.147 = "3.0002.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.148 = "3.0002.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.149 = "3.0002.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.150 = "3.0002.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.151 = "3.0002.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.152 = "3.0002.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.153 = "3.0002.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.154 = "3.0002.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.155 = "3.0002.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.156 = "3.0002.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.157 = "3.0002.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.158 = "3.0002.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.159 = "3.0002.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.160 = "3.0002.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.161 = "3.0002.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.162 = "3.0003.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.163 = "3.0003.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.164 = "3.0003.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.165 = "3.0003.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.166 = "3.0003.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.167 = "3.0003.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.168 = "3.0003.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.169 = "3.0003.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.170 = "3.0003.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.171 = "3.0003.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.172 = "3.0003.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.173 = "3.0003.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.174 = "3.0003.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.175 = "3.0003.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.176 = "3.0003.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.177 = "3.0004.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.178 = "3.0004.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.179 = "3.0004.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.180 = "3.0004.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.181 = "3.0004.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.182 = "3.0004.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.183 = "3.0004.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.184 = "3.0004.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.185 = "3.0004.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.186 = "3.0004.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.187 = "3.0004.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.188 = "3.0004.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.189 = "3.0004.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.190 = "3.0004.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.191 = "3.0004.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.192 = "7.0004.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.193 = "7.0004.12" +.1.3.6.1.4.1.22420.2.1.10.1.7.194 = "7.0004.04" +.1.3.6.1.4.1.22420.2.1.10.1.7.195 = "7.0004.11" +.1.3.6.1.4.1.22420.2.1.10.1.7.196 = "7.0004.03" +.1.3.6.1.4.1.22420.2.1.10.1.7.197 = "7.0004.10" +.1.3.6.1.4.1.22420.2.1.10.1.7.198 = "7.0004.02" +.1.3.6.1.4.1.22420.2.1.10.1.7.199 = "7.0004.14" +.1.3.6.1.4.1.22420.2.1.10.1.7.200 = "7.0004.06" +.1.3.6.1.4.1.22420.2.1.10.1.7.201 = "7.0004.13" +.1.3.6.1.4.1.22420.2.1.10.1.7.202 = "7.0004.05" +.1.3.6.1.4.1.22420.2.1.10.1.7.203 = "7.0004.17" +.1.3.6.1.4.1.22420.2.1.10.1.7.204 = "7.0004.09" +.1.3.6.1.4.1.22420.2.1.10.1.7.205 = "7.0004.15" +.1.3.6.1.4.1.22420.2.1.10.1.7.206 = "7.0004.07" +.1.3.6.1.4.1.22420.2.1.10.1.7.207 = "7.0004.16" +.1.3.6.1.4.1.22420.2.1.10.1.7.208 = "7.0004.08" +.1.3.6.1.4.1.22420.2.1.10.1.7.209 = "7.0004.21" +.1.3.6.1.4.1.22420.2.1.10.1.7.210 = "7.0004.20" +.1.3.6.1.4.1.22420.2.1.10.1.7.211 = "7.0004.23" +.1.3.6.1.4.1.22420.2.1.10.1.7.212 = "7.0004.22" +.1.3.6.1.4.1.22420.2.1.10.1.7.213 = "7.0004.25" +.1.3.6.1.4.1.22420.2.1.10.1.7.214 = "7.0004.24" +.1.3.6.1.4.1.22420.2.1.10.1.7.215 = "7.0004.28" +.1.3.6.1.4.1.22420.2.1.10.1.7.216 = "7.0004.29" +.1.3.6.1.4.1.22420.2.1.10.1.7.217 = "19.0001.01" +.1.3.6.1.4.1.22420.2.1.10.1.7.218 = "19.0001.02" +.1.3.6.1.4.1.22420.2.1.10.1.8.1 = "TEMP-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.2 = "TEMP-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.3 = "PWR-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.4 = "PWR-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.5 = "TEMP-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.6 = "TEMP-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.7 = "FAN-SLOW" +.1.3.6.1.4.1.22420.2.1.10.1.8.8 = "FAN-FAILURE" +.1.3.6.1.4.1.22420.2.1.10.1.8.9 = "FAN-SLOW" +.1.3.6.1.4.1.22420.2.1.10.1.8.10 = "FAN-FAILURE" +.1.3.6.1.4.1.22420.2.1.10.1.8.11 = "TEMP-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.12 = "TEMP-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.13 = "TEMP-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.14 = "TEMP-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.15 = "VCC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.16 = "VCC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.17 = "VCC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.18 = "VCC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.19 = "LBC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.20 = "LBC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.21 = "LBC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.22 = "LBC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.23 = "TX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.24 = "TX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.25 = "TX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.26 = "TX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.27 = "RX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.28 = "RX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.29 = "RX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.30 = "RX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.31 = "MOD-NOT-PRESENT" +.1.3.6.1.4.1.22420.2.1.10.1.8.32 = "TEMP-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.33 = "TEMP-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.34 = "TEMP-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.35 = "TEMP-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.36 = "VCC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.37 = "VCC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.38 = "VCC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.39 = "VCC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.40 = "LBC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.41 = "LBC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.42 = "LBC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.43 = "LBC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.44 = "TX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.45 = "TX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.46 = "TX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.47 = "TX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.48 = "RX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.49 = "RX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.50 = "RX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.51 = "RX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.52 = "MOD-NOT-PRESENT" +.1.3.6.1.4.1.22420.2.1.10.1.8.53 = "TEMP-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.54 = "TEMP-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.55 = "TEMP-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.56 = "TEMP-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.57 = "VCC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.58 = "VCC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.59 = "VCC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.60 = "VCC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.61 = "LBC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.62 = "LBC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.63 = "LBC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.64 = "LBC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.65 = "TX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.66 = "TX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.67 = "TX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.68 = "TX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.69 = "RX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.70 = "RX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.71 = "RX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.72 = "RX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.73 = "MOD-NOT-PRESENT" +.1.3.6.1.4.1.22420.2.1.10.1.8.74 = "TEMP-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.75 = "TEMP-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.76 = "TEMP-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.77 = "TEMP-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.78 = "VCC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.79 = "VCC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.80 = "VCC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.81 = "VCC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.82 = "LBC-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.83 = "LBC-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.84 = "LBC-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.85 = "LBC-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.86 = "TX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.87 = "TX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.88 = "TX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.89 = "TX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.90 = "RX-PWR-HIGH-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.91 = "RX-PWR-LOW-ALM" +.1.3.6.1.4.1.22420.2.1.10.1.8.92 = "RX-PWR-HIGH-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.93 = "RX-PWR-LOW-WN" +.1.3.6.1.4.1.22420.2.1.10.1.8.94 = "MOD-NOT-PRESENT" +.1.3.6.1.4.1.22420.2.1.10.1.8.95 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.96 = "OAM-LOOPBACK" +.1.3.6.1.4.1.22420.2.1.10.1.8.97 = "LINK-DOWN-FP" +.1.3.6.1.4.1.22420.2.1.10.1.8.98 = "LINK-DOWN-SA" +.1.3.6.1.4.1.22420.2.1.10.1.8.99 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.100 = "OAM-LOOPBACK" +.1.3.6.1.4.1.22420.2.1.10.1.8.101 = "LINK-DOWN-FP" +.1.3.6.1.4.1.22420.2.1.10.1.8.102 = "LINK-DOWN-SA" +.1.3.6.1.4.1.22420.2.1.10.1.8.103 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.104 = "OAM-LOOPBACK" +.1.3.6.1.4.1.22420.2.1.10.1.8.105 = "LINK-DOWN-FP" +.1.3.6.1.4.1.22420.2.1.10.1.8.106 = "LINK-DOWN-SA" +.1.3.6.1.4.1.22420.2.1.10.1.8.107 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.108 = "OAM-LOOPBACK" +.1.3.6.1.4.1.22420.2.1.10.1.8.109 = "LINK-DOWN-FP" +.1.3.6.1.4.1.22420.2.1.10.1.8.110 = "LINK-DOWN-SA" +.1.3.6.1.4.1.22420.2.1.10.1.8.111 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.112 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.113 = "OAM-LOOPBACK" +.1.3.6.1.4.1.22420.2.1.10.1.8.114 = "LINK-DOWN-FP" +.1.3.6.1.4.1.22420.2.1.10.1.8.115 = "SPEED-MISMATCH" +.1.3.6.1.4.1.22420.2.1.10.1.8.116 = "LINK-DOWN" +.1.3.6.1.4.1.22420.2.1.10.1.8.117 = "OAM-LOOPBACK" +.1.3.6.1.4.1.22420.2.1.10.1.8.118 = "LINK-DOWN-FP" +.1.3.6.1.4.1.22420.2.1.10.1.8.119 = "SPEED-MISMATCH" +.1.3.6.1.4.1.22420.2.1.10.1.8.120 = "DRYCONTACT-IN1" +.1.3.6.1.4.1.22420.2.1.10.1.8.121 = "DRYCONTACT-IN2" +.1.3.6.1.4.1.22420.2.1.10.1.8.122 = "TOOL-DIAG-RUNNING" +.1.3.6.1.4.1.22420.2.1.10.1.8.123 = "NTP-STATUS" +.1.3.6.1.4.1.22420.2.1.10.1.8.124 = "NTP-LOST-SYNCH" +.1.3.6.1.4.1.22420.2.1.10.1.8.125 = "NTP-CAPABILITY" +.1.3.6.1.4.1.22420.2.1.10.1.8.126 = "NTP-RMT-CAPABILITY" +.1.3.6.1.4.1.22420.2.1.10.1.8.127 = "PTP-STATUS" +.1.3.6.1.4.1.22420.2.1.10.1.8.128 = "PTP-LOST-SYNCH" +.1.3.6.1.4.1.22420.2.1.10.1.8.129 = "PTP-CAPABILITY" +.1.3.6.1.4.1.22420.2.1.10.1.8.130 = "INVENTORY-ALMOST-FULL" +.1.3.6.1.4.1.22420.2.1.10.1.8.131 = "INVENTORY-FULL" +.1.3.6.1.4.1.22420.2.1.10.1.8.132 = "CONNECT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.133 = "PKT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.134 = "OW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.135 = "OW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.136 = "OW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.137 = "OW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.138 = "TW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.139 = "TW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.140 = "TW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.141 = "TW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.142 = "VLAN1-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.143 = "VLAN2-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.144 = "VLAN1-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.145 = "VLAN2-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.146 = "DSCP" +.1.3.6.1.4.1.22420.2.1.10.1.8.147 = "CONNECT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.148 = "PKT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.149 = "OW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.150 = "OW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.151 = "OW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.152 = "OW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.153 = "TW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.154 = "TW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.155 = "TW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.156 = "TW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.157 = "VLAN1-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.158 = "VLAN2-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.159 = "VLAN1-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.160 = "VLAN2-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.161 = "DSCP" +.1.3.6.1.4.1.22420.2.1.10.1.8.162 = "CONNECT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.163 = "PKT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.164 = "OW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.165 = "OW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.166 = "OW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.167 = "OW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.168 = "TW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.169 = "TW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.170 = "TW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.171 = "TW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.172 = "VLAN1-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.173 = "VLAN2-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.174 = "VLAN1-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.175 = "VLAN2-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.176 = "DSCP" +.1.3.6.1.4.1.22420.2.1.10.1.8.177 = "CONNECT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.178 = "PKT-LOSS" +.1.3.6.1.4.1.22420.2.1.10.1.8.179 = "OW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.180 = "OW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.181 = "OW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.182 = "OW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.183 = "TW-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.184 = "TW-AVG-DELAY" +.1.3.6.1.4.1.22420.2.1.10.1.8.185 = "TW-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.186 = "TW-AVG-DV" +.1.3.6.1.4.1.22420.2.1.10.1.8.187 = "VLAN1-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.188 = "VLAN2-ID" +.1.3.6.1.4.1.22420.2.1.10.1.8.189 = "VLAN1-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.190 = "VLAN2-PRIO" +.1.3.6.1.4.1.22420.2.1.10.1.8.191 = "DSCP" +.1.3.6.1.4.1.22420.2.1.10.1.8.192 = "VCA-LOST-COMM" +.1.3.6.1.4.1.22420.2.1.10.1.8.193 = "VCA-FULL-PAA" +.1.3.6.1.4.1.22420.2.1.10.1.8.194 = "VCA-MAX-PAA" +.1.3.6.1.4.1.22420.2.1.10.1.8.195 = "VCA-FULL-BWP" +.1.3.6.1.4.1.22420.2.1.10.1.8.196 = "VCA-MAX-BWP" +.1.3.6.1.4.1.22420.2.1.10.1.8.197 = "VCA-FULL-POL" +.1.3.6.1.4.1.22420.2.1.10.1.8.198 = "VCA-MAX-POL" +.1.3.6.1.4.1.22420.2.1.10.1.8.199 = "VCA-FULL-DMM" +.1.3.6.1.4.1.22420.2.1.10.1.8.200 = "VCA-MAX-DMM" +.1.3.6.1.4.1.22420.2.1.10.1.8.201 = "VCA-FULL-PL" +.1.3.6.1.4.1.22420.2.1.10.1.8.202 = "VCA-MAX-PL" +.1.3.6.1.4.1.22420.2.1.10.1.8.203 = "VCA-FULL-SLM" +.1.3.6.1.4.1.22420.2.1.10.1.8.204 = "VCA-MAX-SLM" +.1.3.6.1.4.1.22420.2.1.10.1.8.205 = "VCA-FULL-SA" +.1.3.6.1.4.1.22420.2.1.10.1.8.206 = "VCA-MAX-SA" +.1.3.6.1.4.1.22420.2.1.10.1.8.207 = "VCA-FULL-SA_M" +.1.3.6.1.4.1.22420.2.1.10.1.8.208 = "VCA-MAX-SA_M" +.1.3.6.1.4.1.22420.2.1.10.1.8.209 = "VCA-FULL-TWAMP" +.1.3.6.1.4.1.22420.2.1.10.1.8.210 = "VCA-MAX-TWAMP" +.1.3.6.1.4.1.22420.2.1.10.1.8.211 = "VCA-FULL-SHAPER-V2" +.1.3.6.1.4.1.22420.2.1.10.1.8.212 = "VCA-MAX-SHAPER-V2" +.1.3.6.1.4.1.22420.2.1.10.1.8.213 = "VCA-FULL-PORT" +.1.3.6.1.4.1.22420.2.1.10.1.8.214 = "VCA-MAX-PORT" +.1.3.6.1.4.1.22420.2.1.10.1.8.215 = "VCA-FULL-SFP" +.1.3.6.1.4.1.22420.2.1.10.1.8.216 = "VCA-FULL-SYSTEM-HEALTH" +.1.3.6.1.4.1.22420.2.1.10.1.8.217 = "EXPIRING" +.1.3.6.1.4.1.22420.2.1.10.1.8.218 = "EXPIRED" +.1.3.6.1.4.1.22420.2.1.10.1.9.1 = "ENV.TEMP" +.1.3.6.1.4.1.22420.2.1.10.1.9.2 = "ENV.TEMP" +.1.3.6.1.4.1.22420.2.1.10.1.9.3 = "ENV.PWR-FEEDA" +.1.3.6.1.4.1.22420.2.1.10.1.9.4 = "ENV.PWR-FEEDB" +.1.3.6.1.4.1.22420.2.1.10.1.9.5 = "ENV.TEMP" +.1.3.6.1.4.1.22420.2.1.10.1.9.6 = "ENV.TEMP" +.1.3.6.1.4.1.22420.2.1.10.1.9.7 = "ENV.FAN-SLOW" +.1.3.6.1.4.1.22420.2.1.10.1.9.8 = "ENV.FAN-FAILURE" +.1.3.6.1.4.1.22420.2.1.10.1.9.9 = "ENV.FAN-SLOW" +.1.3.6.1.4.1.22420.2.1.10.1.9.10 = "ENV.FAN-FAILURE" +.1.3.6.1.4.1.22420.2.1.10.1.9.11 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.12 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.13 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.14 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.15 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.16 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.17 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.18 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.19 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.20 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.21 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.22 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.23 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.24 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.25 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.26 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.27 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.28 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.29 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.30 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.31 = "SFP.1" +.1.3.6.1.4.1.22420.2.1.10.1.9.32 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.33 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.34 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.35 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.36 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.37 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.38 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.39 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.40 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.41 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.42 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.43 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.44 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.45 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.46 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.47 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.48 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.49 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.50 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.51 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.52 = "SFP.2" +.1.3.6.1.4.1.22420.2.1.10.1.9.53 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.54 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.55 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.56 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.57 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.58 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.59 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.60 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.61 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.62 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.63 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.64 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.65 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.66 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.67 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.68 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.69 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.70 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.71 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.72 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.73 = "SFP.3" +.1.3.6.1.4.1.22420.2.1.10.1.9.74 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.75 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.76 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.77 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.78 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.79 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.80 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.81 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.82 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.83 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.84 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.85 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.86 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.87 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.88 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.89 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.90 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.91 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.92 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.93 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.94 = "SFP.4" +.1.3.6.1.4.1.22420.2.1.10.1.9.95 = "PORT.EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.96 = "PORT.EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.97 = "PORT.EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.98 = "PORT.EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.99 = "PORT.ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.100 = "PORT.ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.101 = "PORT.ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.102 = "PORT.ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.103 = "PORT.EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.9.104 = "PORT.EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.9.105 = "PORT.EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.9.106 = "PORT.EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.1.10.1.9.107 = "PORT.ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.108 = "PORT.ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.109 = "PORT.ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.110 = "PORT.ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.1.10.1.9.111 = "PORT.Management" +.1.3.6.1.4.1.22420.2.1.10.1.9.112 = "PORT.LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.9.113 = "PORT.LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.9.114 = "PORT.LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.9.115 = "PORT.LAG-1" +.1.3.6.1.4.1.22420.2.1.10.1.9.116 = "PORT.LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.9.117 = "PORT.LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.9.118 = "PORT.LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.9.119 = "PORT.LAG-2" +.1.3.6.1.4.1.22420.2.1.10.1.9.120 = "ENV.DRYCONTACT-IN1" +.1.3.6.1.4.1.22420.2.1.10.1.9.121 = "ENV.DRYCONTACT-IN2" +.1.3.6.1.4.1.22420.2.1.10.1.9.122 = "NE" +.1.3.6.1.4.1.22420.2.1.10.1.9.123 = "PROTOCOL.NTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.124 = "PROTOCOL.NTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.125 = "PROTOCOL.NTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.126 = "PROTOCOL.NTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.127 = "PROTOCOL.PTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.128 = "PROTOCOL.PTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.129 = "PROTOCOL.PTP" +.1.3.6.1.4.1.22420.2.1.10.1.9.130 = "INVENTORY" +.1.3.6.1.4.1.22420.2.1.10.1.9.131 = "INVENTORY" +.1.3.6.1.4.1.22420.2.1.10.1.9.132 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.133 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.134 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.135 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.136 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.137 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.138 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.139 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.140 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.141 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.142 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.143 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.144 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.145 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.146 = "PAA.PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.1.10.1.9.147 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.148 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.149 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.150 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.151 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.152 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.153 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.154 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.155 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.156 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.157 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.158 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.159 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.160 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.161 = "PAA.PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.162 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.163 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.164 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.165 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.166 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.167 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.168 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.169 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.170 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.171 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.172 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.173 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.174 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.175 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.176 = "PAA.PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.1.10.1.9.177 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.178 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.179 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.180 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.181 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.182 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.183 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.184 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.185 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.186 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.187 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.188 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.189 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.190 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.191 = "PAA.PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.1.10.1.9.192 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.193 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.194 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.195 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.196 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.197 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.198 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.199 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.200 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.201 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.202 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.203 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.204 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.205 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.206 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.207 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.208 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.209 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.210 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.211 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.212 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.213 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.214 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.215 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.216 = "VCAGENT" +.1.3.6.1.4.1.22420.2.1.10.1.9.217 = "CERTIFICATE.EXPIRING" +.1.3.6.1.4.1.22420.2.1.10.1.9.218 = "CERTIFICATE.EXPIRED" +.1.3.6.1.4.1.22420.2.1.10.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.5 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.8 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.9 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.10 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.11 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.12 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.13 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.14 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.15 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.16 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.17 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.18 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.19 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.20 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.21 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.22 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.23 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.24 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.25 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.26 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.27 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.28 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.29 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.30 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.31 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.32 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.33 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.34 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.35 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.36 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.37 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.38 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.39 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.40 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.41 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.42 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.43 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.44 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.45 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.46 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.47 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.48 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.49 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.50 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.51 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.52 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.53 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.54 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.55 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.56 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.57 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.58 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.59 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.60 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.61 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.62 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.63 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.64 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.65 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.66 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.67 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.68 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.69 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.70 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.71 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.72 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.73 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.74 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.75 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.76 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.77 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.78 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.79 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.80 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.81 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.82 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.83 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.84 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.85 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.86 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.87 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.88 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.89 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.90 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.91 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.92 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.93 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.94 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.95 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.96 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.97 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.98 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.99 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.100 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.101 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.102 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.103 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.104 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.105 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.106 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.107 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.108 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.109 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.110 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.111 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.112 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.113 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.114 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.115 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.116 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.117 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.118 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.119 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.120 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.121 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.122 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.123 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.124 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.125 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.126 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.127 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.128 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.129 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.130 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.131 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.132 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.133 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.134 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.135 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.136 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.137 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.138 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.139 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.140 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.141 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.142 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.143 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.144 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.145 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.146 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.147 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.148 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.149 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.150 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.151 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.152 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.153 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.154 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.155 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.156 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.157 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.158 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.159 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.160 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.161 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.162 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.163 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.164 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.165 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.166 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.167 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.168 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.169 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.170 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.171 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.172 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.173 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.174 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.175 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.176 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.177 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.178 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.179 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.180 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.181 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.182 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.183 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.184 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.185 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.186 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.187 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.188 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.189 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.190 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.191 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.192 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.193 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.194 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.195 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.196 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.197 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.198 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.199 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.200 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.201 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.202 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.203 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.204 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.205 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.206 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.207 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.208 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.209 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.210 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.211 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.212 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.213 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.214 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.215 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.216 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.217 = 0 +.1.3.6.1.4.1.22420.2.1.10.1.10.218 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.1.1 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.1.2 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.1.3 = 3 +.1.3.6.1.4.1.22420.2.1.11.1.1.4 = 4 +.1.3.6.1.4.1.22420.2.1.11.1.1.5 = 5 +.1.3.6.1.4.1.22420.2.1.11.1.1.6 = 6 +.1.3.6.1.4.1.22420.2.1.11.1.1.7 = 7 +.1.3.6.1.4.1.22420.2.1.11.1.1.8 = 8 +.1.3.6.1.4.1.22420.2.1.11.1.1.9 = 9 +.1.3.6.1.4.1.22420.2.1.11.1.1.10 = 10 +.1.3.6.1.4.1.22420.2.1.11.1.1.11 = 11 +.1.3.6.1.4.1.22420.2.1.11.1.1.12 = 12 +.1.3.6.1.4.1.22420.2.1.11.1.1.13 = 13 +.1.3.6.1.4.1.22420.2.1.11.1.1.14 = 14 +.1.3.6.1.4.1.22420.2.1.11.1.1.15 = 15 +.1.3.6.1.4.1.22420.2.1.11.1.1.16 = 16 +.1.3.6.1.4.1.22420.2.1.11.1.1.17 = 17 +.1.3.6.1.4.1.22420.2.1.11.1.1.18 = 18 +.1.3.6.1.4.1.22420.2.1.11.1.1.19 = 19 +.1.3.6.1.4.1.22420.2.1.11.1.1.20 = 20 +.1.3.6.1.4.1.22420.2.1.11.1.1.21 = 21 +.1.3.6.1.4.1.22420.2.1.11.1.1.22 = 22 +.1.3.6.1.4.1.22420.2.1.11.1.1.23 = 23 +.1.3.6.1.4.1.22420.2.1.11.1.1.24 = 24 +.1.3.6.1.4.1.22420.2.1.11.1.1.25 = 25 +.1.3.6.1.4.1.22420.2.1.11.1.1.26 = 26 +.1.3.6.1.4.1.22420.2.1.11.1.1.27 = 27 +.1.3.6.1.4.1.22420.2.1.11.1.1.28 = 28 +.1.3.6.1.4.1.22420.2.1.11.1.1.29 = 29 +.1.3.6.1.4.1.22420.2.1.11.1.1.30 = 30 +.1.3.6.1.4.1.22420.2.1.11.1.1.31 = 31 +.1.3.6.1.4.1.22420.2.1.11.1.1.32 = 32 +.1.3.6.1.4.1.22420.2.1.11.1.1.33 = 33 +.1.3.6.1.4.1.22420.2.1.11.1.1.34 = 34 +.1.3.6.1.4.1.22420.2.1.11.1.1.35 = 35 +.1.3.6.1.4.1.22420.2.1.11.1.1.36 = 36 +.1.3.6.1.4.1.22420.2.1.11.1.1.37 = 37 +.1.3.6.1.4.1.22420.2.1.11.1.1.38 = 38 +.1.3.6.1.4.1.22420.2.1.11.1.1.39 = 39 +.1.3.6.1.4.1.22420.2.1.11.1.1.40 = 40 +.1.3.6.1.4.1.22420.2.1.11.1.1.41 = 41 +.1.3.6.1.4.1.22420.2.1.11.1.1.42 = 42 +.1.3.6.1.4.1.22420.2.1.11.1.1.43 = 43 +.1.3.6.1.4.1.22420.2.1.11.1.1.44 = 44 +.1.3.6.1.4.1.22420.2.1.11.1.1.45 = 45 +.1.3.6.1.4.1.22420.2.1.11.1.1.46 = 46 +.1.3.6.1.4.1.22420.2.1.11.1.1.47 = 47 +.1.3.6.1.4.1.22420.2.1.11.1.1.48 = 48 +.1.3.6.1.4.1.22420.2.1.11.1.1.49 = 49 +.1.3.6.1.4.1.22420.2.1.11.1.1.50 = 50 +.1.3.6.1.4.1.22420.2.1.11.1.1.51 = 51 +.1.3.6.1.4.1.22420.2.1.11.1.1.52 = 52 +.1.3.6.1.4.1.22420.2.1.11.1.1.53 = 53 +.1.3.6.1.4.1.22420.2.1.11.1.1.54 = 54 +.1.3.6.1.4.1.22420.2.1.11.1.1.55 = 55 +.1.3.6.1.4.1.22420.2.1.11.1.1.56 = 56 +.1.3.6.1.4.1.22420.2.1.11.1.1.57 = 57 +.1.3.6.1.4.1.22420.2.1.11.1.1.58 = 58 +.1.3.6.1.4.1.22420.2.1.11.1.1.59 = 59 +.1.3.6.1.4.1.22420.2.1.11.1.1.60 = 60 +.1.3.6.1.4.1.22420.2.1.11.1.1.61 = 61 +.1.3.6.1.4.1.22420.2.1.11.1.1.62 = 62 +.1.3.6.1.4.1.22420.2.1.11.1.1.63 = 63 +.1.3.6.1.4.1.22420.2.1.11.1.1.64 = 64 +.1.3.6.1.4.1.22420.2.1.11.1.1.65 = 65 +.1.3.6.1.4.1.22420.2.1.11.1.1.66 = 66 +.1.3.6.1.4.1.22420.2.1.11.1.1.67 = 67 +.1.3.6.1.4.1.22420.2.1.11.1.1.68 = 68 +.1.3.6.1.4.1.22420.2.1.11.1.1.69 = 69 +.1.3.6.1.4.1.22420.2.1.11.1.1.70 = 70 +.1.3.6.1.4.1.22420.2.1.11.1.1.71 = 71 +.1.3.6.1.4.1.22420.2.1.11.1.1.72 = 72 +.1.3.6.1.4.1.22420.2.1.11.1.1.73 = 73 +.1.3.6.1.4.1.22420.2.1.11.1.1.74 = 74 +.1.3.6.1.4.1.22420.2.1.11.1.1.75 = 75 +.1.3.6.1.4.1.22420.2.1.11.1.1.76 = 76 +.1.3.6.1.4.1.22420.2.1.11.1.1.77 = 77 +.1.3.6.1.4.1.22420.2.1.11.1.1.78 = 78 +.1.3.6.1.4.1.22420.2.1.11.1.1.79 = 79 +.1.3.6.1.4.1.22420.2.1.11.1.1.80 = 80 +.1.3.6.1.4.1.22420.2.1.11.1.1.81 = 81 +.1.3.6.1.4.1.22420.2.1.11.1.1.82 = 82 +.1.3.6.1.4.1.22420.2.1.11.1.1.83 = 83 +.1.3.6.1.4.1.22420.2.1.11.1.1.84 = 84 +.1.3.6.1.4.1.22420.2.1.11.1.1.85 = 85 +.1.3.6.1.4.1.22420.2.1.11.1.1.86 = 86 +.1.3.6.1.4.1.22420.2.1.11.1.1.87 = 87 +.1.3.6.1.4.1.22420.2.1.11.1.1.88 = 88 +.1.3.6.1.4.1.22420.2.1.11.1.1.89 = 89 +.1.3.6.1.4.1.22420.2.1.11.1.1.90 = 90 +.1.3.6.1.4.1.22420.2.1.11.1.1.91 = 91 +.1.3.6.1.4.1.22420.2.1.11.1.1.92 = 92 +.1.3.6.1.4.1.22420.2.1.11.1.1.93 = 93 +.1.3.6.1.4.1.22420.2.1.11.1.1.94 = 94 +.1.3.6.1.4.1.22420.2.1.11.1.1.95 = 95 +.1.3.6.1.4.1.22420.2.1.11.1.1.96 = 96 +.1.3.6.1.4.1.22420.2.1.11.1.1.97 = 97 +.1.3.6.1.4.1.22420.2.1.11.1.1.98 = 98 +.1.3.6.1.4.1.22420.2.1.11.1.1.99 = 99 +.1.3.6.1.4.1.22420.2.1.11.1.1.100 = 100 +.1.3.6.1.4.1.22420.2.1.11.1.1.101 = 101 +.1.3.6.1.4.1.22420.2.1.11.1.1.102 = 102 +.1.3.6.1.4.1.22420.2.1.11.1.1.103 = 103 +.1.3.6.1.4.1.22420.2.1.11.1.1.104 = 104 +.1.3.6.1.4.1.22420.2.1.11.1.1.105 = 105 +.1.3.6.1.4.1.22420.2.1.11.1.1.106 = 106 +.1.3.6.1.4.1.22420.2.1.11.1.1.107 = 107 +.1.3.6.1.4.1.22420.2.1.11.1.1.108 = 108 +.1.3.6.1.4.1.22420.2.1.11.1.1.109 = 109 +.1.3.6.1.4.1.22420.2.1.11.1.1.110 = 110 +.1.3.6.1.4.1.22420.2.1.11.1.1.111 = 111 +.1.3.6.1.4.1.22420.2.1.11.1.1.112 = 112 +.1.3.6.1.4.1.22420.2.1.11.1.1.113 = 113 +.1.3.6.1.4.1.22420.2.1.11.1.1.114 = 114 +.1.3.6.1.4.1.22420.2.1.11.1.1.115 = 115 +.1.3.6.1.4.1.22420.2.1.11.1.1.116 = 116 +.1.3.6.1.4.1.22420.2.1.11.1.1.117 = 117 +.1.3.6.1.4.1.22420.2.1.11.1.1.118 = 118 +.1.3.6.1.4.1.22420.2.1.11.1.1.119 = 119 +.1.3.6.1.4.1.22420.2.1.11.1.1.120 = 120 +.1.3.6.1.4.1.22420.2.1.11.1.1.121 = 121 +.1.3.6.1.4.1.22420.2.1.11.1.1.122 = 122 +.1.3.6.1.4.1.22420.2.1.11.1.1.123 = 123 +.1.3.6.1.4.1.22420.2.1.11.1.1.124 = 124 +.1.3.6.1.4.1.22420.2.1.11.1.1.125 = 125 +.1.3.6.1.4.1.22420.2.1.11.1.1.126 = 126 +.1.3.6.1.4.1.22420.2.1.11.1.1.127 = 127 +.1.3.6.1.4.1.22420.2.1.11.1.1.128 = 128 +.1.3.6.1.4.1.22420.2.1.11.1.1.129 = 129 +.1.3.6.1.4.1.22420.2.1.11.1.1.130 = 130 +.1.3.6.1.4.1.22420.2.1.11.1.1.131 = 131 +.1.3.6.1.4.1.22420.2.1.11.1.1.132 = 132 +.1.3.6.1.4.1.22420.2.1.11.1.1.133 = 133 +.1.3.6.1.4.1.22420.2.1.11.1.1.134 = 134 +.1.3.6.1.4.1.22420.2.1.11.1.1.135 = 135 +.1.3.6.1.4.1.22420.2.1.11.1.1.136 = 136 +.1.3.6.1.4.1.22420.2.1.11.1.1.137 = 137 +.1.3.6.1.4.1.22420.2.1.11.1.1.138 = 138 +.1.3.6.1.4.1.22420.2.1.11.1.1.139 = 139 +.1.3.6.1.4.1.22420.2.1.11.1.1.140 = 140 +.1.3.6.1.4.1.22420.2.1.11.1.1.141 = 141 +.1.3.6.1.4.1.22420.2.1.11.1.1.142 = 142 +.1.3.6.1.4.1.22420.2.1.11.1.1.143 = 143 +.1.3.6.1.4.1.22420.2.1.11.1.1.144 = 144 +.1.3.6.1.4.1.22420.2.1.11.1.1.145 = 145 +.1.3.6.1.4.1.22420.2.1.11.1.1.146 = 146 +.1.3.6.1.4.1.22420.2.1.11.1.1.147 = 147 +.1.3.6.1.4.1.22420.2.1.11.1.1.148 = 148 +.1.3.6.1.4.1.22420.2.1.11.1.1.149 = 149 +.1.3.6.1.4.1.22420.2.1.11.1.1.150 = 150 +.1.3.6.1.4.1.22420.2.1.11.1.1.151 = 151 +.1.3.6.1.4.1.22420.2.1.11.1.1.152 = 152 +.1.3.6.1.4.1.22420.2.1.11.1.1.153 = 153 +.1.3.6.1.4.1.22420.2.1.11.1.1.154 = 154 +.1.3.6.1.4.1.22420.2.1.11.1.1.155 = 155 +.1.3.6.1.4.1.22420.2.1.11.1.1.156 = 156 +.1.3.6.1.4.1.22420.2.1.11.1.1.157 = 157 +.1.3.6.1.4.1.22420.2.1.11.1.1.158 = 158 +.1.3.6.1.4.1.22420.2.1.11.1.1.159 = 159 +.1.3.6.1.4.1.22420.2.1.11.1.1.160 = 160 +.1.3.6.1.4.1.22420.2.1.11.1.1.161 = 161 +.1.3.6.1.4.1.22420.2.1.11.1.1.162 = 162 +.1.3.6.1.4.1.22420.2.1.11.1.1.163 = 163 +.1.3.6.1.4.1.22420.2.1.11.1.1.164 = 164 +.1.3.6.1.4.1.22420.2.1.11.1.1.165 = 165 +.1.3.6.1.4.1.22420.2.1.11.1.1.166 = 166 +.1.3.6.1.4.1.22420.2.1.11.1.1.167 = 167 +.1.3.6.1.4.1.22420.2.1.11.1.1.168 = 168 +.1.3.6.1.4.1.22420.2.1.11.1.1.169 = 169 +.1.3.6.1.4.1.22420.2.1.11.1.1.170 = 170 +.1.3.6.1.4.1.22420.2.1.11.1.1.171 = 171 +.1.3.6.1.4.1.22420.2.1.11.1.1.172 = 172 +.1.3.6.1.4.1.22420.2.1.11.1.1.173 = 173 +.1.3.6.1.4.1.22420.2.1.11.1.1.174 = 174 +.1.3.6.1.4.1.22420.2.1.11.1.1.175 = 175 +.1.3.6.1.4.1.22420.2.1.11.1.1.176 = 176 +.1.3.6.1.4.1.22420.2.1.11.1.1.177 = 177 +.1.3.6.1.4.1.22420.2.1.11.1.1.178 = 178 +.1.3.6.1.4.1.22420.2.1.11.1.1.179 = 179 +.1.3.6.1.4.1.22420.2.1.11.1.1.180 = 180 +.1.3.6.1.4.1.22420.2.1.11.1.1.181 = 181 +.1.3.6.1.4.1.22420.2.1.11.1.1.182 = 182 +.1.3.6.1.4.1.22420.2.1.11.1.1.183 = 183 +.1.3.6.1.4.1.22420.2.1.11.1.1.184 = 184 +.1.3.6.1.4.1.22420.2.1.11.1.1.185 = 185 +.1.3.6.1.4.1.22420.2.1.11.1.1.186 = 186 +.1.3.6.1.4.1.22420.2.1.11.1.1.187 = 187 +.1.3.6.1.4.1.22420.2.1.11.1.1.188 = 188 +.1.3.6.1.4.1.22420.2.1.11.1.1.189 = 189 +.1.3.6.1.4.1.22420.2.1.11.1.1.190 = 190 +.1.3.6.1.4.1.22420.2.1.11.1.1.191 = 191 +.1.3.6.1.4.1.22420.2.1.11.1.1.192 = 192 +.1.3.6.1.4.1.22420.2.1.11.1.1.193 = 193 +.1.3.6.1.4.1.22420.2.1.11.1.1.194 = 194 +.1.3.6.1.4.1.22420.2.1.11.1.1.195 = 195 +.1.3.6.1.4.1.22420.2.1.11.1.1.196 = 196 +.1.3.6.1.4.1.22420.2.1.11.1.1.197 = 197 +.1.3.6.1.4.1.22420.2.1.11.1.1.198 = 198 +.1.3.6.1.4.1.22420.2.1.11.1.1.199 = 199 +.1.3.6.1.4.1.22420.2.1.11.1.1.200 = 200 +.1.3.6.1.4.1.22420.2.1.11.1.1.201 = 201 +.1.3.6.1.4.1.22420.2.1.11.1.1.202 = 202 +.1.3.6.1.4.1.22420.2.1.11.1.1.203 = 203 +.1.3.6.1.4.1.22420.2.1.11.1.1.204 = 204 +.1.3.6.1.4.1.22420.2.1.11.1.1.205 = 205 +.1.3.6.1.4.1.22420.2.1.11.1.1.206 = 206 +.1.3.6.1.4.1.22420.2.1.11.1.1.207 = 207 +.1.3.6.1.4.1.22420.2.1.11.1.1.208 = 208 +.1.3.6.1.4.1.22420.2.1.11.1.1.209 = 209 +.1.3.6.1.4.1.22420.2.1.11.1.1.210 = 210 +.1.3.6.1.4.1.22420.2.1.11.1.1.211 = 211 +.1.3.6.1.4.1.22420.2.1.11.1.1.212 = 212 +.1.3.6.1.4.1.22420.2.1.11.1.1.213 = 213 +.1.3.6.1.4.1.22420.2.1.11.1.1.214 = 214 +.1.3.6.1.4.1.22420.2.1.11.1.1.215 = 215 +.1.3.6.1.4.1.22420.2.1.11.1.1.216 = 216 +.1.3.6.1.4.1.22420.2.1.11.1.1.217 = 217 +.1.3.6.1.4.1.22420.2.1.11.1.1.218 = 218 +.1.3.6.1.4.1.22420.2.1.11.1.2.1 = 8000001 +.1.3.6.1.4.1.22420.2.1.11.1.2.2 = 8000002 +.1.3.6.1.4.1.22420.2.1.11.1.2.3 = 8000004 +.1.3.6.1.4.1.22420.2.1.11.1.2.4 = 8000005 +.1.3.6.1.4.1.22420.2.1.11.1.2.5 = 8000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.6 = 8000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.7 = 8000040 +.1.3.6.1.4.1.22420.2.1.11.1.2.8 = 8000041 +.1.3.6.1.4.1.22420.2.1.11.1.2.9 = 8000140 +.1.3.6.1.4.1.22420.2.1.11.1.2.10 = 8000141 +.1.3.6.1.4.1.22420.2.1.11.1.2.11 = 2000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.12 = 2000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.13 = 2000103 +.1.3.6.1.4.1.22420.2.1.11.1.2.14 = 2000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.15 = 2000105 +.1.3.6.1.4.1.22420.2.1.11.1.2.16 = 2000106 +.1.3.6.1.4.1.22420.2.1.11.1.2.17 = 2000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.18 = 2000108 +.1.3.6.1.4.1.22420.2.1.11.1.2.19 = 2000109 +.1.3.6.1.4.1.22420.2.1.11.1.2.20 = 2000110 +.1.3.6.1.4.1.22420.2.1.11.1.2.21 = 2000111 +.1.3.6.1.4.1.22420.2.1.11.1.2.22 = 2000112 +.1.3.6.1.4.1.22420.2.1.11.1.2.23 = 2000113 +.1.3.6.1.4.1.22420.2.1.11.1.2.24 = 2000114 +.1.3.6.1.4.1.22420.2.1.11.1.2.25 = 2000115 +.1.3.6.1.4.1.22420.2.1.11.1.2.26 = 2000116 +.1.3.6.1.4.1.22420.2.1.11.1.2.27 = 2000117 +.1.3.6.1.4.1.22420.2.1.11.1.2.28 = 2000118 +.1.3.6.1.4.1.22420.2.1.11.1.2.29 = 2000119 +.1.3.6.1.4.1.22420.2.1.11.1.2.30 = 2000120 +.1.3.6.1.4.1.22420.2.1.11.1.2.31 = 2000121 +.1.3.6.1.4.1.22420.2.1.11.1.2.32 = 2000201 +.1.3.6.1.4.1.22420.2.1.11.1.2.33 = 2000202 +.1.3.6.1.4.1.22420.2.1.11.1.2.34 = 2000203 +.1.3.6.1.4.1.22420.2.1.11.1.2.35 = 2000204 +.1.3.6.1.4.1.22420.2.1.11.1.2.36 = 2000205 +.1.3.6.1.4.1.22420.2.1.11.1.2.37 = 2000206 +.1.3.6.1.4.1.22420.2.1.11.1.2.38 = 2000207 +.1.3.6.1.4.1.22420.2.1.11.1.2.39 = 2000208 +.1.3.6.1.4.1.22420.2.1.11.1.2.40 = 2000209 +.1.3.6.1.4.1.22420.2.1.11.1.2.41 = 2000210 +.1.3.6.1.4.1.22420.2.1.11.1.2.42 = 2000211 +.1.3.6.1.4.1.22420.2.1.11.1.2.43 = 2000212 +.1.3.6.1.4.1.22420.2.1.11.1.2.44 = 2000213 +.1.3.6.1.4.1.22420.2.1.11.1.2.45 = 2000214 +.1.3.6.1.4.1.22420.2.1.11.1.2.46 = 2000215 +.1.3.6.1.4.1.22420.2.1.11.1.2.47 = 2000216 +.1.3.6.1.4.1.22420.2.1.11.1.2.48 = 2000217 +.1.3.6.1.4.1.22420.2.1.11.1.2.49 = 2000218 +.1.3.6.1.4.1.22420.2.1.11.1.2.50 = 2000219 +.1.3.6.1.4.1.22420.2.1.11.1.2.51 = 2000220 +.1.3.6.1.4.1.22420.2.1.11.1.2.52 = 2000221 +.1.3.6.1.4.1.22420.2.1.11.1.2.53 = 2000301 +.1.3.6.1.4.1.22420.2.1.11.1.2.54 = 2000302 +.1.3.6.1.4.1.22420.2.1.11.1.2.55 = 2000303 +.1.3.6.1.4.1.22420.2.1.11.1.2.56 = 2000304 +.1.3.6.1.4.1.22420.2.1.11.1.2.57 = 2000305 +.1.3.6.1.4.1.22420.2.1.11.1.2.58 = 2000306 +.1.3.6.1.4.1.22420.2.1.11.1.2.59 = 2000307 +.1.3.6.1.4.1.22420.2.1.11.1.2.60 = 2000308 +.1.3.6.1.4.1.22420.2.1.11.1.2.61 = 2000309 +.1.3.6.1.4.1.22420.2.1.11.1.2.62 = 2000310 +.1.3.6.1.4.1.22420.2.1.11.1.2.63 = 2000311 +.1.3.6.1.4.1.22420.2.1.11.1.2.64 = 2000312 +.1.3.6.1.4.1.22420.2.1.11.1.2.65 = 2000313 +.1.3.6.1.4.1.22420.2.1.11.1.2.66 = 2000314 +.1.3.6.1.4.1.22420.2.1.11.1.2.67 = 2000315 +.1.3.6.1.4.1.22420.2.1.11.1.2.68 = 2000316 +.1.3.6.1.4.1.22420.2.1.11.1.2.69 = 2000317 +.1.3.6.1.4.1.22420.2.1.11.1.2.70 = 2000318 +.1.3.6.1.4.1.22420.2.1.11.1.2.71 = 2000319 +.1.3.6.1.4.1.22420.2.1.11.1.2.72 = 2000320 +.1.3.6.1.4.1.22420.2.1.11.1.2.73 = 2000321 +.1.3.6.1.4.1.22420.2.1.11.1.2.74 = 2000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.75 = 2000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.76 = 2000403 +.1.3.6.1.4.1.22420.2.1.11.1.2.77 = 2000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.78 = 2000405 +.1.3.6.1.4.1.22420.2.1.11.1.2.79 = 2000406 +.1.3.6.1.4.1.22420.2.1.11.1.2.80 = 2000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.81 = 2000408 +.1.3.6.1.4.1.22420.2.1.11.1.2.82 = 2000409 +.1.3.6.1.4.1.22420.2.1.11.1.2.83 = 2000410 +.1.3.6.1.4.1.22420.2.1.11.1.2.84 = 2000411 +.1.3.6.1.4.1.22420.2.1.11.1.2.85 = 2000412 +.1.3.6.1.4.1.22420.2.1.11.1.2.86 = 2000413 +.1.3.6.1.4.1.22420.2.1.11.1.2.87 = 2000414 +.1.3.6.1.4.1.22420.2.1.11.1.2.88 = 2000415 +.1.3.6.1.4.1.22420.2.1.11.1.2.89 = 2000416 +.1.3.6.1.4.1.22420.2.1.11.1.2.90 = 2000417 +.1.3.6.1.4.1.22420.2.1.11.1.2.91 = 2000418 +.1.3.6.1.4.1.22420.2.1.11.1.2.92 = 2000419 +.1.3.6.1.4.1.22420.2.1.11.1.2.93 = 2000420 +.1.3.6.1.4.1.22420.2.1.11.1.2.94 = 2000421 +.1.3.6.1.4.1.22420.2.1.11.1.2.95 = 1000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.96 = 1000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.97 = 1000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.98 = 1000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.99 = 1000201 +.1.3.6.1.4.1.22420.2.1.11.1.2.100 = 1000202 +.1.3.6.1.4.1.22420.2.1.11.1.2.101 = 1000204 +.1.3.6.1.4.1.22420.2.1.11.1.2.102 = 1000207 +.1.3.6.1.4.1.22420.2.1.11.1.2.103 = 1000301 +.1.3.6.1.4.1.22420.2.1.11.1.2.104 = 1000302 +.1.3.6.1.4.1.22420.2.1.11.1.2.105 = 1000304 +.1.3.6.1.4.1.22420.2.1.11.1.2.106 = 1000307 +.1.3.6.1.4.1.22420.2.1.11.1.2.107 = 1000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.108 = 1000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.109 = 1000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.110 = 1000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.111 = 1000501 +.1.3.6.1.4.1.22420.2.1.11.1.2.112 = 1000601 +.1.3.6.1.4.1.22420.2.1.11.1.2.113 = 1000602 +.1.3.6.1.4.1.22420.2.1.11.1.2.114 = 1000604 +.1.3.6.1.4.1.22420.2.1.11.1.2.115 = 1000603 +.1.3.6.1.4.1.22420.2.1.11.1.2.116 = 1000701 +.1.3.6.1.4.1.22420.2.1.11.1.2.117 = 1000702 +.1.3.6.1.4.1.22420.2.1.11.1.2.118 = 1000704 +.1.3.6.1.4.1.22420.2.1.11.1.2.119 = 1000703 +.1.3.6.1.4.1.22420.2.1.11.1.2.120 = 8000006 +.1.3.6.1.4.1.22420.2.1.11.1.2.121 = 8000007 +.1.3.6.1.4.1.22420.2.1.11.1.2.122 = 8000080 +.1.3.6.1.4.1.22420.2.1.11.1.2.123 = 7000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.124 = 7000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.125 = 7000106 +.1.3.6.1.4.1.22420.2.1.11.1.2.126 = 7000108 +.1.3.6.1.4.1.22420.2.1.11.1.2.127 = 7000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.128 = 7000105 +.1.3.6.1.4.1.22420.2.1.11.1.2.129 = 7000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.130 = 18000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.131 = 18000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.132 = 3000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.133 = 3000102 +.1.3.6.1.4.1.22420.2.1.11.1.2.134 = 3000103 +.1.3.6.1.4.1.22420.2.1.11.1.2.135 = 3000104 +.1.3.6.1.4.1.22420.2.1.11.1.2.136 = 3000105 +.1.3.6.1.4.1.22420.2.1.11.1.2.137 = 3000106 +.1.3.6.1.4.1.22420.2.1.11.1.2.138 = 3000107 +.1.3.6.1.4.1.22420.2.1.11.1.2.139 = 3000108 +.1.3.6.1.4.1.22420.2.1.11.1.2.140 = 3000109 +.1.3.6.1.4.1.22420.2.1.11.1.2.141 = 3000110 +.1.3.6.1.4.1.22420.2.1.11.1.2.142 = 3000111 +.1.3.6.1.4.1.22420.2.1.11.1.2.143 = 3000112 +.1.3.6.1.4.1.22420.2.1.11.1.2.144 = 3000113 +.1.3.6.1.4.1.22420.2.1.11.1.2.145 = 3000114 +.1.3.6.1.4.1.22420.2.1.11.1.2.146 = 3000115 +.1.3.6.1.4.1.22420.2.1.11.1.2.147 = 3000201 +.1.3.6.1.4.1.22420.2.1.11.1.2.148 = 3000202 +.1.3.6.1.4.1.22420.2.1.11.1.2.149 = 3000203 +.1.3.6.1.4.1.22420.2.1.11.1.2.150 = 3000204 +.1.3.6.1.4.1.22420.2.1.11.1.2.151 = 3000205 +.1.3.6.1.4.1.22420.2.1.11.1.2.152 = 3000206 +.1.3.6.1.4.1.22420.2.1.11.1.2.153 = 3000207 +.1.3.6.1.4.1.22420.2.1.11.1.2.154 = 3000208 +.1.3.6.1.4.1.22420.2.1.11.1.2.155 = 3000209 +.1.3.6.1.4.1.22420.2.1.11.1.2.156 = 3000210 +.1.3.6.1.4.1.22420.2.1.11.1.2.157 = 3000211 +.1.3.6.1.4.1.22420.2.1.11.1.2.158 = 3000212 +.1.3.6.1.4.1.22420.2.1.11.1.2.159 = 3000213 +.1.3.6.1.4.1.22420.2.1.11.1.2.160 = 3000214 +.1.3.6.1.4.1.22420.2.1.11.1.2.161 = 3000215 +.1.3.6.1.4.1.22420.2.1.11.1.2.162 = 3000301 +.1.3.6.1.4.1.22420.2.1.11.1.2.163 = 3000302 +.1.3.6.1.4.1.22420.2.1.11.1.2.164 = 3000303 +.1.3.6.1.4.1.22420.2.1.11.1.2.165 = 3000304 +.1.3.6.1.4.1.22420.2.1.11.1.2.166 = 3000305 +.1.3.6.1.4.1.22420.2.1.11.1.2.167 = 3000306 +.1.3.6.1.4.1.22420.2.1.11.1.2.168 = 3000307 +.1.3.6.1.4.1.22420.2.1.11.1.2.169 = 3000308 +.1.3.6.1.4.1.22420.2.1.11.1.2.170 = 3000309 +.1.3.6.1.4.1.22420.2.1.11.1.2.171 = 3000310 +.1.3.6.1.4.1.22420.2.1.11.1.2.172 = 3000311 +.1.3.6.1.4.1.22420.2.1.11.1.2.173 = 3000312 +.1.3.6.1.4.1.22420.2.1.11.1.2.174 = 3000313 +.1.3.6.1.4.1.22420.2.1.11.1.2.175 = 3000314 +.1.3.6.1.4.1.22420.2.1.11.1.2.176 = 3000315 +.1.3.6.1.4.1.22420.2.1.11.1.2.177 = 3000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.178 = 3000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.179 = 3000403 +.1.3.6.1.4.1.22420.2.1.11.1.2.180 = 3000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.181 = 3000405 +.1.3.6.1.4.1.22420.2.1.11.1.2.182 = 3000406 +.1.3.6.1.4.1.22420.2.1.11.1.2.183 = 3000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.184 = 3000408 +.1.3.6.1.4.1.22420.2.1.11.1.2.185 = 3000409 +.1.3.6.1.4.1.22420.2.1.11.1.2.186 = 3000410 +.1.3.6.1.4.1.22420.2.1.11.1.2.187 = 3000411 +.1.3.6.1.4.1.22420.2.1.11.1.2.188 = 3000412 +.1.3.6.1.4.1.22420.2.1.11.1.2.189 = 3000413 +.1.3.6.1.4.1.22420.2.1.11.1.2.190 = 3000414 +.1.3.6.1.4.1.22420.2.1.11.1.2.191 = 3000415 +.1.3.6.1.4.1.22420.2.1.11.1.2.192 = 7000401 +.1.3.6.1.4.1.22420.2.1.11.1.2.193 = 7000412 +.1.3.6.1.4.1.22420.2.1.11.1.2.194 = 7000404 +.1.3.6.1.4.1.22420.2.1.11.1.2.195 = 7000411 +.1.3.6.1.4.1.22420.2.1.11.1.2.196 = 7000403 +.1.3.6.1.4.1.22420.2.1.11.1.2.197 = 7000410 +.1.3.6.1.4.1.22420.2.1.11.1.2.198 = 7000402 +.1.3.6.1.4.1.22420.2.1.11.1.2.199 = 7000414 +.1.3.6.1.4.1.22420.2.1.11.1.2.200 = 7000406 +.1.3.6.1.4.1.22420.2.1.11.1.2.201 = 7000413 +.1.3.6.1.4.1.22420.2.1.11.1.2.202 = 7000405 +.1.3.6.1.4.1.22420.2.1.11.1.2.203 = 7000417 +.1.3.6.1.4.1.22420.2.1.11.1.2.204 = 7000409 +.1.3.6.1.4.1.22420.2.1.11.1.2.205 = 7000415 +.1.3.6.1.4.1.22420.2.1.11.1.2.206 = 7000407 +.1.3.6.1.4.1.22420.2.1.11.1.2.207 = 7000416 +.1.3.6.1.4.1.22420.2.1.11.1.2.208 = 7000408 +.1.3.6.1.4.1.22420.2.1.11.1.2.209 = 7000421 +.1.3.6.1.4.1.22420.2.1.11.1.2.210 = 7000420 +.1.3.6.1.4.1.22420.2.1.11.1.2.211 = 7000423 +.1.3.6.1.4.1.22420.2.1.11.1.2.212 = 7000422 +.1.3.6.1.4.1.22420.2.1.11.1.2.213 = 7000425 +.1.3.6.1.4.1.22420.2.1.11.1.2.214 = 7000424 +.1.3.6.1.4.1.22420.2.1.11.1.2.215 = 7000428 +.1.3.6.1.4.1.22420.2.1.11.1.2.216 = 7000429 +.1.3.6.1.4.1.22420.2.1.11.1.2.217 = 19000101 +.1.3.6.1.4.1.22420.2.1.11.1.2.218 = 19000102 +.1.3.6.1.4.1.22420.2.1.11.1.3.1 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.2 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.3 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.4 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.5 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.6 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.7 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.8 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.9 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.10 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.11 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.12 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.13 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.14 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.15 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.16 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.17 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.18 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.19 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.20 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.21 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.22 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.23 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.24 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.25 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.26 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.27 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.28 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.29 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.30 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.31 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.32 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.33 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.34 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.35 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.36 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.37 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.38 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.39 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.40 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.41 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.42 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.43 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.44 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.45 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.46 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.47 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.48 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.49 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.50 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.51 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.52 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.53 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.54 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.55 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.56 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.57 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.58 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.59 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.60 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.61 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.62 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.63 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.64 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.65 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.66 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.67 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.68 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.69 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.70 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.71 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.72 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.73 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.74 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.75 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.76 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.77 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.78 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.79 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.80 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.81 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.82 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.83 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.84 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.85 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.86 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.87 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.88 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.89 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.90 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.91 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.92 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.93 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.94 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.95 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.96 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.97 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.98 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.99 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.100 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.101 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.102 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.103 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.104 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.105 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.106 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.107 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.108 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.109 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.110 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.111 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.112 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.113 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.114 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.115 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.116 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.117 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.118 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.119 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.120 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.121 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.122 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.123 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.124 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.125 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.126 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.127 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.128 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.129 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.130 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.131 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.132 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.133 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.134 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.135 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.136 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.137 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.138 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.139 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.140 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.141 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.142 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.143 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.144 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.145 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.146 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.147 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.148 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.149 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.150 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.151 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.152 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.153 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.154 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.155 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.156 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.157 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.158 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.159 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.160 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.161 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.162 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.163 = 1 +.1.3.6.1.4.1.22420.2.1.11.1.3.164 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.165 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.166 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.167 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.168 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.169 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.170 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.171 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.172 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.173 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.174 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.175 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.176 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.177 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.178 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.179 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.180 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.181 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.182 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.183 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.184 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.185 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.186 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.187 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.188 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.189 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.190 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.191 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.192 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.193 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.194 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.195 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.196 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.197 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.198 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.199 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.200 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.201 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.202 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.203 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.204 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.205 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.206 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.207 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.208 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.209 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.210 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.211 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.212 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.213 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.214 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.215 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.216 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.217 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.3.218 = 2 +.1.3.6.1.4.1.22420.2.1.11.1.4.1 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.2 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.3 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.4 = "07 B2 06 16 16 1D 07 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.5 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.6 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.7 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.8 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.9 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.10 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.11 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.12 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.13 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.14 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.15 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.16 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.17 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.18 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.19 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.20 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.21 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.22 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.23 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.24 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.25 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.26 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.27 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.28 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.29 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.30 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.31 = "07 B4 0A 0F 11 35 3A 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.32 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.33 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.34 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.35 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.36 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.37 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.38 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.39 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.40 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.41 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.42 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.43 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.44 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.45 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.46 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.47 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.48 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.49 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.50 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.51 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.52 = "07 B4 0A 0F 13 03 07 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.53 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.54 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.55 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.56 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.57 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.58 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.59 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.60 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.61 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.62 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.63 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.64 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.65 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.66 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.67 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.68 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.69 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.70 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.71 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.72 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.73 = "07 B4 0A 0F 13 03 0B 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.74 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.75 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.76 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.77 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.78 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.79 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.80 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.81 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.82 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.83 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.84 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.85 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.86 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.87 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.88 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.89 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.90 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.91 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.92 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.93 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.94 = "07 B4 09 1A 13 0F 06 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.95 = "07 B5 01 18 12 07 19 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.96 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.97 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.98 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.99 = "07 B3 0C 1D 0D 1C 33 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.100 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.101 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.102 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.103 = "07 B4 0B 15 14 0A 2F 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.104 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.105 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.106 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.107 = "07 B4 09 1A 13 0E 23 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.108 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.109 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.110 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.111 = "07 B5 03 07 14 36 0F 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.112 = "07 B2 06 16 16 1D 0F 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.113 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.114 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.115 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.116 = "07 B2 06 16 16 1D 0F 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.117 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.118 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.119 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.120 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.121 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.122 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.123 = "07 B2 06 16 16 1F 23 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.124 = "07 B2 06 16 16 1D 15 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.125 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.126 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.127 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.128 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.129 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.130 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.131 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.132 = "07 B2 06 16 16 1D 25 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.133 = "07 B2 06 16 16 1D 26 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.134 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.135 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.136 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.137 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.138 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.139 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.140 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.141 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.142 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.143 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.144 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.145 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.146 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.147 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.148 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.149 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.150 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.151 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.152 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.153 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.154 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.155 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.156 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.157 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.158 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.159 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.160 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.161 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.162 = "07 B2 06 16 16 1D 25 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.163 = "07 B2 06 16 16 1D 26 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.164 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.165 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.166 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.167 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.168 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.169 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.170 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.171 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.172 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.173 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.174 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.175 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.176 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.177 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.178 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.179 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.180 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.181 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.182 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.183 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.184 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.185 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.186 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.187 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.188 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.189 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.190 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.191 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.192 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.193 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.194 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.195 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.196 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.197 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.198 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.199 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.200 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.201 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.202 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.203 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.204 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.205 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.206 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.207 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.208 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.209 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.210 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.211 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.212 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.213 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.214 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.215 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.216 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.217 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.4.218 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.1.11.1.5.1 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.2 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.3 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.4 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.5 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.6 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.7 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.8 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.9 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.10 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.11 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.12 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.13 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.14 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.15 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.16 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.17 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.18 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.19 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.20 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.21 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.22 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.23 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.24 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.25 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.26 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.27 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.28 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.29 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.30 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.31 = "was inserted." +.1.3.6.1.4.1.22420.2.1.11.1.5.32 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.33 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.34 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.35 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.36 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.37 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.38 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.39 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.40 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.41 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.42 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.43 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.44 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.45 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.46 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.47 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.48 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.49 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.50 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.51 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.52 = "was removed." +.1.3.6.1.4.1.22420.2.1.11.1.5.53 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.54 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.55 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.56 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.57 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.58 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.59 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.60 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.61 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.62 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.63 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.64 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.65 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.66 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.67 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.68 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.69 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.70 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.71 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.72 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.73 = "was inserted." +.1.3.6.1.4.1.22420.2.1.11.1.5.74 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.75 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.76 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.77 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.78 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.79 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.80 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.81 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.82 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.83 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.84 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.85 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.86 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.87 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.88 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.89 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.90 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.91 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.92 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.93 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.94 = "was removed." +.1.3.6.1.4.1.22420.2.1.11.1.5.95 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.96 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.97 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.98 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.99 = "went down" +.1.3.6.1.4.1.22420.2.1.11.1.5.100 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.101 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.102 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.103 = "went down" +.1.3.6.1.4.1.22420.2.1.11.1.5.104 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.105 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.106 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.107 = "went down" +.1.3.6.1.4.1.22420.2.1.11.1.5.108 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.109 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.110 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.111 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.112 = "went down" +.1.3.6.1.4.1.22420.2.1.11.1.5.113 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.114 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.115 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.116 = "went down" +.1.3.6.1.4.1.22420.2.1.11.1.5.117 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.118 = "went up" +.1.3.6.1.4.1.22420.2.1.11.1.5.119 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.120 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.121 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.122 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.123 = "Lost contact, server 10.10.20." +.1.3.6.1.4.1.22420.2.1.11.1.5.124 = "NTP lost time-of-day sync" +.1.3.6.1.4.1.22420.2.1.11.1.5.125 = "Use intf with HW timestamp" +.1.3.6.1.4.1.22420.2.1.11.1.5.126 = "Use intf with HW timestamp" +.1.3.6.1.4.1.22420.2.1.11.1.5.127 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.128 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.129 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.130 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.131 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.132 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.133 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.134 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.135 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.136 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.137 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.138 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.139 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.140 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.141 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.142 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.143 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.144 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.145 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.146 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.147 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.148 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.149 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.150 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.151 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.152 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.153 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.154 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.155 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.156 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.157 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.158 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.159 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.160 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.161 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.162 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.163 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.164 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.165 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.166 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.167 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.168 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.169 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.170 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.171 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.172 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.173 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.174 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.175 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.176 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.177 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.178 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.179 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.180 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.181 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.182 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.183 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.184 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.185 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.186 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.187 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.188 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.189 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.190 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.191 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.192 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.193 = "Buffer not full for PAA" +.1.3.6.1.4.1.22420.2.1.11.1.5.194 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.195 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.196 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.197 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.198 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.199 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.200 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.201 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.202 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.203 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.204 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.205 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.206 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.207 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.208 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.209 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.210 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.211 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.212 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.213 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.214 = "All instances are collected" +.1.3.6.1.4.1.22420.2.1.11.1.5.215 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.216 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.217 = "" +.1.3.6.1.4.1.22420.2.1.11.1.5.218 = "" +.1.3.6.1.4.1.22420.2.1.11.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.8 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.9 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.10 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.11 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.12 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.13 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.14 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.15 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.16 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.17 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.18 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.19 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.20 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.21 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.22 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.23 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.24 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.25 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.26 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.27 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.28 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.29 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.30 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.31 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.32 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.33 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.34 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.35 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.36 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.37 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.38 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.39 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.40 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.41 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.42 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.43 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.44 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.45 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.46 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.47 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.48 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.49 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.50 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.51 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.52 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.53 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.54 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.55 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.56 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.57 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.58 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.59 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.60 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.61 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.62 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.63 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.64 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.65 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.66 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.67 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.68 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.69 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.70 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.71 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.72 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.73 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.74 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.75 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.76 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.77 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.78 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.79 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.80 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.81 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.82 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.83 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.84 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.85 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.86 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.87 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.88 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.89 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.90 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.91 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.92 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.93 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.94 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.95 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.96 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.97 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.98 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.99 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.100 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.101 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.102 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.103 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.104 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.105 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.106 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.107 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.108 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.109 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.110 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.111 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.112 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.113 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.114 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.115 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.116 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.117 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.118 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.119 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.120 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.121 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.122 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.123 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.124 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.125 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.126 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.127 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.128 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.129 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.130 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.131 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.132 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.133 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.134 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.135 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.136 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.137 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.138 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.139 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.140 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.141 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.142 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.143 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.144 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.145 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.146 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.147 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.148 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.149 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.150 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.151 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.152 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.153 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.154 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.155 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.156 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.157 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.158 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.159 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.160 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.161 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.162 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.163 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.164 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.165 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.166 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.167 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.168 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.169 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.170 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.171 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.172 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.173 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.174 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.175 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.176 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.177 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.178 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.179 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.180 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.181 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.182 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.183 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.184 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.185 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.186 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.187 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.188 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.189 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.190 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.191 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.192 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.193 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.194 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.195 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.196 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.197 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.198 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.199 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.200 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.201 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.202 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.203 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.204 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.205 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.206 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.207 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.208 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.209 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.210 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.211 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.212 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.213 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.214 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.215 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.216 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.217 = 0 +.1.3.6.1.4.1.22420.2.1.11.1.6.218 = 0 +.1.3.6.1.4.1.22420.2.1.15.4.1.0 = 247 +.1.3.6.1.4.1.22420.2.1.15.4.2.0 = 101 +.1.3.6.1.4.1.22420.2.2.1.1.1.1 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.1.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.1.3 = 3 +.1.3.6.1.4.1.22420.2.2.1.1.1.4 = 4 +.1.3.6.1.4.1.22420.2.2.1.1.1.5 = 5 +.1.3.6.1.4.1.22420.2.2.1.1.1.6 = 6 +.1.3.6.1.4.1.22420.2.2.1.1.1.7 = 7 +.1.3.6.1.4.1.22420.2.2.1.1.1.8 = 8 +.1.3.6.1.4.1.22420.2.2.1.1.1.9 = 9 +.1.3.6.1.4.1.22420.2.2.1.1.1.10 = 10 +.1.3.6.1.4.1.22420.2.2.1.1.1.11 = 11 +.1.3.6.1.4.1.22420.2.2.1.1.1.12 = 12 +.1.3.6.1.4.1.22420.2.2.1.1.1.13 = 13 +.1.3.6.1.4.1.22420.2.2.1.1.1.14 = 14 +.1.3.6.1.4.1.22420.2.2.1.1.1.15 = 15 +.1.3.6.1.4.1.22420.2.2.1.1.1.16 = 16 +.1.3.6.1.4.1.22420.2.2.1.1.1.17 = 17 +.1.3.6.1.4.1.22420.2.2.1.1.1.18 = 18 +.1.3.6.1.4.1.22420.2.2.1.1.1.19 = 19 +.1.3.6.1.4.1.22420.2.2.1.1.1.20 = 20 +.1.3.6.1.4.1.22420.2.2.1.1.1.21 = 21 +.1.3.6.1.4.1.22420.2.2.1.1.1.22 = 22 +.1.3.6.1.4.1.22420.2.2.1.1.1.23 = 23 +.1.3.6.1.4.1.22420.2.2.1.1.1.24 = 24 +.1.3.6.1.4.1.22420.2.2.1.1.1.25 = 25 +.1.3.6.1.4.1.22420.2.2.1.1.1.26 = 26 +.1.3.6.1.4.1.22420.2.2.1.1.1.27 = 27 +.1.3.6.1.4.1.22420.2.2.1.1.2.1 = "*default" +.1.3.6.1.4.1.22420.2.2.1.1.2.2 = "PAA-Discovery" +.1.3.6.1.4.1.22420.2.2.1.1.2.3 = "MTSOMAC_SRC" +.1.3.6.1.4.1.22420.2.2.1.1.2.4 = "MTSOMAC_DST" +.1.3.6.1.4.1.22420.2.2.1.1.2.5 = "SVLAN_2216" +.1.3.6.1.4.1.22420.2.2.1.1.2.6 = "catchAll" +.1.3.6.1.4.1.22420.2.2.1.1.2.7 = "ieeeBPDU" +.1.3.6.1.4.1.22420.2.2.1.1.2.8 = "ciscoBPDU" +.1.3.6.1.4.1.22420.2.2.1.1.2.9 = "macDst" +.1.3.6.1.4.1.22420.2.2.1.1.2.10 = "macSrc" +.1.3.6.1.4.1.22420.2.2.1.1.2.11 = "frameType" +.1.3.6.1.4.1.22420.2.2.1.1.2.12 = "firstVlanId" +.1.3.6.1.4.1.22420.2.2.1.1.2.13 = "firstVlanPrior" +.1.3.6.1.4.1.22420.2.2.1.1.2.14 = "firstVlanCfi" +.1.3.6.1.4.1.22420.2.2.1.1.2.15 = "secondVlanId" +.1.3.6.1.4.1.22420.2.2.1.1.2.16 = "secondVlanPrior" +.1.3.6.1.4.1.22420.2.2.1.1.2.17 = "secondVlanCfi" +.1.3.6.1.4.1.22420.2.2.1.1.2.18 = "SVLAN_2217" +.1.3.6.1.4.1.22420.2.2.1.1.2.19 = "VLAN_2573" +.1.3.6.1.4.1.22420.2.2.1.1.2.20 = "VLAN_3573" +.1.3.6.1.4.1.22420.2.2.1.1.2.21 = "rvResortMAC_DST" +.1.3.6.1.4.1.22420.2.2.1.1.2.22 = "rvResortMAC_SRC" +.1.3.6.1.4.1.22420.2.2.1.1.2.23 = "SVLAN_2218" +.1.3.6.1.4.1.22420.2.2.1.1.2.24 = "SVLAN_2219" +.1.3.6.1.4.1.22420.2.2.1.1.2.25 = "SVLAN_2220" +.1.3.6.1.4.1.22420.2.2.1.1.2.26 = "SVLAN_2221" +.1.3.6.1.4.1.22420.2.2.1.1.2.27 = "CVLAN_3999" +.1.3.6.1.4.1.22420.2.2.1.1.3.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.2 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.4 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.7 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.8 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.9 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.21 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.3.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.3.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.4.1 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.2 = "FF FF FF FF FF FF " +.1.3.6.1.4.1.22420.2.2.1.1.4.3 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.4 = "00 23 3E 82 15 73 " +.1.3.6.1.4.1.22420.2.2.1.1.4.5 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.6 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.7 = "01 80 C2 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.8 = "01 00 0C CC CC CD " +.1.3.6.1.4.1.22420.2.2.1.1.4.9 = "00 15 AD 01 01 01 " +.1.3.6.1.4.1.22420.2.2.1.1.4.10 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.11 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.12 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.13 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.14 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.15 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.16 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.17 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.18 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.19 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.20 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.21 = "50 40 61 85 DE 68 " +.1.3.6.1.4.1.22420.2.2.1.1.4.22 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.23 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.24 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.25 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.26 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.4.27 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.5.1 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.2 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.3 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.4 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.5 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.6 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.7 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.8 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.9 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.10 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.11 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.12 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.13 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.14 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.15 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.16 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.17 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.18 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.19 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.20 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.21 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.22 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.23 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.24 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.25 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.26 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.5.27 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.6.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.3 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.6.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.10 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.6.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.22 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.6.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.6.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.7.1 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.2 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.3 = "00 23 3E 82 15 73 " +.1.3.6.1.4.1.22420.2.2.1.1.7.4 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.5 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.6 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.7 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.8 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.9 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.10 = "00 15 AD 01 01 01 " +.1.3.6.1.4.1.22420.2.2.1.1.7.11 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.12 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.13 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.14 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.15 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.16 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.17 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.18 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.19 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.20 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.21 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.22 = "50 40 61 85 DE 68 " +.1.3.6.1.4.1.22420.2.2.1.1.7.23 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.24 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.25 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.26 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.7.27 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.1.1.8.1 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.2 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.3 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.4 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.5 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.6 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.7 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.8 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.9 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.10 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.11 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.12 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.13 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.14 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.15 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.16 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.17 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.18 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.19 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.20 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.21 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.22 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.23 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.24 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.25 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.26 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.8.27 = 48 +.1.3.6.1.4.1.22420.2.2.1.1.9.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.2 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.9.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.11 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.9.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.9.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.2 = 35068 +.1.3.6.1.4.1.22420.2.2.1.1.10.3 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.4 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.5 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.11 = 36864 +.1.3.6.1.4.1.22420.2.2.1.1.10.12 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.13 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.14 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.15 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.16 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.17 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.10.18 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.19 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.20 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.21 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.22 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.23 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.24 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.25 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.26 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.10.27 = 2048 +.1.3.6.1.4.1.22420.2.2.1.1.11.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.13 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.11.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.11.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.12.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.3 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.5 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.11 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.12 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.13 = 5 +.1.3.6.1.4.1.22420.2.2.1.1.12.14 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.12.15 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.16 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.17 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.18 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.19 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.20 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.21 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.22 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.23 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.24 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.25 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.26 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.12.27 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.13.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.14 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.13.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.13.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.14.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.2 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.4 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.5 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.11 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.12 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.13 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.14 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.14.15 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.16 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.17 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.18 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.19 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.20 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.21 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.22 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.23 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.24 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.25 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.26 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.14.27 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.15.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.5 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.12 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.18 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.19 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.20 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.15.23 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.24 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.25 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.26 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.15.27 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.2 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.4 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.5 = 2216 +.1.3.6.1.4.1.22420.2.2.1.1.16.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.11 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.12 = 100 +.1.3.6.1.4.1.22420.2.2.1.1.16.13 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.14 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.15 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.16 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.16.17 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.18 = 2217 +.1.3.6.1.4.1.22420.2.2.1.1.16.19 = 2573 +.1.3.6.1.4.1.22420.2.2.1.1.16.20 = 3573 +.1.3.6.1.4.1.22420.2.2.1.1.16.21 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.22 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.16.23 = 2218 +.1.3.6.1.4.1.22420.2.2.1.1.16.24 = 2219 +.1.3.6.1.4.1.22420.2.2.1.1.16.25 = 2220 +.1.3.6.1.4.1.22420.2.2.1.1.16.26 = 2221 +.1.3.6.1.4.1.22420.2.2.1.1.16.27 = 3999 +.1.3.6.1.4.1.22420.2.2.1.1.17.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.16 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.17.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.17.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.2 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.4 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.5 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.11 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.12 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.13 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.14 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.15 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.16 = 5 +.1.3.6.1.4.1.22420.2.2.1.1.18.17 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.18.18 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.19 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.20 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.21 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.22 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.23 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.24 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.25 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.26 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.18.27 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.19.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.15 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.17 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.19.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.19.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.20.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.2 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.3 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.4 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.5 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.11 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.12 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.13 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.14 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.15 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.16 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.17 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.20.18 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.19 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.20 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.21 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.22 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.23 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.24 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.25 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.26 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.20.27 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.21.1 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.2 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.3 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.4 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.5 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.6 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.7 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.8 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.9 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.10 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.11 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.12 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.13 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.14 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.15 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.21.16 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.17 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.18 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.19 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.20 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.21 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.22 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.23 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.24 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.25 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.26 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.21.27 = 2 +.1.3.6.1.4.1.22420.2.2.1.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.2 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.3 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.4 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.5 = 2573 +.1.3.6.1.4.1.22420.2.2.1.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.8 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.9 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.10 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.11 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.12 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.13 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.14 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.15 = 200 +.1.3.6.1.4.1.22420.2.2.1.1.22.16 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.17 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.18 = 3573 +.1.3.6.1.4.1.22420.2.2.1.1.22.19 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.20 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.21 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.22 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.22.23 = 2166 +.1.3.6.1.4.1.22420.2.2.1.1.22.24 = 3166 +.1.3.6.1.4.1.22420.2.2.1.1.22.25 = 2347 +.1.3.6.1.4.1.22420.2.2.1.1.22.26 = 3347 +.1.3.6.1.4.1.22420.2.2.1.1.22.27 = 0 +.1.3.6.1.4.1.22420.2.2.1.1.23.1 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.2 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.3 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.4 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.5 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.6 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.7 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.8 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.9 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.10 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.11 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.12 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.13 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.14 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.15 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.16 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.17 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.18 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.19 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.20 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.21 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.22 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.23 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.24 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.25 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.26 = 1 +.1.3.6.1.4.1.22420.2.2.1.1.23.27 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.2.6 = "ipSrc" +.1.3.6.1.4.1.22420.2.2.2.1.2.7 = "ipDst" +.1.3.6.1.4.1.22420.2.2.2.1.2.8 = "ipTTL" +.1.3.6.1.4.1.22420.2.2.2.1.2.9 = "ipProto" +.1.3.6.1.4.1.22420.2.2.2.1.2.10 = "ipHL" +.1.3.6.1.4.1.22420.2.2.2.1.2.11 = "ipDscp" +.1.3.6.1.4.1.22420.2.2.2.1.2.12 = "ipECN" +.1.3.6.1.4.1.22420.2.2.2.1.2.13 = "udpSrcPort" +.1.3.6.1.4.1.22420.2.2.2.1.2.14 = "udpDstPort" +.1.3.6.1.4.1.22420.2.2.2.1.2.15 = "icmpType" +.1.3.6.1.4.1.22420.2.2.2.1.2.16 = "icmpCode" +.1.3.6.1.4.1.22420.2.2.2.1.3.6 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.3.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.3.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.4.6 = 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.2.1.4.7 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.8 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.9 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.10 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.11 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.12 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.13 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.14 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.15 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.4.16 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.5.6 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.7 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.8 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.9 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.10 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.11 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.12 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.13 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.14 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.15 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.5.16 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.6.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.7 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.6.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.6.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.7.6 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.7 = 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.2.1.7.8 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.9 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.10 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.11 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.12 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.13 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.14 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.15 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.7.16 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.2.1.8.6 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.7 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.8 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.9 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.10 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.11 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.12 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.13 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.14 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.15 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.8.16 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.2.1.9.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.9 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.9.13 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.14 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.15 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.9.16 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.10.7 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.8 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.9 = 89 +.1.3.6.1.4.1.22420.2.2.2.1.10.10 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.11 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.12 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.13 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.14 = 17 +.1.3.6.1.4.1.22420.2.2.2.1.10.15 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.10.16 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.11.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.8 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.11.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.11.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.8 = 255 +.1.3.6.1.4.1.22420.2.2.2.1.12.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.11 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.12 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.13 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.14 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.15 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.12.16 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.13.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.10 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.13.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.13.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.14.6 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.7 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.8 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.9 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.10 = 6 +.1.3.6.1.4.1.22420.2.2.2.1.14.11 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.12 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.13 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.14 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.15 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.14.16 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.15.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.11 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.15.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.15.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.16.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.8 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.11 = 32 +.1.3.6.1.4.1.22420.2.2.2.1.16.12 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.13 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.14 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.15 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.16.16 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.17.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.12 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.17.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.17.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.8 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.11 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.18.13 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.14 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.15 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.18.16 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.19.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.13 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.19.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.19.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.20.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.8 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.11 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.12 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.13 = 69 +.1.3.6.1.4.1.22420.2.2.2.1.20.14 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.15 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.20.16 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.21.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.14 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.21.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.21.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.8 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.11 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.12 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.13 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.14 = 68 +.1.3.6.1.4.1.22420.2.2.2.1.22.15 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.22.16 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.23.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.23.15 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.23.16 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.24.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.8 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.11 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.12 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.13 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.14 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.24.15 = 5 +.1.3.6.1.4.1.22420.2.2.2.1.24.16 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.25.6 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.7 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.8 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.9 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.10 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.11 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.12 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.13 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.14 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.15 = 2 +.1.3.6.1.4.1.22420.2.2.2.1.25.16 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.26.6 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.7 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.8 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.9 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.10 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.11 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.12 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.13 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.14 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.15 = 0 +.1.3.6.1.4.1.22420.2.2.2.1.26.16 = 3 +.1.3.6.1.4.1.22420.2.2.2.1.27.6 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.7 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.8 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.9 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.10 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.11 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.12 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.13 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.14 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.15 = 1 +.1.3.6.1.4.1.22420.2.2.2.1.27.16 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.2.1 = "*default" +.1.3.6.1.4.1.22420.2.2.3.1.2.2 = "PAA-Discovery" +.1.3.6.1.4.1.22420.2.2.3.1.2.3 = "MTSOMAC_SRC" +.1.3.6.1.4.1.22420.2.2.3.1.2.4 = "MTSOMAC_DST" +.1.3.6.1.4.1.22420.2.2.3.1.2.5 = "SVLAN_2216" +.1.3.6.1.4.1.22420.2.2.3.1.2.6 = "catchAll" +.1.3.6.1.4.1.22420.2.2.3.1.2.7 = "ieeeBPDU" +.1.3.6.1.4.1.22420.2.2.3.1.2.8 = "ciscoBPDU" +.1.3.6.1.4.1.22420.2.2.3.1.2.9 = "macDst" +.1.3.6.1.4.1.22420.2.2.3.1.2.10 = "macSrc" +.1.3.6.1.4.1.22420.2.2.3.1.2.11 = "frameType" +.1.3.6.1.4.1.22420.2.2.3.1.2.12 = "firstVlanId" +.1.3.6.1.4.1.22420.2.2.3.1.2.13 = "firstVlanPrior" +.1.3.6.1.4.1.22420.2.2.3.1.2.14 = "firstVlanCfi" +.1.3.6.1.4.1.22420.2.2.3.1.2.15 = "secondVlanId" +.1.3.6.1.4.1.22420.2.2.3.1.2.16 = "secondVlanPrior" +.1.3.6.1.4.1.22420.2.2.3.1.2.17 = "secondVlanCfi" +.1.3.6.1.4.1.22420.2.2.3.1.2.18 = "SVLAN_2217" +.1.3.6.1.4.1.22420.2.2.3.1.2.19 = "VLAN_2573" +.1.3.6.1.4.1.22420.2.2.3.1.2.20 = "VLAN_3573" +.1.3.6.1.4.1.22420.2.2.3.1.2.21 = "rvResortMAC_DST" +.1.3.6.1.4.1.22420.2.2.3.1.2.22 = "rvResortMAC_SRC" +.1.3.6.1.4.1.22420.2.2.3.1.2.23 = "SVLAN_2218" +.1.3.6.1.4.1.22420.2.2.3.1.2.24 = "SVLAN_2219" +.1.3.6.1.4.1.22420.2.2.3.1.2.25 = "SVLAN_2220" +.1.3.6.1.4.1.22420.2.2.3.1.2.26 = "SVLAN_2221" +.1.3.6.1.4.1.22420.2.2.3.1.2.27 = "CVLAN_3999" +.1.3.6.1.4.1.22420.2.2.3.1.3.1 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.2 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.3 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.4 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.5 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.6 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.7 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.8 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.9 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.10 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.11 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.12 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.13 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.14 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.15 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.16 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.17 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.18 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.19 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.20 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.21 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.22 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.23 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.24 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.25 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.26 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.3.27 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.4.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.13 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.4.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.4.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.5.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.13 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.5.14 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.5.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.5.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.6.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.7.1 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.2 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.3 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.4 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.5 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.6 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.7 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.8 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.9 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.10 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.11 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.12 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.13 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.14 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.15 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.16 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.17 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.18 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.19 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.20 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.21 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.22 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.23 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.24 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.25 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.26 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.7.27 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.8.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.5 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.12 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.18 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.19 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.20 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.8.23 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.24 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.25 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.26 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.8.27 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.9.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.5 = 2216 +.1.3.6.1.4.1.22420.2.2.3.1.9.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.12 = 100 +.1.3.6.1.4.1.22420.2.2.3.1.9.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.16 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.9.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.18 = 2217 +.1.3.6.1.4.1.22420.2.2.3.1.9.19 = 2573 +.1.3.6.1.4.1.22420.2.2.3.1.9.20 = 3573 +.1.3.6.1.4.1.22420.2.2.3.1.9.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.9.23 = 2218 +.1.3.6.1.4.1.22420.2.2.3.1.9.24 = 2219 +.1.3.6.1.4.1.22420.2.2.3.1.9.25 = 2220 +.1.3.6.1.4.1.22420.2.2.3.1.9.26 = 2221 +.1.3.6.1.4.1.22420.2.2.3.1.9.27 = 3999 +.1.3.6.1.4.1.22420.2.2.3.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.10.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.11.1 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.2 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.3 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.4 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.5 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.6 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.7 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.8 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.9 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.10 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.11 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.12 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.13 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.14 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.15 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.16 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.17 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.18 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.19 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.20 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.21 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.22 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.23 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.24 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.25 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.26 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.11.27 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.12.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.14 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.12.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.12.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.13.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.14 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.13.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.13.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.14.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.5 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.18 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.19 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.20 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.14.23 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.24 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.25 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.26 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.14.27 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.15.1 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.2 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.3 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.4 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.6 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.7 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.8 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.9 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.10 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.11 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.12 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.13 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.14 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.15 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.16 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.17 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.19 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.15.20 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.15.21 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.22 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.15.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.15.27 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.16.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.16 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.16.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.16.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.17.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.16 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.17.17 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.17.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.17.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.18.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.19.1 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.2 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.3 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.4 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.5 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.6 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.7 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.8 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.9 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.10 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.11 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.12 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.13 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.14 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.15 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.16 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.17 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.18 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.19 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.20 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.21 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.22 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.23 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.24 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.25 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.26 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.19.27 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.20.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.15 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.20.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.20.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.21.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.5 = 2573 +.1.3.6.1.4.1.22420.2.2.3.1.21.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.15 = 200 +.1.3.6.1.4.1.22420.2.2.3.1.21.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.18 = 3573 +.1.3.6.1.4.1.22420.2.2.3.1.21.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.21.23 = 2166 +.1.3.6.1.4.1.22420.2.2.3.1.21.24 = 3166 +.1.3.6.1.4.1.22420.2.2.3.1.21.25 = 2347 +.1.3.6.1.4.1.22420.2.2.3.1.21.26 = 3347 +.1.3.6.1.4.1.22420.2.2.3.1.21.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.22.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.23.1 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.2 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.3 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.4 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.5 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.6 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.7 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.8 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.9 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.10 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.11 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.12 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.13 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.14 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.15 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.16 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.17 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.18 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.19 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.20 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.21 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.22 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.23 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.24 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.25 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.26 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.23.27 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.24.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.17 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.24.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.24.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.25.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.17 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.25.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.25.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.26.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.26.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.27.1 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.2 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.3 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.4 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.5 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.6 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.7 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.8 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.9 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.10 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.11 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.12 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.13 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.14 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.15 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.16 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.17 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.18 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.19 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.20 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.21 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.22 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.27.23 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.24 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.25 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.26 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.27.27 = 5 +.1.3.6.1.4.1.22420.2.2.3.1.28.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.2 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.4 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.7 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.8 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.9 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.21 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.28.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.28.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.29.1 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.2 = "FF FF FF FF FF FF " +.1.3.6.1.4.1.22420.2.2.3.1.29.3 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.4 = "00 23 3E 82 15 73 " +.1.3.6.1.4.1.22420.2.2.3.1.29.5 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.6 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.7 = "01 80 C2 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.8 = "01 00 0C CC CC CD " +.1.3.6.1.4.1.22420.2.2.3.1.29.9 = "00 15 AD 01 01 01 " +.1.3.6.1.4.1.22420.2.2.3.1.29.10 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.11 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.12 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.13 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.14 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.15 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.16 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.17 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.18 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.19 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.20 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.21 = "50 40 61 85 DE 68 " +.1.3.6.1.4.1.22420.2.2.3.1.29.22 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.23 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.24 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.25 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.26 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.29.27 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.30.1 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.2 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.3 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.4 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.5 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.6 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.7 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.8 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.9 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.10 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.11 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.12 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.13 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.14 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.15 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.16 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.17 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.18 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.19 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.20 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.21 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.22 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.23 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.24 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.25 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.26 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.30.27 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.31.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.3 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.31.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.10 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.31.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.22 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.31.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.31.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.32.1 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.2 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.3 = "00 23 3E 82 15 73 " +.1.3.6.1.4.1.22420.2.2.3.1.32.4 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.5 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.6 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.7 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.8 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.9 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.10 = "00 15 AD 01 01 01 " +.1.3.6.1.4.1.22420.2.2.3.1.32.11 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.12 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.13 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.14 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.15 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.16 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.17 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.18 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.19 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.20 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.21 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.22 = "50 40 61 85 DE 68 " +.1.3.6.1.4.1.22420.2.2.3.1.32.23 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.24 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.25 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.26 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.32.27 = "00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.2.3.1.33.1 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.2 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.3 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.4 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.5 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.6 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.7 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.8 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.9 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.10 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.11 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.12 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.13 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.14 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.15 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.16 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.17 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.18 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.19 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.20 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.21 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.22 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.23 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.24 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.25 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.26 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.33.27 = 48 +.1.3.6.1.4.1.22420.2.2.3.1.34.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.2 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.34.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.11 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.34.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.34.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.35.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.2 = 35068 +.1.3.6.1.4.1.22420.2.2.3.1.35.3 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.4 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.5 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.11 = 36864 +.1.3.6.1.4.1.22420.2.2.3.1.35.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.35.18 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.19 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.20 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.21 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.22 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.23 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.24 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.25 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.26 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.35.27 = 2048 +.1.3.6.1.4.1.22420.2.2.3.1.36.1 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.2 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.3 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.4 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.5 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.6 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.7 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.8 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.9 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.10 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.11 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.12 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.13 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.14 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.15 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.16 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.17 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.18 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.19 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.20 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.21 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.22 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.23 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.24 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.25 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.26 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.36.27 = 2 +.1.3.6.1.4.1.22420.2.2.3.1.37.1 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.2 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.3 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.4 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.5 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.6 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.7 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.8 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.9 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.10 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.11 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.12 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.13 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.14 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.15 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.16 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.17 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.18 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.19 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.20 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.21 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.22 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.23 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.24 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.25 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.26 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.37.27 = 1 +.1.3.6.1.4.1.22420.2.2.3.1.38.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.38.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.39.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.40.1 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.2 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.3 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.4 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.5 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.6 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.7 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.8 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.9 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.10 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.11 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.12 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.13 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.14 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.15 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.16 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.17 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.18 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.19 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.20 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.21 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.22 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.23 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.24 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.25 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.26 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.40.27 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.41.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.41.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.1 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.2 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.3 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.4 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.5 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.6 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.7 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.8 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.9 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.10 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.11 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.12 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.13 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.14 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.15 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.16 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.17 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.18 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.19 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.20 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.21 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.22 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.23 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.24 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.25 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.26 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.42.27 = 0 +.1.3.6.1.4.1.22420.2.2.3.1.43.1 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.2 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.3 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.4 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.5 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.6 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.7 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.8 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.9 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.10 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.11 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.12 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.13 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.14 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.15 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.16 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.17 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.18 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.19 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.20 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.21 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.22 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.23 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.24 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.25 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.26 = 3 +.1.3.6.1.4.1.22420.2.2.3.1.43.27 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.2.6 = "ipSrc" +.1.3.6.1.4.1.22420.2.2.4.1.2.7 = "ipDst" +.1.3.6.1.4.1.22420.2.2.4.1.2.8 = "ipTTL" +.1.3.6.1.4.1.22420.2.2.4.1.2.9 = "ipProto" +.1.3.6.1.4.1.22420.2.2.4.1.2.10 = "ipHL" +.1.3.6.1.4.1.22420.2.2.4.1.2.11 = "ipDscp" +.1.3.6.1.4.1.22420.2.2.4.1.2.12 = "ipECN" +.1.3.6.1.4.1.22420.2.2.4.1.2.13 = "udpSrcPort" +.1.3.6.1.4.1.22420.2.2.4.1.2.14 = "udpDstPort" +.1.3.6.1.4.1.22420.2.2.4.1.2.15 = "icmpType" +.1.3.6.1.4.1.22420.2.2.4.1.2.16 = "icmpCode" +.1.3.6.1.4.1.22420.2.2.4.1.3.6 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.7 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.8 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.9 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.10 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.11 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.12 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.13 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.14 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.15 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.3.16 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.4.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.4.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.5.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.6.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.7.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.7.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.8.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.8.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.9.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.9.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.10.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.11.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.11.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.12.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.12.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.13.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.13.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.14.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.14.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.15.6 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.7 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.8 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.9 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.10 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.11 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.12 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.13 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.14 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.15 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.15.16 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.16.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.16.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.17.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.17.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.18.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.19.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.19.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.20.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.20.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.21.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.21.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.22.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.23.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.23.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.24.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.24.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.25.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.25.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.26.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.26.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.27.6 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.7 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.8 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.9 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.10 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.11 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.12 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.13 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.14 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.15 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.27.16 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.28.6 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.28.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.28.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.29.6 = 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.4.1.29.7 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.8 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.9 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.10 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.11 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.12 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.13 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.14 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.15 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.29.16 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.30.6 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.7 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.8 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.9 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.10 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.11 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.12 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.13 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.14 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.15 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.30.16 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.31.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.7 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.31.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.31.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.32.6 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.7 = 192.168.1.1 +.1.3.6.1.4.1.22420.2.2.4.1.32.8 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.9 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.10 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.11 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.12 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.13 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.14 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.15 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.32.16 = 0.0.0.0 +.1.3.6.1.4.1.22420.2.2.4.1.33.6 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.7 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.8 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.9 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.10 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.11 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.12 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.13 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.14 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.15 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.33.16 = 255.255.255.255 +.1.3.6.1.4.1.22420.2.2.4.1.34.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.9 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.34.13 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.14 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.15 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.34.16 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.35.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.35.7 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.8 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.9 = 89 +.1.3.6.1.4.1.22420.2.2.4.1.35.10 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.11 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.12 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.13 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.14 = 17 +.1.3.6.1.4.1.22420.2.2.4.1.35.15 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.35.16 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.36.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.8 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.36.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.36.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.37.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.8 = 255 +.1.3.6.1.4.1.22420.2.2.4.1.37.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.37.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.38.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.10 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.38.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.38.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.39.6 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.7 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.8 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.9 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.10 = 6 +.1.3.6.1.4.1.22420.2.2.4.1.39.11 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.12 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.13 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.14 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.15 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.39.16 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.40.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.11 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.40.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.40.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.41.6 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.7 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.8 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.9 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.10 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.11 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.12 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.13 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.14 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.15 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.41.16 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.42.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.11 = 32 +.1.3.6.1.4.1.22420.2.2.4.1.42.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.42.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.43.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.44.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.44.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.45.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.45.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.46.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.47.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.47.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.48.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.12 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.48.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.48.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.49.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.49.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.49.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.50.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.13 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.50.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.50.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.51.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.13 = 69 +.1.3.6.1.4.1.22420.2.2.4.1.51.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.51.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.52.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.14 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.52.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.52.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.53.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.14 = 68 +.1.3.6.1.4.1.22420.2.2.4.1.53.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.53.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.54.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.54.15 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.54.16 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.55.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.55.15 = 5 +.1.3.6.1.4.1.22420.2.2.4.1.55.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.56.6 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.7 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.8 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.9 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.10 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.11 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.12 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.13 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.14 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.15 = 2 +.1.3.6.1.4.1.22420.2.2.4.1.56.16 = 1 +.1.3.6.1.4.1.22420.2.2.4.1.57.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.57.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.58.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.13 = 69 +.1.3.6.1.4.1.22420.2.2.4.1.58.14 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.58.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.59.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.59.16 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.60.6 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.7 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.8 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.9 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.10 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.11 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.12 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.13 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.14 = 68 +.1.3.6.1.4.1.22420.2.2.4.1.60.15 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.60.16 = 0 +.1.3.6.1.4.1.22420.2.2.4.1.61.6 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.7 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.8 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.9 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.10 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.11 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.12 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.13 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.14 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.15 = 3 +.1.3.6.1.4.1.22420.2.2.4.1.61.16 = 3 +.1.3.6.1.4.1.22420.2.2.6.1.1.0 = 2 +.1.3.6.1.4.1.22420.2.2.6.1.2.0 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.2.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.2.201 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.202 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.203 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.204 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.205 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.206 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.207 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.208 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.209 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.210 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.211 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.212 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.213 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.214 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.215 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.216 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.217 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.218 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.219 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.220 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.221 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.222 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.223 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.224 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.225 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.226 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.227 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.228 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.229 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.230 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.231 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.232 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.233 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.234 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.235 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.236 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.237 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.238 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.239 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.240 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.241 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.242 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.243 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.244 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.245 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.246 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.247 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.248 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.249 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.250 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.251 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.252 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.253 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.254 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.255 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.256 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.257 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.258 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.259 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.260 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.261 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.262 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.263 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.264 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.265 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.266 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.267 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.268 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.269 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.270 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.271 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.272 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.273 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.274 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.275 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.276 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.277 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.278 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.279 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.280 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.281 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.282 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.283 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.284 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.285 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.286 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.287 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.288 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.289 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.290 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.291 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.292 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.293 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.294 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.295 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.296 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.297 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.298 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.299 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.300 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.2.301 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.302 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.303 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.304 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.305 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.306 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.307 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.308 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.309 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.310 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.311 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.312 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.313 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.314 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.315 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.316 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.317 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.318 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.319 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.320 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.321 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.322 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.323 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.324 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.325 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.326 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.327 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.328 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.329 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.330 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.331 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.332 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.333 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.334 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.335 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.336 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.337 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.338 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.339 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.340 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.341 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.342 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.343 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.344 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.345 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.346 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.347 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.348 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.349 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.350 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.351 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.352 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.353 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.354 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.355 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.356 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.357 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.358 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.359 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.360 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.361 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.362 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.363 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.364 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.365 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.366 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.367 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.368 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.369 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.370 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.371 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.372 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.373 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.374 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.375 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.376 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.377 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.378 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.379 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.380 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.381 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.382 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.383 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.384 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.385 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.386 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.387 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.388 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.389 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.390 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.391 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.392 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.393 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.394 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.395 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.396 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.397 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.398 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.399 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.2.400 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.3 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.4 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.5 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.6 = 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.7 = 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.8 = 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.9 = 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.10 = 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.11 = 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.12 = 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.13 = 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.14 = 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.15 = 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.16 = 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.17 = 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.18 = 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.19 = 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.20 = 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.21 = 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.22 = 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.23 = 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.24 = 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.25 = 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.26 = 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.27 = 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.28 = 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.29 = 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.30 = 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.31 = 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.32 = 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.33 = 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.34 = 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.35 = 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.36 = 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.37 = 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.38 = 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.39 = 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.40 = 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.41 = 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.42 = 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.43 = 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.44 = 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.45 = 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.46 = 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.47 = 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.48 = 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.49 = 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.50 = 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.51 = 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.52 = 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.53 = 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.54 = 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.55 = 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.56 = 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.57 = 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.58 = 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.59 = 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.60 = 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.61 = 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.62 = 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.63 = 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.64 = 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.65 = 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.66 = 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.67 = 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.68 = 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.69 = 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.70 = 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.71 = 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.72 = 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.73 = 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.74 = 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.75 = 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.76 = 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.77 = 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.78 = 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.79 = 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.80 = 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.81 = 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.82 = 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.83 = 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.84 = 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.85 = 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.86 = 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.87 = 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.88 = 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.89 = 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.90 = 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.91 = 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.92 = 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.93 = 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.94 = 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.95 = 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.96 = 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.97 = 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.98 = 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.99 = 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.100 = 100 +.1.3.6.1.4.1.22420.2.3.1.1.3.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.103 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.104 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.105 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.106 = 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.107 = 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.108 = 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.109 = 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.110 = 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.111 = 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.112 = 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.113 = 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.114 = 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.115 = 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.116 = 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.117 = 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.118 = 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.119 = 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.120 = 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.121 = 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.122 = 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.123 = 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.124 = 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.125 = 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.126 = 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.127 = 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.128 = 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.129 = 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.130 = 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.131 = 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.132 = 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.133 = 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.134 = 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.135 = 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.136 = 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.137 = 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.138 = 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.139 = 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.140 = 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.141 = 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.142 = 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.143 = 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.144 = 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.145 = 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.146 = 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.147 = 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.148 = 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.149 = 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.150 = 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.151 = 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.152 = 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.153 = 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.154 = 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.155 = 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.156 = 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.157 = 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.158 = 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.159 = 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.160 = 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.161 = 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.162 = 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.163 = 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.164 = 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.165 = 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.166 = 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.167 = 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.168 = 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.169 = 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.170 = 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.171 = 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.172 = 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.173 = 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.174 = 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.175 = 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.176 = 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.177 = 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.178 = 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.179 = 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.180 = 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.181 = 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.182 = 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.183 = 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.184 = 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.185 = 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.186 = 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.187 = 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.188 = 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.189 = 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.190 = 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.191 = 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.192 = 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.193 = 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.194 = 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.195 = 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.196 = 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.197 = 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.198 = 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.199 = 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.200 = 100 +.1.3.6.1.4.1.22420.2.3.1.1.3.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.203 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.204 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.205 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.206 = 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.207 = 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.208 = 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.209 = 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.210 = 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.211 = 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.212 = 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.213 = 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.214 = 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.215 = 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.216 = 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.217 = 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.218 = 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.219 = 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.220 = 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.221 = 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.222 = 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.223 = 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.224 = 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.225 = 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.226 = 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.227 = 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.228 = 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.229 = 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.230 = 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.231 = 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.232 = 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.233 = 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.234 = 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.235 = 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.236 = 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.237 = 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.238 = 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.239 = 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.240 = 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.241 = 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.242 = 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.243 = 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.244 = 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.245 = 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.246 = 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.247 = 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.248 = 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.249 = 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.250 = 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.251 = 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.252 = 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.253 = 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.254 = 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.255 = 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.256 = 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.257 = 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.258 = 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.259 = 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.260 = 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.261 = 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.262 = 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.263 = 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.264 = 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.265 = 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.266 = 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.267 = 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.268 = 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.269 = 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.270 = 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.271 = 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.272 = 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.273 = 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.274 = 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.275 = 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.276 = 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.277 = 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.278 = 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.279 = 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.280 = 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.281 = 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.282 = 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.283 = 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.284 = 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.285 = 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.286 = 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.287 = 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.288 = 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.289 = 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.290 = 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.291 = 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.292 = 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.293 = 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.294 = 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.295 = 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.296 = 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.297 = 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.298 = 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.299 = 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.300 = 100 +.1.3.6.1.4.1.22420.2.3.1.1.3.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.3.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.3.303 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.3.304 = 4 +.1.3.6.1.4.1.22420.2.3.1.1.3.305 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.3.306 = 6 +.1.3.6.1.4.1.22420.2.3.1.1.3.307 = 7 +.1.3.6.1.4.1.22420.2.3.1.1.3.308 = 8 +.1.3.6.1.4.1.22420.2.3.1.1.3.309 = 9 +.1.3.6.1.4.1.22420.2.3.1.1.3.310 = 10 +.1.3.6.1.4.1.22420.2.3.1.1.3.311 = 11 +.1.3.6.1.4.1.22420.2.3.1.1.3.312 = 12 +.1.3.6.1.4.1.22420.2.3.1.1.3.313 = 13 +.1.3.6.1.4.1.22420.2.3.1.1.3.314 = 14 +.1.3.6.1.4.1.22420.2.3.1.1.3.315 = 15 +.1.3.6.1.4.1.22420.2.3.1.1.3.316 = 16 +.1.3.6.1.4.1.22420.2.3.1.1.3.317 = 17 +.1.3.6.1.4.1.22420.2.3.1.1.3.318 = 18 +.1.3.6.1.4.1.22420.2.3.1.1.3.319 = 19 +.1.3.6.1.4.1.22420.2.3.1.1.3.320 = 20 +.1.3.6.1.4.1.22420.2.3.1.1.3.321 = 21 +.1.3.6.1.4.1.22420.2.3.1.1.3.322 = 22 +.1.3.6.1.4.1.22420.2.3.1.1.3.323 = 23 +.1.3.6.1.4.1.22420.2.3.1.1.3.324 = 24 +.1.3.6.1.4.1.22420.2.3.1.1.3.325 = 25 +.1.3.6.1.4.1.22420.2.3.1.1.3.326 = 26 +.1.3.6.1.4.1.22420.2.3.1.1.3.327 = 27 +.1.3.6.1.4.1.22420.2.3.1.1.3.328 = 28 +.1.3.6.1.4.1.22420.2.3.1.1.3.329 = 29 +.1.3.6.1.4.1.22420.2.3.1.1.3.330 = 30 +.1.3.6.1.4.1.22420.2.3.1.1.3.331 = 31 +.1.3.6.1.4.1.22420.2.3.1.1.3.332 = 32 +.1.3.6.1.4.1.22420.2.3.1.1.3.333 = 33 +.1.3.6.1.4.1.22420.2.3.1.1.3.334 = 34 +.1.3.6.1.4.1.22420.2.3.1.1.3.335 = 35 +.1.3.6.1.4.1.22420.2.3.1.1.3.336 = 36 +.1.3.6.1.4.1.22420.2.3.1.1.3.337 = 37 +.1.3.6.1.4.1.22420.2.3.1.1.3.338 = 38 +.1.3.6.1.4.1.22420.2.3.1.1.3.339 = 39 +.1.3.6.1.4.1.22420.2.3.1.1.3.340 = 40 +.1.3.6.1.4.1.22420.2.3.1.1.3.341 = 41 +.1.3.6.1.4.1.22420.2.3.1.1.3.342 = 42 +.1.3.6.1.4.1.22420.2.3.1.1.3.343 = 43 +.1.3.6.1.4.1.22420.2.3.1.1.3.344 = 44 +.1.3.6.1.4.1.22420.2.3.1.1.3.345 = 45 +.1.3.6.1.4.1.22420.2.3.1.1.3.346 = 46 +.1.3.6.1.4.1.22420.2.3.1.1.3.347 = 47 +.1.3.6.1.4.1.22420.2.3.1.1.3.348 = 48 +.1.3.6.1.4.1.22420.2.3.1.1.3.349 = 49 +.1.3.6.1.4.1.22420.2.3.1.1.3.350 = 50 +.1.3.6.1.4.1.22420.2.3.1.1.3.351 = 51 +.1.3.6.1.4.1.22420.2.3.1.1.3.352 = 52 +.1.3.6.1.4.1.22420.2.3.1.1.3.353 = 53 +.1.3.6.1.4.1.22420.2.3.1.1.3.354 = 54 +.1.3.6.1.4.1.22420.2.3.1.1.3.355 = 55 +.1.3.6.1.4.1.22420.2.3.1.1.3.356 = 56 +.1.3.6.1.4.1.22420.2.3.1.1.3.357 = 57 +.1.3.6.1.4.1.22420.2.3.1.1.3.358 = 58 +.1.3.6.1.4.1.22420.2.3.1.1.3.359 = 59 +.1.3.6.1.4.1.22420.2.3.1.1.3.360 = 60 +.1.3.6.1.4.1.22420.2.3.1.1.3.361 = 61 +.1.3.6.1.4.1.22420.2.3.1.1.3.362 = 62 +.1.3.6.1.4.1.22420.2.3.1.1.3.363 = 63 +.1.3.6.1.4.1.22420.2.3.1.1.3.364 = 64 +.1.3.6.1.4.1.22420.2.3.1.1.3.365 = 65 +.1.3.6.1.4.1.22420.2.3.1.1.3.366 = 66 +.1.3.6.1.4.1.22420.2.3.1.1.3.367 = 67 +.1.3.6.1.4.1.22420.2.3.1.1.3.368 = 68 +.1.3.6.1.4.1.22420.2.3.1.1.3.369 = 69 +.1.3.6.1.4.1.22420.2.3.1.1.3.370 = 70 +.1.3.6.1.4.1.22420.2.3.1.1.3.371 = 71 +.1.3.6.1.4.1.22420.2.3.1.1.3.372 = 72 +.1.3.6.1.4.1.22420.2.3.1.1.3.373 = 73 +.1.3.6.1.4.1.22420.2.3.1.1.3.374 = 74 +.1.3.6.1.4.1.22420.2.3.1.1.3.375 = 75 +.1.3.6.1.4.1.22420.2.3.1.1.3.376 = 76 +.1.3.6.1.4.1.22420.2.3.1.1.3.377 = 77 +.1.3.6.1.4.1.22420.2.3.1.1.3.378 = 78 +.1.3.6.1.4.1.22420.2.3.1.1.3.379 = 79 +.1.3.6.1.4.1.22420.2.3.1.1.3.380 = 80 +.1.3.6.1.4.1.22420.2.3.1.1.3.381 = 81 +.1.3.6.1.4.1.22420.2.3.1.1.3.382 = 82 +.1.3.6.1.4.1.22420.2.3.1.1.3.383 = 83 +.1.3.6.1.4.1.22420.2.3.1.1.3.384 = 84 +.1.3.6.1.4.1.22420.2.3.1.1.3.385 = 85 +.1.3.6.1.4.1.22420.2.3.1.1.3.386 = 86 +.1.3.6.1.4.1.22420.2.3.1.1.3.387 = 87 +.1.3.6.1.4.1.22420.2.3.1.1.3.388 = 88 +.1.3.6.1.4.1.22420.2.3.1.1.3.389 = 89 +.1.3.6.1.4.1.22420.2.3.1.1.3.390 = 90 +.1.3.6.1.4.1.22420.2.3.1.1.3.391 = 91 +.1.3.6.1.4.1.22420.2.3.1.1.3.392 = 92 +.1.3.6.1.4.1.22420.2.3.1.1.3.393 = 93 +.1.3.6.1.4.1.22420.2.3.1.1.3.394 = 94 +.1.3.6.1.4.1.22420.2.3.1.1.3.395 = 95 +.1.3.6.1.4.1.22420.2.3.1.1.3.396 = 96 +.1.3.6.1.4.1.22420.2.3.1.1.3.397 = 97 +.1.3.6.1.4.1.22420.2.3.1.1.3.398 = 98 +.1.3.6.1.4.1.22420.2.3.1.1.3.399 = 99 +.1.3.6.1.4.1.22420.2.3.1.1.3.400 = 100 +.1.3.6.1.4.1.22420.2.3.1.1.4.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.4.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.4.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.5.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.5.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.6 = 27 +.1.3.6.1.4.1.22420.2.3.1.1.6.7 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.6.8 = 23 +.1.3.6.1.4.1.22420.2.3.1.1.6.9 = 25 +.1.3.6.1.4.1.22420.2.3.1.1.6.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.107 = 18 +.1.3.6.1.4.1.22420.2.3.1.1.6.108 = 24 +.1.3.6.1.4.1.22420.2.3.1.1.6.109 = 26 +.1.3.6.1.4.1.22420.2.3.1.1.6.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.6.207 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.6.208 = 23 +.1.3.6.1.4.1.22420.2.3.1.1.6.209 = 25 +.1.3.6.1.4.1.22420.2.3.1.1.6.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.307 = 18 +.1.3.6.1.4.1.22420.2.3.1.1.6.308 = 24 +.1.3.6.1.4.1.22420.2.3.1.1.6.309 = 26 +.1.3.6.1.4.1.22420.2.3.1.1.6.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.6.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.7.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.8.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.6 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.7 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.8 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.9 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.206 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.207 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.208 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.209 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.309 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.8.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.6 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.7 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.8 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.9 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.206 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.207 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.208 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.209 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.309 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.9.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.10.7 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.8 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.9 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.10.207 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.208 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.209 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.309 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.10.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.11.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.11.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.11.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.11.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.12.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.12.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.13.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.6 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.7 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.8 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.9 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.206 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.207 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.208 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.209 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.309 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.13.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.14.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.6 = 3 +.1.3.6.1.4.1.22420.2.3.1.1.14.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.206 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.14.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.14.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.15.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.15.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.15.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.206 = 3999 +.1.3.6.1.4.1.22420.2.3.1.1.16.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.307 = 2216 +.1.3.6.1.4.1.22420.2.3.1.1.16.308 = 2217 +.1.3.6.1.4.1.22420.2.3.1.1.16.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.16.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.17.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.17.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.18.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.6 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.7 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.8 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.9 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.206 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.207 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.208 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.209 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.309 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.18.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.19.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.19.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.20.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.20.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.21.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.22.1 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.2 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.3 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.4 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.5 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.6 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.7 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.8 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.9 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.10 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.11 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.12 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.13 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.14 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.15 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.16 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.17 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.18 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.19 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.20 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.21 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.22 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.23 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.24 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.25 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.26 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.27 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.28 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.29 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.30 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.31 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.32 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.33 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.34 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.35 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.36 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.37 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.38 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.39 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.40 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.41 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.42 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.43 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.44 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.45 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.46 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.47 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.48 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.49 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.50 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.51 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.52 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.53 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.54 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.55 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.56 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.57 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.58 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.59 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.60 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.61 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.62 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.63 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.64 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.65 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.66 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.67 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.68 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.69 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.70 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.71 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.72 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.73 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.74 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.75 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.76 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.77 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.78 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.79 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.80 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.81 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.82 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.83 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.84 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.85 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.86 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.87 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.88 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.89 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.90 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.91 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.92 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.93 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.94 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.95 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.96 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.97 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.98 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.99 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.100 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.101 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.102 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.103 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.104 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.105 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.106 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.107 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.108 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.109 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.110 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.111 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.112 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.113 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.114 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.115 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.116 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.117 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.118 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.119 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.120 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.121 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.122 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.123 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.124 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.125 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.126 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.127 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.128 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.129 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.130 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.131 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.132 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.133 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.134 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.135 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.136 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.137 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.138 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.139 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.140 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.141 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.142 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.143 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.144 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.145 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.146 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.147 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.148 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.149 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.150 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.151 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.152 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.153 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.154 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.155 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.156 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.157 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.158 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.159 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.160 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.161 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.162 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.163 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.164 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.165 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.166 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.167 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.168 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.169 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.170 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.171 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.172 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.173 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.174 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.175 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.176 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.177 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.178 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.179 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.180 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.181 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.182 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.183 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.184 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.185 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.186 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.187 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.188 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.189 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.190 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.191 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.192 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.193 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.194 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.195 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.196 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.197 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.198 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.199 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.200 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.201 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.202 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.203 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.204 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.205 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.206 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.207 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.208 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.209 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.210 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.211 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.212 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.213 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.214 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.215 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.216 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.217 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.218 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.219 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.220 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.221 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.222 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.223 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.224 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.225 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.226 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.227 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.228 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.229 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.230 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.231 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.232 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.233 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.234 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.235 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.236 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.237 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.238 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.239 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.240 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.241 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.242 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.243 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.244 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.245 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.246 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.247 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.248 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.249 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.250 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.251 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.252 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.253 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.254 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.255 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.256 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.257 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.258 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.259 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.260 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.261 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.262 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.263 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.264 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.265 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.266 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.267 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.268 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.269 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.270 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.271 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.272 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.273 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.274 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.275 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.276 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.277 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.278 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.279 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.280 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.281 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.282 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.283 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.284 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.285 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.286 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.287 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.288 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.289 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.290 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.291 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.292 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.293 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.294 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.295 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.296 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.297 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.298 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.299 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.300 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.301 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.302 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.303 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.304 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.305 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.306 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.307 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.308 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.309 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.310 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.311 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.312 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.313 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.314 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.315 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.316 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.317 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.318 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.319 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.320 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.321 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.322 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.323 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.324 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.325 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.326 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.327 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.328 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.329 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.330 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.331 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.332 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.333 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.334 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.335 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.336 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.337 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.338 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.339 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.340 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.341 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.342 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.343 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.344 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.345 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.346 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.347 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.348 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.349 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.350 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.351 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.352 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.353 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.354 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.355 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.356 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.357 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.358 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.359 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.360 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.361 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.362 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.363 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.364 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.365 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.366 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.367 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.368 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.369 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.370 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.371 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.372 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.373 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.374 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.375 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.376 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.377 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.378 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.379 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.380 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.381 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.382 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.383 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.384 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.385 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.386 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.387 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.388 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.389 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.390 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.391 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.392 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.393 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.394 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.395 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.396 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.397 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.398 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.399 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.22.400 = 2 +.1.3.6.1.4.1.22420.2.3.1.1.23.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.23.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.24.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.24.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.25.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.26.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.7 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.8 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.9 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.107 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.108 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.109 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.207 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.208 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.209 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.307 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.308 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.309 = 5 +.1.3.6.1.4.1.22420.2.3.1.1.27.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.27.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.28.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.29.400 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.30.1 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.2 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.3 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.4 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.5 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.6 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.7 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.8 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.9 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.10 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.11 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.12 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.13 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.14 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.15 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.16 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.17 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.18 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.19 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.20 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.21 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.22 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.23 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.24 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.25 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.26 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.27 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.28 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.29 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.30 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.31 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.32 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.33 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.34 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.35 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.36 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.37 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.38 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.39 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.40 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.41 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.42 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.43 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.44 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.45 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.46 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.47 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.48 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.49 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.50 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.51 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.52 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.53 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.54 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.55 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.56 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.57 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.58 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.59 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.60 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.61 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.62 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.63 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.64 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.65 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.66 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.67 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.68 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.69 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.70 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.71 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.72 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.73 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.74 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.75 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.76 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.77 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.78 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.79 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.80 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.81 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.82 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.83 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.84 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.85 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.86 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.87 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.88 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.89 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.90 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.91 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.92 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.93 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.94 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.95 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.96 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.97 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.98 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.99 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.100 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.101 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.102 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.103 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.104 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.105 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.106 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.107 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4 +.1.3.6.1.4.1.22420.2.3.1.1.30.108 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4 +.1.3.6.1.4.1.22420.2.3.1.1.30.109 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4 +.1.3.6.1.4.1.22420.2.3.1.1.30.110 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.111 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.112 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.113 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.114 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.115 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.116 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.117 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.118 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.119 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.120 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.121 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.122 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.123 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.124 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.125 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.126 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.127 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.128 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.129 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.130 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.131 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.132 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.133 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.134 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.135 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.136 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.137 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.138 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.139 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.140 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.141 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.142 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.143 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.144 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.145 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.146 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.147 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.148 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.149 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.150 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.151 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.152 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.153 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.154 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.155 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.156 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.157 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.158 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.159 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.160 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.161 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.162 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.163 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.164 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.165 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.166 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.167 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.168 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.169 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.170 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.171 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.172 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.173 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.174 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.175 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.176 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.177 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.178 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.179 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.180 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.181 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.182 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.183 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.184 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.185 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.186 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.187 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.188 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.189 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.190 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.191 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.192 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.193 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.194 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.195 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.196 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.197 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.198 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.199 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.200 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3 +.1.3.6.1.4.1.22420.2.3.1.1.30.201 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.202 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.203 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.204 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.205 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.206 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.207 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.208 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.209 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.210 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.211 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.212 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.213 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.214 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.215 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.216 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.217 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.218 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.219 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.220 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.221 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.222 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.223 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.224 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.225 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.226 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.227 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.228 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.229 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.230 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.231 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.232 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.233 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.234 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.235 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.236 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.237 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.238 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.239 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.240 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.241 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.242 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.243 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.244 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.245 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.246 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.247 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.248 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.249 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.250 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.251 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.252 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.253 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.254 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.255 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.256 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.257 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.258 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.259 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.260 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.261 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.262 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.263 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.264 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.265 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.266 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.267 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.268 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.269 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.270 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.271 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.272 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.273 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.274 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.275 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.276 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.277 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.278 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.279 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.280 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.281 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.282 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.283 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.284 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.285 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.286 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.287 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.288 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.289 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.290 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.291 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.292 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.293 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.294 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.295 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.296 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.297 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.298 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.299 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.300 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.301 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.302 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.303 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.304 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.305 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.306 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.307 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2 +.1.3.6.1.4.1.22420.2.3.1.1.30.308 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2 +.1.3.6.1.4.1.22420.2.3.1.1.30.309 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2 +.1.3.6.1.4.1.22420.2.3.1.1.30.310 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.311 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.312 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.313 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.314 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.315 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.316 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.317 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.318 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.319 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.320 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.321 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.322 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.323 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.324 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.325 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.326 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.327 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.328 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.329 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.330 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.331 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.332 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.333 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.334 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.335 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.336 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.337 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.338 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.339 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.340 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.341 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.342 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.343 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.344 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.345 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.346 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.347 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.348 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.349 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.350 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.351 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.352 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.353 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.354 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.355 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.356 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.357 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.358 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.359 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.360 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.361 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.362 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.363 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.364 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.365 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.366 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.367 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.368 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.369 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.370 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.371 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.372 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.373 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.374 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.375 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.376 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.377 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.378 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.379 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.380 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.381 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.382 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.383 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.384 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.385 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.386 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.387 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.388 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.389 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.390 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.391 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.392 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.393 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.394 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.395 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.396 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.397 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.398 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.399 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.30.400 = .1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1 +.1.3.6.1.4.1.22420.2.3.1.1.31.1 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.2 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.3 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.4 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.5 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.6 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.7 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.8 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.9 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.10 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.11 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.12 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.13 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.14 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.15 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.16 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.17 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.18 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.19 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.20 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.21 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.22 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.23 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.24 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.25 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.26 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.27 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.28 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.29 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.30 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.31 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.32 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.33 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.34 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.35 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.36 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.37 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.38 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.39 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.40 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.41 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.42 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.43 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.44 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.45 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.46 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.47 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.48 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.49 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.50 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.51 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.52 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.53 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.54 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.55 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.56 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.57 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.58 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.59 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.60 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.61 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.62 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.63 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.64 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.65 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.66 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.67 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.68 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.69 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.70 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.71 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.72 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.73 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.74 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.75 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.76 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.77 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.78 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.79 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.80 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.81 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.82 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.83 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.84 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.85 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.86 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.87 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.88 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.89 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.90 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.91 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.92 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.93 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.94 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.95 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.96 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.97 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.98 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.99 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.100 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.101 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.102 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.103 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.104 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.105 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.106 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.107 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.108 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.109 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.110 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.111 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.112 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.113 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.114 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.115 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.116 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.117 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.118 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.119 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.120 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.121 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.122 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.123 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.124 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.125 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.126 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.127 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.128 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.129 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.130 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.131 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.132 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.133 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.134 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.135 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.136 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.137 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.138 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.139 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.140 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.141 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.142 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.143 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.144 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.145 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.146 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.147 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.148 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.149 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.150 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.151 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.152 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.153 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.154 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.155 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.156 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.157 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.158 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.159 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.160 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.161 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.162 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.163 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.164 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.165 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.166 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.167 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.168 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.169 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.170 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.171 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.172 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.173 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.174 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.175 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.176 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.177 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.178 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.179 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.180 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.181 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.182 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.183 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.184 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.185 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.186 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.187 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.188 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.189 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.190 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.191 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.192 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.193 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.194 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.195 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.196 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.197 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.198 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.199 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.200 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.201 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.202 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.203 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.204 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.205 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.206 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.207 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.208 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.209 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.210 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.211 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.212 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.213 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.214 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.215 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.216 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.217 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.218 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.219 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.220 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.221 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.222 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.223 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.224 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.225 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.226 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.227 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.228 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.229 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.230 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.231 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.232 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.233 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.234 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.235 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.236 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.237 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.238 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.239 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.240 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.241 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.242 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.243 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.244 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.245 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.246 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.247 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.248 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.249 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.250 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.251 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.252 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.253 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.254 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.255 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.256 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.257 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.258 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.259 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.260 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.261 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.262 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.263 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.264 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.265 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.266 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.267 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.268 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.269 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.270 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.271 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.272 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.273 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.274 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.275 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.276 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.277 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.278 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.279 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.280 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.281 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.282 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.283 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.284 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.285 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.286 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.287 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.288 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.289 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.290 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.291 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.292 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.293 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.294 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.295 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.296 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.297 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.298 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.299 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.300 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.301 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.302 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.303 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.304 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.305 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.306 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.307 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.308 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.309 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.310 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.311 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.312 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.313 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.314 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.315 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.316 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.317 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.318 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.319 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.320 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.321 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.322 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.323 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.324 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.325 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.326 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.327 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.328 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.329 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.330 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.331 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.332 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.333 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.334 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.335 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.336 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.337 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.338 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.339 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.340 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.341 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.342 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.343 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.344 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.345 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.346 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.347 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.348 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.349 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.350 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.351 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.352 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.353 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.354 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.355 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.356 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.357 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.358 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.359 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.360 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.361 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.362 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.363 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.364 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.365 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.366 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.367 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.368 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.369 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.370 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.371 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.372 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.373 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.374 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.375 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.376 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.377 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.378 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.379 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.380 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.381 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.382 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.383 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.384 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.385 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.386 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.387 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.388 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.389 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.390 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.391 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.392 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.393 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.394 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.395 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.396 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.397 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.398 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.399 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.31.400 = 1 +.1.3.6.1.4.1.22420.2.3.1.1.32.1 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.2 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.3 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.4 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.5 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.6 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.7 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.8 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.9 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.10 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.11 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.12 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.13 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.14 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.15 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.16 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.17 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.18 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.19 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.20 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.21 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.22 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.23 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.24 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.25 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.26 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.27 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.28 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.29 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.30 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.31 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.32 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.33 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.34 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.35 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.36 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.37 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.38 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.39 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.40 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.41 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.42 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.43 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.44 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.45 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.46 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.47 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.48 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.49 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.50 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.51 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.52 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.53 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.54 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.55 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.56 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.57 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.58 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.59 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.60 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.61 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.62 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.63 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.64 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.65 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.66 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.67 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.68 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.69 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.70 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.71 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.72 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.73 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.74 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.75 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.76 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.77 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.78 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.79 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.80 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.81 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.82 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.83 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.84 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.85 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.86 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.87 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.88 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.89 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.90 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.91 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.92 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.93 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.94 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.95 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.96 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.97 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.98 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.99 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.100 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.101 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.102 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.103 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.104 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.105 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.106 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.107 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.108 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.109 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.110 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.111 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.112 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.113 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.114 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.115 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.116 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.117 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.118 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.119 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.120 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.121 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.122 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.123 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.124 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.125 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.126 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.127 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.128 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.129 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.130 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.131 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.132 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.133 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.134 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.135 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.136 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.137 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.138 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.139 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.140 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.141 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.142 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.143 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.144 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.145 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.146 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.147 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.148 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.149 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.150 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.151 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.152 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.153 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.154 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.155 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.156 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.157 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.158 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.159 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.160 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.161 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.162 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.163 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.164 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.165 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.166 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.167 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.168 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.169 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.170 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.171 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.172 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.173 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.174 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.175 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.176 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.177 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.178 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.179 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.180 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.181 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.182 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.183 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.184 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.185 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.186 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.187 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.188 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.189 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.190 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.191 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.192 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.193 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.194 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.195 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.196 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.197 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.198 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.199 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.200 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.201 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.202 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.203 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.204 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.205 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.206 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.207 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.208 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.209 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.210 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.211 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.212 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.213 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.214 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.215 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.216 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.217 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.218 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.219 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.220 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.221 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.222 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.223 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.224 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.225 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.226 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.227 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.228 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.229 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.230 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.231 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.232 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.233 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.234 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.235 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.236 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.237 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.238 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.239 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.240 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.241 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.242 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.243 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.244 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.245 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.246 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.247 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.248 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.249 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.250 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.251 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.252 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.253 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.254 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.255 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.256 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.257 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.258 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.259 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.260 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.261 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.262 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.263 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.264 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.265 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.266 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.267 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.268 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.269 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.270 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.271 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.272 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.273 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.274 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.275 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.276 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.277 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.278 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.279 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.280 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.281 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.282 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.283 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.284 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.285 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.286 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.287 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.288 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.289 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.290 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.291 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.292 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.293 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.294 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.295 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.296 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.297 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.298 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.299 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.300 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.301 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.302 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.303 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.304 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.305 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.306 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.307 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.308 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.309 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.310 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.311 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.312 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.313 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.314 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.315 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.316 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.317 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.318 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.319 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.320 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.321 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.322 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.323 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.324 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.325 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.326 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.327 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.328 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.329 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.330 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.331 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.332 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.333 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.334 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.335 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.336 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.337 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.338 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.339 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.340 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.341 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.342 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.343 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.344 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.345 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.346 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.347 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.348 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.349 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.350 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.351 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.352 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.353 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.354 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.355 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.356 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.357 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.358 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.359 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.360 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.361 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.362 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.363 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.364 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.365 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.366 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.367 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.368 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.369 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.370 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.371 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.372 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.373 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.374 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.375 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.376 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.377 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.378 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.379 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.380 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.381 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.382 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.383 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.384 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.385 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.386 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.387 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.388 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.389 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.390 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.391 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.392 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.393 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.394 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.395 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.396 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.397 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.398 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.399 = 0 +.1.3.6.1.4.1.22420.2.3.1.1.32.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.2 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.3 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.4 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.5 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.6 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.7 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.8 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.9 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.10 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.11 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.12 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.13 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.14 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.15 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.16 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.17 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.18 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.19 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.20 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.21 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.22 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.23 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.24 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.25 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.26 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.27 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.28 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.29 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.30 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.31 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.32 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.33 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.34 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.35 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.36 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.37 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.38 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.39 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.40 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.41 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.42 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.43 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.44 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.45 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.46 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.47 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.48 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.49 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.50 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.51 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.52 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.53 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.54 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.55 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.56 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.57 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.58 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.59 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.60 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.61 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.62 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.63 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.64 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.65 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.66 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.67 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.68 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.69 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.70 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.71 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.72 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.73 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.74 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.75 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.76 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.77 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.78 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.79 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.80 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.81 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.82 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.83 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.84 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.85 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.86 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.87 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.88 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.89 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.90 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.91 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.92 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.93 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.94 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.95 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.96 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.97 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.98 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.99 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.100 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.2.101 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.102 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.103 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.104 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.105 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.106 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.107 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.108 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.109 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.110 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.111 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.112 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.113 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.114 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.115 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.116 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.117 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.118 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.119 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.120 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.121 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.122 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.123 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.124 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.125 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.126 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.127 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.128 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.129 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.130 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.131 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.132 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.133 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.134 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.135 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.136 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.137 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.138 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.139 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.140 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.141 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.142 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.143 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.144 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.145 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.146 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.147 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.148 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.149 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.150 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.151 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.152 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.153 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.154 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.155 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.156 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.157 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.158 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.159 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.160 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.161 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.162 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.163 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.164 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.165 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.166 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.167 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.168 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.169 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.170 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.171 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.172 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.173 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.174 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.175 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.176 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.177 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.178 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.179 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.180 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.181 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.182 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.183 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.184 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.185 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.186 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.187 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.188 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.189 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.190 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.191 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.192 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.193 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.194 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.195 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.196 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.197 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.198 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.199 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.200 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.2.201 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.202 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.203 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.204 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.205 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.206 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.207 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.208 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.209 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.210 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.211 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.212 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.213 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.214 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.215 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.216 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.217 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.218 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.219 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.220 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.221 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.222 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.223 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.224 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.225 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.226 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.227 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.228 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.229 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.230 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.231 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.232 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.233 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.234 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.235 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.236 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.237 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.238 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.239 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.240 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.241 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.242 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.243 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.244 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.245 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.246 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.247 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.248 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.249 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.250 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.251 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.252 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.253 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.254 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.255 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.256 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.257 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.258 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.259 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.260 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.261 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.262 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.263 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.264 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.265 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.266 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.267 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.268 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.269 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.270 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.271 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.272 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.273 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.274 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.275 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.276 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.277 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.278 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.279 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.280 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.281 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.282 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.283 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.284 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.285 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.286 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.287 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.288 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.289 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.290 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.291 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.292 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.293 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.294 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.295 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.296 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.297 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.298 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.299 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.300 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.2.301 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.302 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.303 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.304 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.305 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.306 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.307 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.308 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.309 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.310 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.311 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.312 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.313 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.314 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.315 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.316 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.317 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.318 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.319 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.320 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.321 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.322 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.323 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.324 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.325 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.326 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.327 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.328 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.329 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.330 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.331 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.332 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.333 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.334 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.335 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.336 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.337 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.338 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.339 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.340 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.341 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.342 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.343 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.344 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.345 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.346 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.347 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.348 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.349 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.350 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.351 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.352 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.353 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.354 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.355 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.356 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.357 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.358 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.359 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.360 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.361 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.362 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.363 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.364 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.365 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.366 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.367 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.368 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.369 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.370 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.371 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.372 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.373 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.374 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.375 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.376 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.377 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.378 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.379 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.380 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.381 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.382 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.383 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.384 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.385 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.386 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.387 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.388 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.389 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.390 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.391 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.392 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.393 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.394 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.395 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.396 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.397 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.398 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.399 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.2.400 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.1 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.2 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.3 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.4 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.5 = 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.6 = 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.7 = 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.8 = 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.9 = 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.10 = 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.11 = 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.12 = 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.13 = 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.14 = 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.15 = 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.16 = 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.17 = 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.18 = 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.19 = 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.20 = 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.21 = 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.22 = 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.23 = 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.24 = 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.25 = 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.26 = 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.27 = 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.28 = 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.29 = 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.30 = 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.31 = 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.32 = 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.33 = 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.34 = 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.35 = 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.36 = 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.37 = 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.38 = 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.39 = 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.40 = 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.41 = 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.42 = 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.43 = 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.44 = 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.45 = 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.46 = 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.47 = 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.48 = 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.49 = 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.50 = 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.51 = 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.52 = 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.53 = 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.54 = 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.55 = 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.56 = 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.57 = 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.58 = 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.59 = 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.60 = 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.61 = 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.62 = 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.63 = 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.64 = 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.65 = 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.66 = 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.67 = 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.68 = 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.69 = 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.70 = 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.71 = 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.72 = 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.73 = 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.74 = 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.75 = 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.76 = 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.77 = 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.78 = 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.79 = 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.80 = 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.81 = 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.82 = 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.83 = 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.84 = 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.85 = 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.86 = 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.87 = 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.88 = 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.89 = 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.90 = 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.91 = 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.92 = 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.93 = 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.94 = 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.95 = 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.96 = 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.97 = 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.98 = 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.99 = 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.100 = 100 +.1.3.6.1.4.1.22420.2.3.2.1.3.101 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.102 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.103 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.104 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.105 = 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.106 = 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.107 = 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.108 = 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.109 = 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.110 = 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.111 = 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.112 = 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.113 = 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.114 = 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.115 = 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.116 = 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.117 = 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.118 = 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.119 = 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.120 = 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.121 = 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.122 = 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.123 = 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.124 = 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.125 = 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.126 = 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.127 = 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.128 = 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.129 = 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.130 = 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.131 = 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.132 = 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.133 = 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.134 = 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.135 = 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.136 = 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.137 = 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.138 = 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.139 = 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.140 = 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.141 = 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.142 = 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.143 = 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.144 = 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.145 = 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.146 = 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.147 = 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.148 = 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.149 = 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.150 = 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.151 = 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.152 = 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.153 = 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.154 = 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.155 = 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.156 = 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.157 = 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.158 = 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.159 = 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.160 = 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.161 = 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.162 = 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.163 = 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.164 = 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.165 = 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.166 = 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.167 = 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.168 = 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.169 = 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.170 = 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.171 = 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.172 = 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.173 = 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.174 = 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.175 = 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.176 = 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.177 = 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.178 = 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.179 = 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.180 = 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.181 = 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.182 = 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.183 = 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.184 = 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.185 = 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.186 = 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.187 = 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.188 = 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.189 = 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.190 = 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.191 = 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.192 = 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.193 = 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.194 = 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.195 = 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.196 = 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.197 = 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.198 = 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.199 = 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.200 = 100 +.1.3.6.1.4.1.22420.2.3.2.1.3.201 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.202 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.203 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.204 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.205 = 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.206 = 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.207 = 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.208 = 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.209 = 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.210 = 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.211 = 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.212 = 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.213 = 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.214 = 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.215 = 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.216 = 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.217 = 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.218 = 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.219 = 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.220 = 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.221 = 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.222 = 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.223 = 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.224 = 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.225 = 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.226 = 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.227 = 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.228 = 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.229 = 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.230 = 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.231 = 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.232 = 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.233 = 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.234 = 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.235 = 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.236 = 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.237 = 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.238 = 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.239 = 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.240 = 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.241 = 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.242 = 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.243 = 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.244 = 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.245 = 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.246 = 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.247 = 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.248 = 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.249 = 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.250 = 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.251 = 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.252 = 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.253 = 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.254 = 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.255 = 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.256 = 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.257 = 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.258 = 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.259 = 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.260 = 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.261 = 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.262 = 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.263 = 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.264 = 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.265 = 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.266 = 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.267 = 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.268 = 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.269 = 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.270 = 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.271 = 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.272 = 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.273 = 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.274 = 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.275 = 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.276 = 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.277 = 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.278 = 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.279 = 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.280 = 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.281 = 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.282 = 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.283 = 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.284 = 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.285 = 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.286 = 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.287 = 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.288 = 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.289 = 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.290 = 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.291 = 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.292 = 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.293 = 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.294 = 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.295 = 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.296 = 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.297 = 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.298 = 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.299 = 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.300 = 100 +.1.3.6.1.4.1.22420.2.3.2.1.3.301 = 1 +.1.3.6.1.4.1.22420.2.3.2.1.3.302 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.3.303 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.3.304 = 4 +.1.3.6.1.4.1.22420.2.3.2.1.3.305 = 5 +.1.3.6.1.4.1.22420.2.3.2.1.3.306 = 6 +.1.3.6.1.4.1.22420.2.3.2.1.3.307 = 7 +.1.3.6.1.4.1.22420.2.3.2.1.3.308 = 8 +.1.3.6.1.4.1.22420.2.3.2.1.3.309 = 9 +.1.3.6.1.4.1.22420.2.3.2.1.3.310 = 10 +.1.3.6.1.4.1.22420.2.3.2.1.3.311 = 11 +.1.3.6.1.4.1.22420.2.3.2.1.3.312 = 12 +.1.3.6.1.4.1.22420.2.3.2.1.3.313 = 13 +.1.3.6.1.4.1.22420.2.3.2.1.3.314 = 14 +.1.3.6.1.4.1.22420.2.3.2.1.3.315 = 15 +.1.3.6.1.4.1.22420.2.3.2.1.3.316 = 16 +.1.3.6.1.4.1.22420.2.3.2.1.3.317 = 17 +.1.3.6.1.4.1.22420.2.3.2.1.3.318 = 18 +.1.3.6.1.4.1.22420.2.3.2.1.3.319 = 19 +.1.3.6.1.4.1.22420.2.3.2.1.3.320 = 20 +.1.3.6.1.4.1.22420.2.3.2.1.3.321 = 21 +.1.3.6.1.4.1.22420.2.3.2.1.3.322 = 22 +.1.3.6.1.4.1.22420.2.3.2.1.3.323 = 23 +.1.3.6.1.4.1.22420.2.3.2.1.3.324 = 24 +.1.3.6.1.4.1.22420.2.3.2.1.3.325 = 25 +.1.3.6.1.4.1.22420.2.3.2.1.3.326 = 26 +.1.3.6.1.4.1.22420.2.3.2.1.3.327 = 27 +.1.3.6.1.4.1.22420.2.3.2.1.3.328 = 28 +.1.3.6.1.4.1.22420.2.3.2.1.3.329 = 29 +.1.3.6.1.4.1.22420.2.3.2.1.3.330 = 30 +.1.3.6.1.4.1.22420.2.3.2.1.3.331 = 31 +.1.3.6.1.4.1.22420.2.3.2.1.3.332 = 32 +.1.3.6.1.4.1.22420.2.3.2.1.3.333 = 33 +.1.3.6.1.4.1.22420.2.3.2.1.3.334 = 34 +.1.3.6.1.4.1.22420.2.3.2.1.3.335 = 35 +.1.3.6.1.4.1.22420.2.3.2.1.3.336 = 36 +.1.3.6.1.4.1.22420.2.3.2.1.3.337 = 37 +.1.3.6.1.4.1.22420.2.3.2.1.3.338 = 38 +.1.3.6.1.4.1.22420.2.3.2.1.3.339 = 39 +.1.3.6.1.4.1.22420.2.3.2.1.3.340 = 40 +.1.3.6.1.4.1.22420.2.3.2.1.3.341 = 41 +.1.3.6.1.4.1.22420.2.3.2.1.3.342 = 42 +.1.3.6.1.4.1.22420.2.3.2.1.3.343 = 43 +.1.3.6.1.4.1.22420.2.3.2.1.3.344 = 44 +.1.3.6.1.4.1.22420.2.3.2.1.3.345 = 45 +.1.3.6.1.4.1.22420.2.3.2.1.3.346 = 46 +.1.3.6.1.4.1.22420.2.3.2.1.3.347 = 47 +.1.3.6.1.4.1.22420.2.3.2.1.3.348 = 48 +.1.3.6.1.4.1.22420.2.3.2.1.3.349 = 49 +.1.3.6.1.4.1.22420.2.3.2.1.3.350 = 50 +.1.3.6.1.4.1.22420.2.3.2.1.3.351 = 51 +.1.3.6.1.4.1.22420.2.3.2.1.3.352 = 52 +.1.3.6.1.4.1.22420.2.3.2.1.3.353 = 53 +.1.3.6.1.4.1.22420.2.3.2.1.3.354 = 54 +.1.3.6.1.4.1.22420.2.3.2.1.3.355 = 55 +.1.3.6.1.4.1.22420.2.3.2.1.3.356 = 56 +.1.3.6.1.4.1.22420.2.3.2.1.3.357 = 57 +.1.3.6.1.4.1.22420.2.3.2.1.3.358 = 58 +.1.3.6.1.4.1.22420.2.3.2.1.3.359 = 59 +.1.3.6.1.4.1.22420.2.3.2.1.3.360 = 60 +.1.3.6.1.4.1.22420.2.3.2.1.3.361 = 61 +.1.3.6.1.4.1.22420.2.3.2.1.3.362 = 62 +.1.3.6.1.4.1.22420.2.3.2.1.3.363 = 63 +.1.3.6.1.4.1.22420.2.3.2.1.3.364 = 64 +.1.3.6.1.4.1.22420.2.3.2.1.3.365 = 65 +.1.3.6.1.4.1.22420.2.3.2.1.3.366 = 66 +.1.3.6.1.4.1.22420.2.3.2.1.3.367 = 67 +.1.3.6.1.4.1.22420.2.3.2.1.3.368 = 68 +.1.3.6.1.4.1.22420.2.3.2.1.3.369 = 69 +.1.3.6.1.4.1.22420.2.3.2.1.3.370 = 70 +.1.3.6.1.4.1.22420.2.3.2.1.3.371 = 71 +.1.3.6.1.4.1.22420.2.3.2.1.3.372 = 72 +.1.3.6.1.4.1.22420.2.3.2.1.3.373 = 73 +.1.3.6.1.4.1.22420.2.3.2.1.3.374 = 74 +.1.3.6.1.4.1.22420.2.3.2.1.3.375 = 75 +.1.3.6.1.4.1.22420.2.3.2.1.3.376 = 76 +.1.3.6.1.4.1.22420.2.3.2.1.3.377 = 77 +.1.3.6.1.4.1.22420.2.3.2.1.3.378 = 78 +.1.3.6.1.4.1.22420.2.3.2.1.3.379 = 79 +.1.3.6.1.4.1.22420.2.3.2.1.3.380 = 80 +.1.3.6.1.4.1.22420.2.3.2.1.3.381 = 81 +.1.3.6.1.4.1.22420.2.3.2.1.3.382 = 82 +.1.3.6.1.4.1.22420.2.3.2.1.3.383 = 83 +.1.3.6.1.4.1.22420.2.3.2.1.3.384 = 84 +.1.3.6.1.4.1.22420.2.3.2.1.3.385 = 85 +.1.3.6.1.4.1.22420.2.3.2.1.3.386 = 86 +.1.3.6.1.4.1.22420.2.3.2.1.3.387 = 87 +.1.3.6.1.4.1.22420.2.3.2.1.3.388 = 88 +.1.3.6.1.4.1.22420.2.3.2.1.3.389 = 89 +.1.3.6.1.4.1.22420.2.3.2.1.3.390 = 90 +.1.3.6.1.4.1.22420.2.3.2.1.3.391 = 91 +.1.3.6.1.4.1.22420.2.3.2.1.3.392 = 92 +.1.3.6.1.4.1.22420.2.3.2.1.3.393 = 93 +.1.3.6.1.4.1.22420.2.3.2.1.3.394 = 94 +.1.3.6.1.4.1.22420.2.3.2.1.3.395 = 95 +.1.3.6.1.4.1.22420.2.3.2.1.3.396 = 96 +.1.3.6.1.4.1.22420.2.3.2.1.3.397 = 97 +.1.3.6.1.4.1.22420.2.3.2.1.3.398 = 98 +.1.3.6.1.4.1.22420.2.3.2.1.3.399 = 99 +.1.3.6.1.4.1.22420.2.3.2.1.3.400 = 100 +.1.3.6.1.4.1.22420.2.3.2.1.4.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.6 = 13471464 +.1.3.6.1.4.1.22420.2.3.2.1.4.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.206 = 13188308 +.1.3.6.1.4.1.22420.2.3.2.1.4.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.4.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.206 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.5.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.6 = 13471464 +.1.3.6.1.4.1.22420.2.3.2.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.206 = 13188308 +.1.3.6.1.4.1.22420.2.3.2.1.6.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.6.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.6 = 4000629177 +.1.3.6.1.4.1.22420.2.3.2.1.7.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.206 = 1952795763 +.1.3.6.1.4.1.22420.2.3.2.1.7.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.7.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.6 = 2 +.1.3.6.1.4.1.22420.2.3.2.1.8.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.206 = 3 +.1.3.6.1.4.1.22420.2.3.2.1.8.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.8.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.6 = 12590563769 +.1.3.6.1.4.1.22420.2.3.2.1.9.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.206 = 14837697651 +.1.3.6.1.4.1.22420.2.3.2.1.9.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.9.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.206 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.10.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.6 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.206 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.11.400 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.1 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.3 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.5 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.8 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.9 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.10 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.11 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.12 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.13 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.14 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.15 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.16 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.17 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.18 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.19 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.20 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.21 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.22 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.23 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.24 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.25 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.26 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.27 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.28 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.29 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.30 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.31 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.32 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.33 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.34 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.35 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.36 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.37 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.38 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.39 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.40 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.41 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.42 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.43 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.44 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.45 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.46 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.47 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.48 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.49 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.50 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.51 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.52 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.53 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.54 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.55 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.56 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.57 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.58 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.59 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.60 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.61 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.62 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.63 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.64 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.65 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.66 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.67 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.68 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.69 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.70 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.71 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.72 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.73 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.74 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.75 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.76 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.77 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.78 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.79 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.80 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.81 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.82 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.83 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.84 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.85 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.86 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.87 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.88 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.89 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.90 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.91 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.92 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.93 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.94 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.95 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.96 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.97 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.98 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.99 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.100 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.101 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.102 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.103 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.104 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.105 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.106 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.107 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.108 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.109 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.110 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.111 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.112 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.113 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.114 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.115 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.116 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.117 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.118 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.119 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.120 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.121 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.122 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.123 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.124 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.125 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.126 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.127 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.128 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.129 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.130 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.131 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.132 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.133 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.134 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.135 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.136 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.137 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.138 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.139 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.140 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.141 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.142 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.143 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.144 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.145 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.146 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.147 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.148 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.149 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.150 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.151 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.152 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.153 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.154 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.155 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.156 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.157 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.158 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.159 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.160 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.161 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.162 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.163 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.164 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.165 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.166 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.167 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.168 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.169 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.170 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.171 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.172 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.173 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.174 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.175 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.176 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.177 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.178 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.179 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.180 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.181 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.182 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.183 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.184 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.185 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.186 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.187 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.188 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.189 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.190 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.191 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.192 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.193 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.194 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.195 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.196 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.197 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.198 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.199 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.200 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.201 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.202 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.203 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.204 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.205 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.206 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.207 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.208 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.209 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.210 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.211 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.212 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.213 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.214 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.215 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.216 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.217 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.218 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.219 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.220 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.221 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.222 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.223 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.224 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.225 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.226 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.227 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.228 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.229 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.230 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.231 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.232 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.233 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.234 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.235 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.236 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.237 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.238 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.239 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.240 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.241 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.242 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.243 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.244 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.245 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.246 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.247 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.248 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.249 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.250 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.251 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.252 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.253 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.254 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.255 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.256 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.257 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.258 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.259 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.260 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.261 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.262 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.263 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.264 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.265 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.266 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.267 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.268 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.269 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.270 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.271 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.272 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.273 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.274 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.275 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.276 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.277 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.278 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.279 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.280 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.281 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.282 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.283 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.284 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.285 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.286 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.287 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.288 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.289 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.290 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.291 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.292 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.293 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.294 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.295 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.296 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.297 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.298 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.299 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.300 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.301 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.302 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.303 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.304 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.305 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.306 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.307 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.308 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.309 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.310 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.311 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.312 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.313 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.314 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.315 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.316 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.317 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.318 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.319 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.320 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.321 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.322 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.323 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.324 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.325 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.326 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.327 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.328 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.329 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.330 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.331 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.332 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.333 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.334 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.335 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.336 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.337 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.338 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.339 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.340 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.341 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.342 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.343 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.344 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.345 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.346 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.347 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.348 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.349 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.350 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.351 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.352 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.353 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.354 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.355 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.356 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.357 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.358 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.359 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.360 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.361 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.362 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.363 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.364 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.365 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.366 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.367 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.368 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.369 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.370 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.371 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.372 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.373 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.374 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.375 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.376 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.377 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.378 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.379 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.380 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.381 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.382 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.383 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.384 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.385 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.386 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.387 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.388 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.389 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.390 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.391 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.392 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.393 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.394 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.395 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.396 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.397 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.398 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.399 = 0 +.1.3.6.1.4.1.22420.2.3.2.1.12.400 = 0 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.1 = "Traffic-1" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.2 = "Traffic-2" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.3 = "Traffic-3" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.2.4 = "Traffic-4" +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.1 = 100 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.2 = 100 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.3 = 100 +.1.3.6.1.4.1.22420.2.3.5.1.1.1.3.4 = 100 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.2 = 2 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.3 = 3 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.4 = 4 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.5 = 0 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.6 = 0 +.1.3.6.1.4.1.22420.2.3.5.2.1.1.2.7 = 0 +.1.3.6.1.4.1.22420.2.3.5.3.1.0 = 5 +.1.3.6.1.4.1.22420.2.4.1.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.4.1.1.2.3 = 3 +.1.3.6.1.4.1.22420.2.4.1.1.3.1 = 7 +.1.3.6.1.4.1.22420.2.4.1.1.3.3 = 128 +.1.3.6.1.4.1.22420.2.4.1.1.4.1 = "OEM " +.1.3.6.1.4.1.22420.2.4.1.1.4.3 = "PROLABS " +.1.3.6.1.4.1.22420.2.4.1.1.5.1 = "00 00 00 " +.1.3.6.1.4.1.22420.2.4.1.1.5.3 = "00 00 00 " +.1.3.6.1.4.1.22420.2.4.1.1.6.1 = "53 46 50 2D 4C 58 2D 53 4D 00 00 00 00 00 00 00 " +.1.3.6.1.4.1.22420.2.4.1.1.6.3 = "SFP-1000BASE-T-C" +.1.3.6.1.4.1.22420.2.4.1.1.7.1 = "31 2E 30 20 00 05 1E 4E 43 49 35 30 4C 30 38 35 " +.1.3.6.1.4.1.22420.2.4.1.1.7.3 = "41 32 20 20 00 00 00 50 52 4C 39 34 30 30 33 39 " +.1.3.6.1.4.1.22420.2.4.1.1.8.1 = 1310 +.1.3.6.1.4.1.22420.2.4.1.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.4.1.1.9.1 = "NCI50L0853 " +.1.3.6.1.4.1.22420.2.4.1.1.9.3 = "PRL940039251 " +.1.3.6.1.4.1.22420.2.4.1.1.10.1 = 2009 +.1.3.6.1.4.1.22420.2.4.1.1.10.3 = 2021 +.1.3.6.1.4.1.22420.2.4.1.1.11.1 = 10 +.1.3.6.1.4.1.22420.2.4.1.1.11.3 = 8 +.1.3.6.1.4.1.22420.2.4.1.1.12.1 = 1 +.1.3.6.1.4.1.22420.2.4.1.1.12.3 = 16 +.1.3.6.1.4.1.22420.2.4.1.1.13.1 = 0 +.1.3.6.1.4.1.22420.2.4.1.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.4.1.1.14.1 = 0 +.1.3.6.1.4.1.22420.2.4.1.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.4.1.1.15.1 = 1 +.1.3.6.1.4.1.22420.2.4.1.1.15.3 = 1 +.1.3.6.1.4.1.22420.2.4.1.1.16.1 = 2 +.1.3.6.1.4.1.22420.2.4.1.1.16.3 = 2 +.1.3.6.1.4.1.22420.2.4.1.1.17.1 = 2 +.1.3.6.1.4.1.22420.2.4.1.1.17.3 = 2 +.1.3.6.1.4.1.22420.2.4.1.1.18.1 = 2 +.1.3.6.1.4.1.22420.2.4.1.1.18.3 = 2 +.1.3.6.1.4.1.22420.2.4.1.1.19.1 = 3 +.1.3.6.1.4.1.22420.2.4.1.1.19.3 = 3 +.1.3.6.1.4.1.22420.2.4.1.1.20.1 = 4 +.1.3.6.1.4.1.22420.2.4.1.1.20.3 = 4 +.1.3.6.1.4.1.22420.2.4.1.1.21.1 = "00 00 00 02 12 00 0D 01 " +.1.3.6.1.4.1.22420.2.4.1.1.21.3 = "00 00 00 08 00 00 00 00 " +.1.3.6.1.4.1.22420.2.4.2.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.4.2.1.2.3 = 3 +.1.3.6.1.4.1.22420.2.4.2.1.3.1 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.3.3 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.4.1 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.4.3 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.5.1 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.7.1 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.7.3 = 0 +.1.3.6.1.4.1.22420.2.4.2.1.8.1 = "-inf dBm +" +.1.3.6.1.4.1.22420.2.4.2.1.8.3 = "-inf dBm +" +.1.3.6.1.4.1.22420.2.4.2.1.9.1 = "-inf dBm +" +.1.3.6.1.4.1.22420.2.4.2.1.9.3 = "-inf dBm +" +.1.3.6.1.4.1.22420.2.4.3.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.4.3.1.2.3 = 3 +.1.3.6.1.4.1.22420.2.4.3.1.3.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.3.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.4.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.4.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.5.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.7.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.7.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.8.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.9.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.9.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.11.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.12.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.12.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.13.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.14.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.15.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.15.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.17.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.17.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.19.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.19.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.20.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.20.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.21.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.21.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.22.3 = 0 +.1.3.6.1.4.1.22420.2.4.3.1.23.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.23.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.24.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.24.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.25.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.25.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.26.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.26.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.27.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.27.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.28.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.28.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.29.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.29.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.30.1 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.3.1.30.3 = "2D 69 6E 00 20 64 42 6D 0A " +.1.3.6.1.4.1.22420.2.4.4.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.4.4.1.2.3 = 3 +.1.3.6.1.4.1.22420.2.4.4.1.3.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.3.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.4.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.4.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.5.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.5.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.6.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.6.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.7.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.7.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.8.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.8.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.9.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.9.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.10.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.10.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.11.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.11.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.12.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.12.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.13.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.13.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.14.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.14.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.15.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.15.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.16.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.16.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.17.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.17.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.18.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.18.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.19.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.19.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.20.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.20.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.21.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.21.3 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.22.1 = 2 +.1.3.6.1.4.1.22420.2.4.4.1.22.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.2.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.2.3 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.2.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.3.1 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.3.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.3.3 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.3.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.4.1 = 10000 +.1.3.6.1.4.1.22420.2.5.1.1.4.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.4.3 = 10000 +.1.3.6.1.4.1.22420.2.5.1.1.4.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.5.1 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.5.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.5.3 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.5.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.6.1 = 10000 +.1.3.6.1.4.1.22420.2.5.1.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.6.3 = 10000 +.1.3.6.1.4.1.22420.2.5.1.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.7.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.7.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.7.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.7.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.8.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.8.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.8.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.9.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.9.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.9.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.9.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.12.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.12.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.12.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.12.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.13.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.13.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.13.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.14.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.15.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.16.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.17.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.17.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.17.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.17.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.18.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.18.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.19.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.20.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.21.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.22.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.23.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.23.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.23.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.23.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.24.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.24.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.24.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.24.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.25.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.26.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.27.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.28.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.28.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.28.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.28.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.29.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.29.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.29.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.29.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.30.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.31.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.32.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.33.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.34.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.34.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.34.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.34.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.35.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.35.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.35.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.35.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.36.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.37.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.38.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.39.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.39.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.39.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.39.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.40.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.40.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.40.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.40.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.41.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.42.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.43.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.44.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.45.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.45.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.45.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.45.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.46.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.46.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.46.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.46.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.47.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.48.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.49.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.50.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.50.2 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.50.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.50.4 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.51.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.51.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.51.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.51.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.52.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.53.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.54.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.55.1 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.1.1.55.2 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.5.1.1.55.3 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.1.1.55.4 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.5.1.1.56.1 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.1.1.56.2 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.5.1.1.56.3 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.1.1.56.4 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.5.1.1.57.1 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.1.1.57.2 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.5.1.1.57.3 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.1.1.57.4 = "00 00 01 01 00 00 00 00 " +.1.3.6.1.4.1.22420.2.5.1.1.58.1 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.58.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.58.3 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.58.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.59.1 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.59.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.59.3 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.59.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.60.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.61.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.62.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.63.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.64.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.65.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.66.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.67.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.68.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.69.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.70.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.71.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.72.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.73.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.74.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.75.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.76.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.77.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.78.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.79.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.80.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.81.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.82.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.83.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.84.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.85.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.86.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.87.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.88.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.89.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.90.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.91.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.92.1 = "" +.1.3.6.1.4.1.22420.2.5.1.1.92.2 = "" +.1.3.6.1.4.1.22420.2.5.1.1.92.3 = "" +.1.3.6.1.4.1.22420.2.5.1.1.92.4 = "" +.1.3.6.1.4.1.22420.2.5.1.1.93.1 = "" +.1.3.6.1.4.1.22420.2.5.1.1.93.2 = "" +.1.3.6.1.4.1.22420.2.5.1.1.93.3 = "" +.1.3.6.1.4.1.22420.2.5.1.1.93.4 = "" +.1.3.6.1.4.1.22420.2.5.1.1.94.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.94.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.94.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.94.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.95.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.96.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.97.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.98.1 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.98.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.98.3 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.98.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.99.1 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.99.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.99.3 = 1 +.1.3.6.1.4.1.22420.2.5.1.1.99.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.100.1 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.100.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.100.3 = 2 +.1.3.6.1.4.1.22420.2.5.1.1.100.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.101.1 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.101.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.101.3 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.101.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.102.1 = 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.102.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.102.3 = 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.102.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.103.1 = 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.103.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.103.3 = 100000000 +.1.3.6.1.4.1.22420.2.5.1.1.103.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.104.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.105.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.106.1 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.106.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.106.3 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.106.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.107.1 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.107.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.107.3 = 60 +.1.3.6.1.4.1.22420.2.5.1.1.107.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.108.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.109.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.110.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.111.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.112.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.113.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.114.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.115.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.116.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.117.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.118.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.119.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.120.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.121.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.122.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.123.4 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.1 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.2 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.3 = 0 +.1.3.6.1.4.1.22420.2.5.1.1.124.4 = 0 +.1.3.6.1.4.1.22420.2.5.2.1.1.1 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.1.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.1.3 = 3 +.1.3.6.1.4.1.22420.2.5.2.1.1.4 = 4 +.1.3.6.1.4.1.22420.2.5.2.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.2.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.2.3 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.2.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.3.1 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.3.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.3.3 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.3.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.4.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.5.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.6.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.7.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.8.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.9.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.10.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.1 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.2 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.3 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.11.4 = 2 +.1.3.6.1.4.1.22420.2.5.2.1.12.1 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.5.2.1.12.3 = 1 +.1.3.6.1.4.1.22420.2.5.2.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.5.2.1.13.1 = "00:15:AD:65:F4:35" +.1.3.6.1.4.1.22420.2.5.2.1.13.2 = "00:15:AD:65:F2:A5" +.1.3.6.1.4.1.22420.2.5.2.1.13.3 = "00:15:AD:65:F4:15" +.1.3.6.1.4.1.22420.2.5.2.1.13.4 = "00:15:AD:65:F2:A5" +.1.3.6.1.4.1.22420.2.5.4.1.1.1 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.1.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.1.3 = 3 +.1.3.6.1.4.1.22420.2.5.4.1.1.4 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.2.1 = "PAA_Site573_VL2216" +.1.3.6.1.4.1.22420.2.5.4.1.2.2 = "PAA_site573_2216_PNAP" +.1.3.6.1.4.1.22420.2.5.4.1.2.3 = "PAA_Site573_VL2217" +.1.3.6.1.4.1.22420.2.5.4.1.2.4 = "PAA_site573_2217_PNAP" +.1.3.6.1.4.1.22420.2.5.4.1.3.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.3.2 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.3.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.3.4 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.4.1 = 66 +.1.3.6.1.4.1.22420.2.5.4.1.4.2 = 66 +.1.3.6.1.4.1.22420.2.5.4.1.4.3 = 66 +.1.3.6.1.4.1.22420.2.5.4.1.4.4 = 66 +.1.3.6.1.4.1.22420.2.5.4.1.5.1 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.5.2 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.5.3 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.5.4 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.6.1 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.6.2 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.6.3 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.6.4 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.7.1 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.7.2 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.7.3 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.7.4 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.8.1 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.8.2 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.8.3 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.8.4 = 1000 +.1.3.6.1.4.1.22420.2.5.4.1.9.1 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.9.2 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.9.3 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.9.4 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.10.1 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.10.2 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.10.3 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.10.4 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.11.1 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.11.2 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.11.3 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.11.4 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.12.1 = 2000 +.1.3.6.1.4.1.22420.2.5.4.1.12.2 = 2000 +.1.3.6.1.4.1.22420.2.5.4.1.12.3 = 2000 +.1.3.6.1.4.1.22420.2.5.4.1.12.4 = 2000 +.1.3.6.1.4.1.22420.2.5.4.1.13.1 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.13.2 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.13.3 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.13.4 = 60000 +.1.3.6.1.4.1.22420.2.5.4.1.14.1 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.14.2 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.14.3 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.14.4 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.15.1 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.15.2 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.15.3 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.15.4 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.16.1 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.16.2 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.16.3 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.16.4 = 100000 +.1.3.6.1.4.1.22420.2.5.4.1.17.1 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.17.2 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.17.3 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.17.4 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.18.1 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.18.2 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.18.3 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.18.4 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.19.1 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.19.2 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.19.3 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.19.4 = 10000 +.1.3.6.1.4.1.22420.2.5.4.1.20.1 = "EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.5.4.1.20.2 = "EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.5.4.1.20.3 = "EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.5.4.1.20.4 = "EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.5.4.1.21.1 = "00 15 AD 65 F4 35 " +.1.3.6.1.4.1.22420.2.5.4.1.21.2 = "00 15 AD 65 F2 A5 " +.1.3.6.1.4.1.22420.2.5.4.1.21.3 = "00 15 AD 65 F4 15 " +.1.3.6.1.4.1.22420.2.5.4.1.21.4 = "00 15 AD 65 F2 A5 " +.1.3.6.1.4.1.22420.2.5.4.1.22.1 = 35068 +.1.3.6.1.4.1.22420.2.5.4.1.22.2 = 35068 +.1.3.6.1.4.1.22420.2.5.4.1.22.3 = 35068 +.1.3.6.1.4.1.22420.2.5.4.1.22.4 = 35068 +.1.3.6.1.4.1.22420.2.5.4.1.23.1 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.23.2 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.23.3 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.23.4 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.24.1 = 2216 +.1.3.6.1.4.1.22420.2.5.4.1.24.2 = 2216 +.1.3.6.1.4.1.22420.2.5.4.1.24.3 = 2217 +.1.3.6.1.4.1.22420.2.5.4.1.24.4 = 2217 +.1.3.6.1.4.1.22420.2.5.4.1.25.1 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.25.2 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.25.3 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.25.4 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.26.1 = 2573 +.1.3.6.1.4.1.22420.2.5.4.1.26.2 = 2573 +.1.3.6.1.4.1.22420.2.5.4.1.26.3 = 3573 +.1.3.6.1.4.1.22420.2.5.4.1.26.4 = 3573 +.1.3.6.1.4.1.22420.2.5.4.1.27.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.27.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.27.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.27.4 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.28.4 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.29.1 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.29.2 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.29.3 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.29.4 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.30.1 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.30.2 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.30.3 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.30.4 = 4 +.1.3.6.1.4.1.22420.2.5.4.1.31.1 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.31.2 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.31.3 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.31.4 = 50000 +.1.3.6.1.4.1.22420.2.5.4.1.32.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.32.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.32.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.32.4 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.33.1 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.33.2 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.33.3 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.33.4 = 1 +.1.3.6.1.4.1.22420.2.5.4.1.34.1 = 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.34.2 = 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.34.3 = 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.34.4 = 10000000 +.1.3.6.1.4.1.22420.2.5.4.1.35.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.35.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.35.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.35.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.36.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.37.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.37.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.37.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.37.4 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.38.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.38.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.38.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.38.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.39.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.40.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.40.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.40.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.40.4 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.41.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.41.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.41.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.41.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.42.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.43.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.43.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.43.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.43.4 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.44.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.44.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.44.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.44.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.1 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.2 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.3 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.45.4 = 2 +.1.3.6.1.4.1.22420.2.5.4.1.46.1 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.46.2 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.46.3 = 0 +.1.3.6.1.4.1.22420.2.5.4.1.46.4 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755427 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755428 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755429 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755430 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755431 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755432 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755433 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755434 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755435 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755436 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755437 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755438 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755439 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755440 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.1.1755441 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755427 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755428 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755429 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755430 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755431 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755432 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755433 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755434 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755435 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755436 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755437 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755438 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755439 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755440 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.1.3.1755441 = 3 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755427 = 1755427 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755428 = 1755428 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755429 = 1755429 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755430 = 1755430 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755431 = 1755431 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755432 = 1755432 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755433 = 1755433 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755434 = 1755434 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755435 = 1755435 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755436 = 1755436 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755437 = 1755437 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755438 = 1755438 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755439 = 1755439 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755440 = 1755440 +.1.3.6.1.4.1.22420.2.5.5.1.2.1.1755441 = 1755441 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755427 = 1755427 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755428 = 1755428 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755429 = 1755429 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755430 = 1755430 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755431 = 1755431 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755432 = 1755432 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755433 = 1755433 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755434 = 1755434 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755435 = 1755435 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755436 = 1755436 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755437 = 1755437 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755438 = 1755438 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755439 = 1755439 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755440 = 1755440 +.1.3.6.1.4.1.22420.2.5.5.1.2.3.1755441 = 1755441 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.3.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.4.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755427 = "07 B5 05 03 0F 27 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755428 = "07 B5 05 03 0F 28 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755429 = "07 B5 05 03 0F 29 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755430 = "07 B5 05 03 0F 2A 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755431 = "07 B5 05 03 0F 2B 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755432 = "07 B5 05 03 0F 2C 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755433 = "07 B5 05 03 0F 2D 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755434 = "07 B5 05 03 0F 2E 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755435 = "07 B5 05 03 0F 2F 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755436 = "07 B5 05 03 0F 30 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755437 = "07 B5 05 03 0F 31 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755438 = "07 B5 05 03 0F 32 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755439 = "07 B5 05 03 0F 33 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755440 = "07 B5 05 03 0F 34 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.1.1755441 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755427 = "07 B5 05 03 0F 27 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755428 = "07 B5 05 03 0F 28 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755429 = "07 B5 05 03 0F 29 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755430 = "07 B5 05 03 0F 2A 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755431 = "07 B5 05 03 0F 2B 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755432 = "07 B5 05 03 0F 2C 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755433 = "07 B5 05 03 0F 2D 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755434 = "07 B5 05 03 0F 2E 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755435 = "07 B5 05 03 0F 2F 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755436 = "07 B5 05 03 0F 30 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755437 = "07 B5 05 03 0F 31 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755438 = "07 B5 05 03 0F 32 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755439 = "07 B5 05 03 0F 33 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755440 = "07 B5 05 03 0F 34 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.5.3.1755441 = "07 B5 05 03 0F 35 00 00 2D 07 00 " +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755427 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755428 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755429 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755430 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755431 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755432 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755433 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755434 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755435 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755436 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755437 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755438 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755439 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755440 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.1.1755441 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755427 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755428 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755429 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755430 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755431 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755432 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755433 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755434 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755435 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755436 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755437 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755438 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755439 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755440 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.6.3.1755441 = 1 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755427 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755428 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755429 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755430 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755431 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755432 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755433 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755434 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755435 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755436 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755437 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755438 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755439 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755440 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.1.1755441 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755427 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755428 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755429 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755430 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755431 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755432 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755433 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755434 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755435 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755436 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755437 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755438 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755439 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755440 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.7.3.1755441 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755427 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755428 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755429 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755430 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755431 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755432 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755433 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755434 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755435 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755436 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755437 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755438 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755439 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755440 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.1.1755441 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755427 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755428 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755429 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755430 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755431 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755432 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755433 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755434 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755435 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755436 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755437 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755438 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755439 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755440 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.8.3.1755441 = 10000 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.9.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.10.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.11.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.12.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.13.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.14.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.15.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.16.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.17.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.18.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.19.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.20.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.21.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.22.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.23.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.24.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.25.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.26.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.27.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.28.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.29.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.30.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.31.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.32.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.33.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.34.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.35.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.36.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.37.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.38.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.39.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.40.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.41.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.1.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755427 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755428 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755429 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755430 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755431 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755432 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755433 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755434 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755435 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755436 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755437 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755438 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755439 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755440 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.42.3.1755441 = 2 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.43.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.44.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.45.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.46.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.47.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755427 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755428 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755429 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755430 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755431 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755432 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755433 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755434 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755435 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755436 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755437 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755438 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755439 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755440 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.1.1755441 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755427 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755428 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755429 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755430 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755431 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755432 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755433 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755434 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755435 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755436 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755437 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755438 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755439 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755440 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.48.3.1755441 = 100000000 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.49.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755427 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755428 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755429 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755430 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755431 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755432 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755433 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755434 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755435 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755436 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755437 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755438 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755439 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755440 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.1.1755441 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755427 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755428 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755429 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755430 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755431 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755432 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755433 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755434 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755435 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755436 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755437 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755438 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755439 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755440 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.50.3.1755441 = 60 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.1.1755441 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755427 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755428 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755429 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755430 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755431 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755432 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755433 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755434 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755435 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755436 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755437 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755438 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755439 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755440 = 0 +.1.3.6.1.4.1.22420.2.5.5.1.51.3.1755441 = 0 +.1.3.6.1.4.1.22420.2.6.1.1.2.1 = "150Mb_Reg" +.1.3.6.1.4.1.22420.2.6.1.1.3.1 = 154000 +.1.3.6.1.4.1.22420.2.6.1.1.4.1 = 8 +.1.3.6.1.4.1.22420.2.6.1.1.5.1 = 40000 +.1.3.6.1.4.1.22420.2.6.1.1.6.1 = 8 +.1.3.6.1.4.1.22420.2.6.1.1.7.1 = 1 +.1.3.6.1.4.1.22420.2.6.1.1.8.1 = 2 +.1.3.6.1.4.1.22420.2.6.1.1.9.1 = 1 +.1.3.6.1.4.1.22420.2.6.1.1.10.1 = 1 +.1.3.6.1.4.1.22420.2.6.1.1.11.1 = 165000 +.1.3.6.1.4.1.22420.2.6.1.1.12.1 = 40000 +.1.3.6.1.4.1.22420.2.6.2.1.2.1 = 2716569892 +.1.3.6.1.4.1.22420.2.6.2.1.3.1 = 5 +.1.3.6.1.4.1.22420.2.6.2.1.4.1 = 24191406372 +.1.3.6.1.4.1.22420.2.6.2.1.5.1 = 24075872 +.1.3.6.1.4.1.22420.2.6.2.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.7.1 = 24075872 +.1.3.6.1.4.1.22420.2.6.2.1.8.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.9.1 = 1327175847 +.1.3.6.1.4.1.22420.2.6.2.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.11.1 = 1327175847 +.1.3.6.1.4.1.22420.2.6.2.1.12.1 = 1167711 +.1.3.6.1.4.1.22420.2.6.2.1.13.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.14.1 = 1167711 +.1.3.6.1.4.1.22420.2.6.2.1.15.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.16.1 = 15105527127 +.1.3.6.1.4.1.22420.2.6.2.1.17.1 = 16295758 +.1.3.6.1.4.1.22420.2.6.2.1.18.1 = 9085879245 +.1.3.6.1.4.1.22420.2.6.2.1.19.1 = 7780114 +.1.3.6.1.4.1.22420.2.6.2.1.20.1 = 1327175847 +.1.3.6.1.4.1.22420.2.6.2.1.21.1 = 1167711 +.1.3.6.1.4.1.22420.2.6.2.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.23.1 = 0 +.1.3.6.1.4.1.22420.2.6.2.1.24.1 = 0 +.1.3.6.1.4.1.22420.2.6.5.1.1.0 = 28 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.51 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.52 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.53 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.54 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.55 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.2.56 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.1 = "8P0D-8P0D" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.2 = "8P0D-7P1D" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.3 = "8P0D-6P2D" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.4 = "8P0D-5P3D" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.51 = "*EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.52 = "*ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.53 = "*EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.54 = "*ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.55 = "*LAG-1" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.3.56 = "*LAG-2" +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.51 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.52 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.53 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.54 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.55 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.4.56 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.1 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.4 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.51 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.52 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.53 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.54 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.55 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.5.56 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.1 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.4 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.51 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.52 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.53 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.54 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.55 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.1.1.6.56 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.1.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.2.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.3.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.4.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.51.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.52.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.53.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.54.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.55.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.2.56.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.1.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.4 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.2.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.2 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.4 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.3.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.0 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.2 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.4 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.4.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.51.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.52.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.53.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.54.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.55.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.3.56.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.1.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.2.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.3.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.4.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.51.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.52.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.53.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.54.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.55.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.0 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.2 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.3 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.4 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.5 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.6 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.2.1.4.56.7 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.1 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.3 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.4 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.5 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.6 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.5.1.2.7 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.1.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.2.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.3.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.4.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.5.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.6.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.2.7.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.1.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.2.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.3.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.4.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.5.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.6.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.3.7.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.1.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.2.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.3.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.4.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.5.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.6.8 = 7 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.1 = 0 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.2 = 1 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.3 = 2 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.4 = 3 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.5 = 4 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.6 = 5 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.7 = 6 +.1.3.6.1.4.1.22420.2.8.1.1.6.1.4.7.8 = 7 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.1 = "EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.2 = "ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.3 = "EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.4 = "ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.5 = "Management" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.6 = "LAG-1" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.2.7 = "LAG-2" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.1 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.2 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.3 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.4 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.5 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.6 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.3.7 = "" +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.1 = "00 15 AD 47 3E 61 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.2 = "00 15 AD 47 3E 62 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.3 = "00 15 AD 47 3E 63 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.4 = "00 15 AD 47 3E 64 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.5 = "00 15 AD 47 3E 65 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.6 = "00 15 AD 47 3E 61 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.4.7 = "00 15 AD 47 3E 63 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.1 = .1.3.6.1.4.1.22420.1.1.10.1.1.1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.2 = .1.3.6.1.4.1.22420.1.1.10.1.1.2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.3 = .1.3.6.1.4.1.22420.1.1.10.1.1.3 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.4 = .1.3.6.1.4.1.22420.1.1.10.1.1.4 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.5 = .1.3.6.1.4.1.22420.1.1.10.1.1.5 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.6 = .1.3.6.1.4.1.22420.1.1.10.1.1.6 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.5.7 = .1.3.6.1.4.1.22420.1.1.10.1.1.7 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.2 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.3 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.4 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.6 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.6.7 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.1 = 4096 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.2 = 4096 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.3 = 2000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.4 = 4096 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.5 = 2000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.6 = 10240 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.7.7 = 10240 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.2 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.3 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.4 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.6 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.8.7 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.1 = 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.2 = 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.3 = 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.4 = 1000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.5 = 100 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.6 = 10000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.9.7 = 10000 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.2 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.3 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.4 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.6 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.10.7 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.2 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.3 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.4 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.6 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.11.7 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.2 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.3 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.4 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.6 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.12.7 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.1 = "00 00 00 E0 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.2 = "00 00 00 EA " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.3 = "00 00 00 EA " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.4 = "00 00 00 E0 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.5 = "00 00 00 CA " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.6 = "00 00 00 E0 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.13.7 = "00 00 00 E0 " +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.2 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.3 = 2 +.1.3.6.1.4.1.22420.2.9.1.1.1.1.14.4 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.1 = 1000 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.5 = 100 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.2.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.3.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.4.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.1 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.2 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.3 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.4 = "00 00 00 E0 " +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.5 = "00 00 00 CF " +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.6 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.7.7 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.2 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.3 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.4 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.6 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.8.7 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.1 = "00 00 02 " +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.2 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.3 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.4 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.5 = "00 00 80 " +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.6 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.9.7 = "" +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.1 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.11.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.13.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.1 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.2 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.3 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.4 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.5 = 1 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.6 = 2 +.1.3.6.1.4.1.22420.2.9.1.2.1.1.14.7 = 2 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.1 = "FF FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.2 = "FF FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.3 = "FF FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.4 = "FF FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.5 = "FF FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.6 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.2.7 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.1 = 15250077610 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.2 = 110445216 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.3 = 12089036710 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.4 = 354824130 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.5 = 1389916831 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.3.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.1 = 15250077610 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.2 = 110445216 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.3 = 12089036710 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.4 = 354824130 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.5 = 1389916831 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.4.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.1 = 20489450 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.3 = 12156384 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.5 = 8738407 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.1 = 1327125 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.2 = 751328 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.3 = 1854514 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.4 = 2381370 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.5 = 6 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.1 = 64 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.3 = 24 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.5 = 558852 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.7.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.8.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.1 = 20489655 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.5 = 8739318 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.9.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.11.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.13.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.14.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.15.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.16.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.17.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.3 = 3630757 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.5 = 763909 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.19.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.1 = 10311905 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.3 = 774602 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.5 = 6697154 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.20.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.1 = 1829023 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.2 = 751328 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.3 = 2010683 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.4 = 2381370 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.5 = 835749 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.21.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.1 = 2878 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.3 = 3635 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.5 = 765806 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.1 = 23328 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.3 = 2148 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.5 = 110624 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.23.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.1 = 9649475 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.3 = 7589097 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.5 = 53576 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.24.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.1 = 30 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.5 = 70447 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.25.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.26.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.27.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.28.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.29.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.30.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.31.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.1.1.32.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.1 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.2 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.3 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.4 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.5 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.6 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.2.7 = "7F FF FF FF " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.1 = 12813326425 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.2 = 135053161 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.3 = 15078973313 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.4 = 314336220 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.5 = 132731521314 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.3.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.1 = 12813326425 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.2 = 135053161 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.3 = 15078973313 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.4 = 314336220 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.5 = 132731521314 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.4.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.7.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.8.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.1 = 12685439 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.3 = 13188103 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.5 = 6717361 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.9.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.1 = 1333629 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.2 = 755094 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.3 = 1854490 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.4 = 2381335 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.5 = 1059020007 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.1 = 786060 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.2 = 35 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.3 = 64 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.5 = 291437231 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.11.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.3 = 3292 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.1 = 13471464 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.5 = 1121596659 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.13.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.14.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.15.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.16.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.17.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.19.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.20.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.21.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.1 = 976276 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.2 = 42 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.3 = 2010989 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.5 = 86506700 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.23.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.1 = 4299190 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.2 = 23 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.3 = 524707 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.5 = 1211571089 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.24.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.1 = 1491555 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.2 = 755029 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.3 = 2361587 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.4 = 2381335 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.5 = 37333757 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.25.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.1 = 3686 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.2 = 35 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.3 = 3003 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.5 = 16931363 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.26.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.1 = 2165 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.3 = 24786 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.5 = 2365546 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.27.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.1 = 836135 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.3 = 10120877 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.5 = 2436877 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.28.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.1 = 7196121 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.5 = 29267 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.29.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.30.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.31.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.32.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.5 = 2 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.33.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.34.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.35.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.36.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.1 = "E0 " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.2 = "E0 " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.3 = "E0 " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.4 = "E0 " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.5 = "E0 " +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.6 = "" +.1.3.6.1.4.1.22420.2.9.1.3.2.1.37.7 = "" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.1 = "EVEN_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.2 = "ODD_VLAN_UPLINK" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.3 = "EVEN_VLAN_DOWNLIN" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.4 = "ODD_VLAN_DOWNLINK" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.5 = "Management" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.6 = "LAG-1" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.2.7 = "LAG-2" +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.1 = 21816639 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.2 = 751328 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.3 = 14010922 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.4 = 2381370 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.5 = 9297715 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.3.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.4.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.1 = 14805128 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.2 = 755129 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.3 = 15045949 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.4 = 2381335 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.5 = 1357175081 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.1 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.1 = 15250077610 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.2 = 110445216 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.3 = 12089036710 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.4 = 354824130 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.5 = 1389962972 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.7.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.1 = 12813326425 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.2 = 135053161 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.3 = 15078973313 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.4 = 314336220 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.5 = 132731573180 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.6 = 0 +.1.3.6.1.4.1.22420.2.9.1.3.3.1.8.7 = 0 +.1.3.6.1.4.1.22420.2.9.1.4.1.0 = 11 +.1.3.6.1.4.1.22420.2.11.1.1.4.0 = 0 +.1.3.6.1.4.1.22420.2.11.1.1.5.0 = 0 +.1.3.6.1.4.1.22420.2.14.1.1.1.0 = 294 +.1.3.6.1.4.1.22420.2.14.1.1.2.0 = 101 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.1 = .1.3.6.1.4.1.22420.2.2.3 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.2 = .1.3.6.1.4.1.22420.2.2.4 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.3 = .1.3.6.1.4.1.22420.2.1.10 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.4 = .1.3.6.1.4.1.22420.2.1.11 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.5 = .1.3.6.1.4.1.22420.2.9.1.1.1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.6 = .1.3.6.1.4.1.22420.2.3.1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.2.7 = .1.3.6.1.4.1.22420.2.6.1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.1 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.2 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.3 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.4 = 2 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.5 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.6 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.3.7 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.1 = "Transaction Identifier for acdSmapL2FilterTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.2 = "Transaction Identifier for acdSmapIPv4FilterTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.3 = "Transaction Identifier for acdAlarmCfgTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.4 = "Transaction Identifier for acdAlarmStatusTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.5 = "Transaction Identifier for acdPortConfigTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.6 = "Transaction Identifier for acdPolicyTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.4.7 = "Transaction Identifier for acdRegulatorTable" +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.1 = 2 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.2 = 1 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.3 = 247 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.4 = 101 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.5 = 11 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.6 = 5 +.1.3.6.1.4.1.22420.2.14.1.2.1.1.5.7 = 28 +.1.3.6.1.4.1.22420.2.14.1.3.2.0 = 25213 +.1.3.6.1.4.1.22420.2.21.1.1.1.2.1 = "PORT-1-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.2 = "PORT-1-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.3 = "PORT-1-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.4 = "PORT-1-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.5 = "PORT-1-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.6 = "PORT-1-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.7 = "PORT-2-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.8 = "PORT-2-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.9 = "PORT-2-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.10 = "PORT-2-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.11 = "PORT-2-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.12 = "PORT-2-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.13 = "PORT-3-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.14 = "PORT-3-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.15 = "PORT-3-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.16 = "PORT-3-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.17 = "PORT-3-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.18 = "PORT-3-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.19 = "PORT-4-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.20 = "PORT-4-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.21 = "PORT-4-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.22 = "PORT-4-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.23 = "PORT-4-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.24 = "PORT-4-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.25 = "LAG-1-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.26 = "LAG-1-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.27 = "LAG-1-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.28 = "LAG-1-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.29 = "LAG-1-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.30 = "LAG-1-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.31 = "LAG-2-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.32 = "LAG-2-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.33 = "LAG-2-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.34 = "LAG-2-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.35 = "LAG-2-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.36 = "LAG-2-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.37 = "USR-1" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.38 = "USR-2" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.39 = "USR-3" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.40 = "USR-4" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.41 = "USR-5" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.42 = "USR-6" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.43 = "USR-7" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.44 = "USR-8" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.45 = "USR-9" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.46 = "USR-10" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.47 = "USR-11" +.1.3.6.1.4.1.22420.2.21.1.1.1.2.48 = "USR-12" +.1.3.6.1.4.1.22420.2.21.1.1.1.3.1 = 7014911 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.13 = 9214906 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.3.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.1 = 7308889290 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.13 = 7509661926 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.4.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.1 = 3019843 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.13 = 3663974 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.5.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.1 = 3125030629 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.13 = 4257941434 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.6.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.1 = 1429687 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.13 = 10441 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.7.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.1 = 2165339780 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.13 = 15588278 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.8.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.1 = 1063300 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.13 = 53507 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.9.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.1 = 1610461395 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.13 = 79915650 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.10.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.1 = 3700 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.13 = 2127 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.11.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.1 = 5602774 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.13 = 3177738 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.12.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.1 = 2769 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.13 = 11285 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.13.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.1 = 4193588 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.13 = 16857358 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.14.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.1 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.13 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.15.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.1 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.13 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.16.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.1 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.13 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.17.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.1 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.13 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.18.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.1 = 12527741 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.13 = 12942828 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.19.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.1 = 14209721094 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.13 = 11863107288 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.20.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.1 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.13 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.21.48 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.1 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.2 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.3 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.4 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.5 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.6 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.7 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.8 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.9 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.10 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.11 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.12 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.13 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.14 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.15 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.16 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.17 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.18 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.19 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.20 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.21 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.22 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.23 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.24 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.25 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.26 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.27 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.28 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.29 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.30 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.31 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.32 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.33 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.34 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.35 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.36 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.37 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.38 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.39 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.40 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.41 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.42 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.43 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.44 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.45 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.46 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.47 = 0 +.1.3.6.1.4.1.22420.2.21.1.1.1.22.48 = 0 +.1.3.111.2.802.1.1.8.1.5.1.0 = 9 +.1.3.111.2.802.1.1.8.1.5.2.1.2.1 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.2 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.3 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.4 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.5 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.6 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.7 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.2.8 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.3.1 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 30 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.2 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 31 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.3 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 32 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.4 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 33 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.5 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 34 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.6 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.7 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 36 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.3.8 = "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 37 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 " +.1.3.111.2.802.1.1.8.1.5.2.1.4.1 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.4.2 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.4.3 = 2 +.1.3.111.2.802.1.1.8.1.5.2.1.4.4 = 3 +.1.3.111.2.802.1.1.8.1.5.2.1.4.5 = 4 +.1.3.111.2.802.1.1.8.1.5.2.1.4.6 = 5 +.1.3.111.2.802.1.1.8.1.5.2.1.4.7 = 6 +.1.3.111.2.802.1.1.8.1.5.2.1.4.8 = 7 +.1.3.111.2.802.1.1.8.1.5.2.1.5.1 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.2 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.3 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.4 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.5 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.6 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.7 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.5.8 = 0 +.1.3.111.2.802.1.1.8.1.5.2.1.6.1 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.2 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.3 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.4 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.5 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.6 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.7 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.6.8 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.1 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.2 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.3 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.4 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.5 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.6 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.7 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.7.8 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.1 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.2 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.3 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.4 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.5 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.6 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.7 = 1 +.1.3.111.2.802.1.1.8.1.5.2.1.8.8 = 1 +.1.3.111.2.802.1.1.13.1.1.9.1.2.1 = "01 80 C2 00 00 0E " +.1.3.111.2.802.1.1.13.1.2.1.0 = 15:18:20:13.08 +.1.3.111.2.802.1.1.13.1.2.2.0 = 28 +.1.3.111.2.802.1.1.13.1.2.3.0 = 27 +.1.3.111.2.802.1.1.13.1.2.4.0 = 0 +.1.3.111.2.802.1.1.13.1.2.5.0 = 27 +.1.3.111.2.802.1.1.13.1.2.6.1.3.1.1 = 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.2.1 = 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.3.1 = 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.4.1 = 3011688 +.1.3.111.2.802.1.1.13.1.2.6.1.3.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.1.1 = 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.2.1 = 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.3.1 = 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.4.1 = 0 +.1.3.111.2.802.1.1.13.1.2.6.1.4.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.1.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.2.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.3.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.4.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.3.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.1.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.2.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.3.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.4.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.4.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.5.1.1 = 1333527 +.1.3.111.2.802.1.1.13.1.2.7.1.5.2.1 = 754988 +.1.3.111.2.802.1.1.13.1.2.7.1.5.3.1 = 1854347 +.1.3.111.2.802.1.1.13.1.2.7.1.5.4.1 = 2381333 +.1.3.111.2.802.1.1.13.1.2.7.1.5.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.1.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.2.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.3.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.4.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.6.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.1.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.2.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.3.1 = 12 +.1.3.111.2.802.1.1.13.1.2.7.1.7.4.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.7.5.1 = 0 +.1.3.111.2.802.1.1.13.1.2.7.1.8.1.1 = 12 +.1.3.111.2.802.1.1.13.1.2.7.1.8.2.1 = 12 +.1.3.111.2.802.1.1.13.1.2.7.1.8.3.1 = 2 +.1.3.111.2.802.1.1.13.1.2.7.1.8.4.1 = 1 +.1.3.111.2.802.1.1.13.1.2.7.1.8.5.1 = 0 +.1.3.111.2.802.1.1.13.1.4.1.1.5.105317634.1.1.2 = 4 +.1.3.111.2.802.1.1.13.1.4.1.1.6.105317634.1.1.2 = "9C E1 76 13 80 D9 " +.1.3.111.2.802.1.1.13.1.4.1.1.7.105317634.1.1.2 = 5 +.1.3.111.2.802.1.1.13.1.4.1.1.8.105317634.1.1.2 = "GigabitEthernet0/0/0/0" +.1.3.111.2.802.1.1.13.1.4.1.1.9.105317634.1.1.2 = "" +.1.3.111.2.802.1.1.13.1.4.1.1.10.105317634.1.1.2 = "LNBT-NCS-55A2-001.gilarivertel." +.1.3.111.2.802.1.1.13.1.4.1.1.11.105317634.1.1.2 = " 7.5.2, NCS-5500" +.1.3.111.2.802.1.1.13.1.4.1.1.14.105317634.1.1.2 = 2 +.1.3.111.2.802.1.1.13.1.4.1.1.15.105317634.1.1.2 = 2 +.1.3.111.2.802.1.1.13.1.4.2.1.3.105317634.1.1.2.1.4.10.10.20.160 = 2 +.1.3.111.2.802.1.1.13.1.4.2.1.3.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54 = 2 +.1.3.111.2.802.1.1.13.1.4.2.1.4.105317634.1.1.2.1.4.10.10.20.160 = 68 +.1.3.111.2.802.1.1.13.1.4.2.1.4.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54 = 68 +.1.3.111.2.802.1.1.13.1.4.2.1.5.105317634.1.1.2.1.4.10.10.20.160 = .0.0.0 +.1.3.111.2.802.1.1.13.1.4.2.1.5.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54 = .0.0.0 +.1.3.111.2.802.1.1.13.1.4.2.1.5.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54 = No more variables left in this MIB View (It is past the end of the MIB tree) diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_walk_monitoring.json b/walks/10-13-60-102_2026-02-27_11-23-07_walk_monitoring.json new file mode 100644 index 0000000..b320185 --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-23-07_walk_monitoring.json @@ -0,0 +1,11601 @@ +{ + "device": { + "sysDescr": "AMN-1000-GT-S", + "sysUpTime": "0:0:41:41.00", + "sysContact": "root", + "sysName": "LABNID-NID12-DC-MTSO-Pri.alluvion.net", + "sysLocation": "Unknown", + "commercialName": "AMN-1000-GT-S", + "macBaseAddr": "00:15:AD:47:3E:60", + "identifier": "NID12-DC-MTSO-Pri", + "firmwareVersion": "AMT_7.9.1_23673", + "hardwareVersion": "619-2179:20:23:14", + "serialNumber": "G419-2495", + "hardwareOptions": "Dry-contact Input", + "cpuUsageCurrent": "12", + "cpuUsageAvg15s": "14", + "cpuUsageAvg30s": "15", + "cpuUsageAvg60s": "15", + "cpuUsageAvg900s": "5", + "uptimeSeconds": "90350370" + }, + "interfaces": { + "1": { + "ifDescr": "EVEN_VLAN_UPLINK", + "ifType": "ethernetCsmacd", + "ifMtu": "4096", + "ifSpeed": "1000000000", + "ifPhysAddress": "0:15:ad:47:3e:61", + "ifAdminStatus": "up", + "ifOperStatus": "up", + "ifInOctets": "4223389593", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "2365165170", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "EVEN_VLAN_UPLINK", + "ifHCInOctets": "12813324665", + "ifHCOutOctets": "15250068986", + "ifHighSpeed": "1000" + }, + "2": { + "ifDescr": "ODD_VLAN_UPLINK", + "ifType": "ethernetCsmacd", + "ifMtu": "4096", + "ifSpeed": "0", + "ifPhysAddress": "0:15:ad:47:3e:62", + "ifAdminStatus": "up", + "ifOperStatus": "down", + "ifInOctets": "135053161", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "110445216", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "ODD_VLAN_UPLINK", + "ifHCInOctets": "135053161", + "ifHCOutOctets": "110445216", + "ifHighSpeed": "0" + }, + "3": { + "ifDescr": "EVEN_VLAN_DOWNLIN", + "ifType": "ethernetCsmacd", + "ifMtu": "2000", + "ifSpeed": "0", + "ifPhysAddress": "0:15:ad:47:3e:63", + "ifAdminStatus": "up", + "ifOperStatus": "down", + "ifInOctets": "2194071425", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "3499102118", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "EVEN_VLAN_DOWNLIN", + "ifHCInOctets": "15078973313", + "ifHCOutOctets": "12089036710", + "ifHighSpeed": "0" + }, + "4": { + "ifDescr": "ODD_VLAN_DOWNLINK", + "ifType": "ethernetCsmacd", + "ifMtu": "4096", + "ifSpeed": "0", + "ifPhysAddress": "0:15:ad:47:3e:64", + "ifAdminStatus": "up", + "ifOperStatus": "down", + "ifInOctets": "314336220", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "354824130", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "ODD_VLAN_DOWNLINK", + "ifHCInOctets": "314336220", + "ifHCOutOctets": "354824130", + "ifHighSpeed": "0" + }, + "5": { + "ifDescr": "Management", + "ifType": "ethernetCsmacd", + "ifMtu": "2000", + "ifSpeed": "100000000", + "ifPhysAddress": "0:15:ad:47:3e:65", + "ifAdminStatus": "up", + "ifOperStatus": "up", + "ifInOctets": "3877078151", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "1386639353", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "Management", + "ifHCInOctets": "132727052162", + "ifHCOutOctets": "1387157336", + "ifHighSpeed": "100" + }, + "6": { + "ifDescr": "LAG-1", + "ifType": "ethernetCsmacd", + "ifMtu": "10240", + "ifSpeed": "0", + "ifPhysAddress": "0:15:ad:47:3e:61", + "ifAdminStatus": "up", + "ifOperStatus": "down", + "ifInOctets": "0", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "0", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "LAG-1", + "ifHCInOctets": "0", + "ifHCOutOctets": "0", + "ifHighSpeed": "0" + }, + "7": { + "ifDescr": "LAG-2", + "ifType": "ethernetCsmacd", + "ifMtu": "10240", + "ifSpeed": "0", + "ifPhysAddress": "0:15:ad:47:3e:63", + "ifAdminStatus": "up", + "ifOperStatus": "down", + "ifInOctets": "0", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "0", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "LAG-2", + "ifHCInOctets": "0", + "ifHCOutOctets": "0", + "ifHighSpeed": "0" + }, + "1003": { + "ifDescr": "VLAN_MGMT", + "ifType": "ethernetCsmacd", + "ifMtu": "2000", + "ifSpeed": "0", + "ifPhysAddress": "0:15:ad:47:3e:65", + "ifAdminStatus": "up", + "ifOperStatus": "up", + "ifInOctets": "0", + "ifInDiscards": "0", + "ifInErrors": "0", + "ifOutOctets": "0", + "ifOutDiscards": "0", + "ifOutErrors": "0", + "ifName": "VLAN_MGMT", + "ifHCInOctets": "0", + "ifHCOutOctets": "0", + "ifHighSpeed": "0" + } + }, + "connectors": { + "1": { + "id": "1", + "name": "SFP-1", + "type": "14", + "poeSupport": "2" + }, + "2": { + "id": "2", + "name": "SFP-2", + "type": "14", + "poeSupport": "2" + }, + "3": { + "id": "3", + "name": "SFP-3", + "type": "14", + "poeSupport": "2" + }, + "4": { + "id": "4", + "name": "SFP-4", + "type": "14", + "poeSupport": "2" + }, + "5": { + "id": "5", + "name": "Management", + "type": "2", + "poeSupport": "2" + } + }, + "power_supplies": { + "2": { + "id": "2", + "name": "Feed A", + "type": "2", + "present": "1" + }, + "3": { + "id": "3", + "name": "Feed B", + "type": "2", + "present": "2" + } + }, + "temperature_sensors": { + "1": { + "currentTemp": "44", + "highThreshold": "85", + "highAlarmEnabled": "2", + "criticalThreshold": "90", + "criticalAlarmEnabled": "2", + "label": "Sensor 1" + }, + "2": { + "currentTemp": "34", + "highThreshold": "85", + "highAlarmEnabled": "2", + "criticalThreshold": "90", + "criticalAlarmEnabled": "2", + "label": "Sensor 2" + } + }, + "sfp_info": { + "1": { + "connectorIdx": "1", + "connectorType": "7", + "vendor": "OEM", + "vendorOui": "00 00 00", + "vendorPn": "SFP-LX-SM", + "vendorRev": "1.0 NCI50L085", + "wavelength": "1310", + "serialNum": "NCI50L0853", + "mfgYear": "2009", + "mfgMonth": "10", + "mfgDay": "1", + "lot": "0", + "rev8472": "0", + "present": "1", + "diagCapable": "2", + "internalCal": "2", + "alarmCapable": "2", + "idType": "3", + "extIdType": "4", + "transCode": "00 00 00 02 12 00 0D 01" + }, + "3": { + "connectorIdx": "3", + "connectorType": "128", + "vendor": "PROLABS", + "vendorOui": "00 00 00", + "vendorPn": "SFP-1000BASE-T-C", + "vendorRev": "A2 PRL940039", + "wavelength": "0", + "serialNum": "PRL940039251", + "mfgYear": "2021", + "mfgMonth": "8", + "mfgDay": "16", + "lot": "0", + "rev8472": "0", + "present": "1", + "diagCapable": "2", + "internalCal": "2", + "alarmCapable": "2", + "idType": "3", + "extIdType": "4", + "transCode": "00 00 00 08 00 00 00 00" + } + }, + "sfp_diagnostics": { + "1": { + "connectorIdx": "1", + "temperature": "0", + "supplyVoltage": "0", + "laserBiasCurrent": "0", + "txPower_uW": "0", + "rxPower_uW": "0", + "txPower_dBm": "-inf dBm", + "rxPower_dBm": "-inf dBm" + }, + "3": { + "connectorIdx": "3", + "temperature": "0", + "supplyVoltage": "0", + "laserBiasCurrent": "0", + "txPower_uW": "0", + "rxPower_uW": "0", + "txPower_dBm": "-inf dBm", + "rxPower_dBm": "-inf dBm" + } + }, + "sfp_thresholds": { + "1": { + "connectorIdx": "1", + "tempHighAlarm": "0", + "tempLowAlarm": "0", + "tempHighWarn": "0", + "tempLowWarn": "0", + "vccHighAlarm": "0", + "vccLowAlarm": "0", + "vccHighWarn": "0", + "vccLowWarn": "0", + "lbcHighAlarm": "0", + "lbcLowAlarm": "0", + "lbcHighWarn": "0", + "lbcLowWarn": "0", + "txPwrHighAlarm": "0", + "txPwrLowAlarm": "0", + "txPwrHighWarn": "0", + "txPwrLowWarn": "0", + "rxPwrHighAlarm": "0", + "rxPwrLowAlarm": "0", + "rxPwrHighWarn": "0", + "rxPwrLowWarn": "0", + "txPwrHighAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "txPwrLowAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "txPwrHighWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "txPwrLowWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrHighAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrLowAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrHighWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrLowWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A" + }, + "3": { + "connectorIdx": "3", + "tempHighAlarm": "0", + "tempLowAlarm": "0", + "tempHighWarn": "0", + "tempLowWarn": "0", + "vccHighAlarm": "0", + "vccLowAlarm": "0", + "vccHighWarn": "0", + "vccLowWarn": "0", + "lbcHighAlarm": "0", + "lbcLowAlarm": "0", + "lbcHighWarn": "0", + "lbcLowWarn": "0", + "txPwrHighAlarm": "0", + "txPwrLowAlarm": "0", + "txPwrHighWarn": "0", + "txPwrLowWarn": "0", + "rxPwrHighAlarm": "0", + "rxPwrLowAlarm": "0", + "rxPwrHighWarn": "0", + "rxPwrLowWarn": "0", + "txPwrHighAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "txPwrLowAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "txPwrHighWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "txPwrLowWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrHighAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrLowAlarm_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrHighWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A", + "rxPwrLowWarn_dBm": "2D 69 6E 00 20 64 42 6D 0A" + } + }, + "alarm_config": { + "1": { + "id": "1", + "number": "8000001", + "description": "First overheat threshold", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0000.01", + "conditionType": "TEMP-HIGH-WN", + "amoType": "ENV.TEMP", + "on": "0" + }, + "2": { + "id": "2", + "number": "8000002", + "description": "Second overheat threshold", + "enabled": "1", + "severity": "3", + "serviceAffecting": "2", + "extNumber": "8.0000.02", + "conditionType": "TEMP-HIGH-ALM", + "amoType": "ENV.TEMP", + "on": "0" + }, + "3": { + "id": "3", + "number": "8000004", + "description": "No power supply on feed A", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0000.04", + "conditionType": "PWR-LOSS", + "amoType": "ENV.PWR-FEEDA", + "on": "0" + }, + "4": { + "id": "4", + "number": "8000005", + "description": "No power supply on feed B", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0000.05", + "conditionType": "PWR-LOSS", + "amoType": "ENV.PWR-FEEDB", + "on": "0" + }, + "5": { + "id": "5", + "number": "8000101", + "description": "First overheat threshold", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0001.01", + "conditionType": "TEMP-HIGH-WN", + "amoType": "ENV.TEMP", + "on": "0" + }, + "6": { + "id": "6", + "number": "8000102", + "description": "Second overheat threshold", + "enabled": "1", + "severity": "3", + "serviceAffecting": "2", + "extNumber": "8.0001.02", + "conditionType": "TEMP-HIGH-ALM", + "amoType": "ENV.TEMP", + "on": "0" + }, + "7": { + "id": "7", + "number": "8000040", + "description": "Fan 1 slow", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0000.40", + "conditionType": "FAN-SLOW", + "amoType": "ENV.FAN-SLOW", + "on": "0" + }, + "8": { + "id": "8", + "number": "8000041", + "description": "Fan 1 failure", + "enabled": "1", + "severity": "3", + "serviceAffecting": "2", + "extNumber": "8.0000.41", + "conditionType": "FAN-FAILURE", + "amoType": "ENV.FAN-FAILURE", + "on": "0" + }, + "9": { + "id": "9", + "number": "8000140", + "description": "Fan 2 slow", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0001.40", + "conditionType": "FAN-SLOW", + "amoType": "ENV.FAN-SLOW", + "on": "0" + }, + "10": { + "id": "10", + "number": "8000141", + "description": "Fan 2 failure", + "enabled": "1", + "severity": "3", + "serviceAffecting": "2", + "extNumber": "8.0001.41", + "conditionType": "FAN-FAILURE", + "amoType": "ENV.FAN-FAILURE", + "on": "0" + }, + "11": { + "id": "11", + "number": "2000101", + "description": "SFP-1 temperature high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.01", + "conditionType": "TEMP-HIGH-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "12": { + "id": "12", + "number": "2000102", + "description": "SFP-1 temperature low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.02", + "conditionType": "TEMP-LOW-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "13": { + "id": "13", + "number": "2000103", + "description": "SFP-1 temperature high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.03", + "conditionType": "TEMP-HIGH-WN", + "amoType": "SFP.1", + "on": "0" + }, + "14": { + "id": "14", + "number": "2000104", + "description": "SFP-1 temperature low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.04", + "conditionType": "TEMP-LOW-WN", + "amoType": "SFP.1", + "on": "0" + }, + "15": { + "id": "15", + "number": "2000105", + "description": "SFP-1 supply voltage high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.05", + "conditionType": "VCC-HIGH-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "16": { + "id": "16", + "number": "2000106", + "description": "SFP-1 supply voltage low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.06", + "conditionType": "VCC-LOW-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "17": { + "id": "17", + "number": "2000107", + "description": "SFP-1 supply voltage high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.07", + "conditionType": "VCC-HIGH-WN", + "amoType": "SFP.1", + "on": "0" + }, + "18": { + "id": "18", + "number": "2000108", + "description": "SFP-1 supply voltage low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.08", + "conditionType": "VCC-LOW-WN", + "amoType": "SFP.1", + "on": "0" + }, + "19": { + "id": "19", + "number": "2000109", + "description": "SFP-1 laser bias current high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.09", + "conditionType": "LBC-HIGH-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "20": { + "id": "20", + "number": "2000110", + "description": "SFP-1 laser bias current low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.10", + "conditionType": "LBC-LOW-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "21": { + "id": "21", + "number": "2000111", + "description": "SFP-1 laser bias current high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.11", + "conditionType": "LBC-HIGH-WN", + "amoType": "SFP.1", + "on": "0" + }, + "22": { + "id": "22", + "number": "2000112", + "description": "SFP-1 laser bias current low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.12", + "conditionType": "LBC-LOW-WN", + "amoType": "SFP.1", + "on": "0" + }, + "23": { + "id": "23", + "number": "2000113", + "description": "SFP-1 transmit power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.13", + "conditionType": "TX-PWR-HIGH-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "24": { + "id": "24", + "number": "2000114", + "description": "SFP-1 transmit power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.14", + "conditionType": "TX-PWR-LOW-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "25": { + "id": "25", + "number": "2000115", + "description": "SFP-1 transmit power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.15", + "conditionType": "TX-PWR-HIGH-WN", + "amoType": "SFP.1", + "on": "0" + }, + "26": { + "id": "26", + "number": "2000116", + "description": "SFP-1 transmit power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.16", + "conditionType": "TX-PWR-LOW-WN", + "amoType": "SFP.1", + "on": "0" + }, + "27": { + "id": "27", + "number": "2000117", + "description": "SFP-1 receive power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.17", + "conditionType": "RX-PWR-HIGH-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "28": { + "id": "28", + "number": "2000118", + "description": "SFP-1 receive power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.18", + "conditionType": "RX-PWR-LOW-ALM", + "amoType": "SFP.1", + "on": "0" + }, + "29": { + "id": "29", + "number": "2000119", + "description": "SFP-1 receive power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.19", + "conditionType": "RX-PWR-HIGH-WN", + "amoType": "SFP.1", + "on": "0" + }, + "30": { + "id": "30", + "number": "2000120", + "description": "SFP-1 receive power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0001.20", + "conditionType": "RX-PWR-LOW-WN", + "amoType": "SFP.1", + "on": "0" + }, + "31": { + "id": "31", + "number": "2000121", + "description": "SFP-1 not present", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0001.21", + "conditionType": "MOD-NOT-PRESENT", + "amoType": "SFP.1", + "on": "0" + }, + "32": { + "id": "32", + "number": "2000201", + "description": "SFP-2 temperature high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.01", + "conditionType": "TEMP-HIGH-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "33": { + "id": "33", + "number": "2000202", + "description": "SFP-2 temperature low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.02", + "conditionType": "TEMP-LOW-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "34": { + "id": "34", + "number": "2000203", + "description": "SFP-2 temperature high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.03", + "conditionType": "TEMP-HIGH-WN", + "amoType": "SFP.2", + "on": "0" + }, + "35": { + "id": "35", + "number": "2000204", + "description": "SFP-2 temperature low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.04", + "conditionType": "TEMP-LOW-WN", + "amoType": "SFP.2", + "on": "0" + }, + "36": { + "id": "36", + "number": "2000205", + "description": "SFP-2 supply voltage high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.05", + "conditionType": "VCC-HIGH-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "37": { + "id": "37", + "number": "2000206", + "description": "SFP-2 supply voltage low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.06", + "conditionType": "VCC-LOW-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "38": { + "id": "38", + "number": "2000207", + "description": "SFP-2 supply voltage high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.07", + "conditionType": "VCC-HIGH-WN", + "amoType": "SFP.2", + "on": "0" + }, + "39": { + "id": "39", + "number": "2000208", + "description": "SFP-2 supply voltage low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.08", + "conditionType": "VCC-LOW-WN", + "amoType": "SFP.2", + "on": "0" + }, + "40": { + "id": "40", + "number": "2000209", + "description": "SFP-2 laser bias current high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.09", + "conditionType": "LBC-HIGH-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "41": { + "id": "41", + "number": "2000210", + "description": "SFP-2 laser bias current low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.10", + "conditionType": "LBC-LOW-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "42": { + "id": "42", + "number": "2000211", + "description": "SFP-2 laser bias current high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.11", + "conditionType": "LBC-HIGH-WN", + "amoType": "SFP.2", + "on": "0" + }, + "43": { + "id": "43", + "number": "2000212", + "description": "SFP-2 laser bias current low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.12", + "conditionType": "LBC-LOW-WN", + "amoType": "SFP.2", + "on": "0" + }, + "44": { + "id": "44", + "number": "2000213", + "description": "SFP-2 transmit power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.13", + "conditionType": "TX-PWR-HIGH-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "45": { + "id": "45", + "number": "2000214", + "description": "SFP-2 transmit power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.14", + "conditionType": "TX-PWR-LOW-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "46": { + "id": "46", + "number": "2000215", + "description": "SFP-2 transmit power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.15", + "conditionType": "TX-PWR-HIGH-WN", + "amoType": "SFP.2", + "on": "0" + }, + "47": { + "id": "47", + "number": "2000216", + "description": "SFP-2 transmit power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.16", + "conditionType": "TX-PWR-LOW-WN", + "amoType": "SFP.2", + "on": "0" + }, + "48": { + "id": "48", + "number": "2000217", + "description": "SFP-2 receive power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.17", + "conditionType": "RX-PWR-HIGH-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "49": { + "id": "49", + "number": "2000218", + "description": "SFP-2 receive power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.18", + "conditionType": "RX-PWR-LOW-ALM", + "amoType": "SFP.2", + "on": "0" + }, + "50": { + "id": "50", + "number": "2000219", + "description": "SFP-2 receive power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.19", + "conditionType": "RX-PWR-HIGH-WN", + "amoType": "SFP.2", + "on": "0" + }, + "51": { + "id": "51", + "number": "2000220", + "description": "SFP-2 receive power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0002.20", + "conditionType": "RX-PWR-LOW-WN", + "amoType": "SFP.2", + "on": "0" + }, + "52": { + "id": "52", + "number": "2000221", + "description": "SFP-2 not present", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0002.21", + "conditionType": "MOD-NOT-PRESENT", + "amoType": "SFP.2", + "on": "0" + }, + "53": { + "id": "53", + "number": "2000301", + "description": "SFP-3 temperature high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.01", + "conditionType": "TEMP-HIGH-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "54": { + "id": "54", + "number": "2000302", + "description": "SFP-3 temperature low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.02", + "conditionType": "TEMP-LOW-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "55": { + "id": "55", + "number": "2000303", + "description": "SFP-3 temperature high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.03", + "conditionType": "TEMP-HIGH-WN", + "amoType": "SFP.3", + "on": "0" + }, + "56": { + "id": "56", + "number": "2000304", + "description": "SFP-3 temperature low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.04", + "conditionType": "TEMP-LOW-WN", + "amoType": "SFP.3", + "on": "0" + }, + "57": { + "id": "57", + "number": "2000305", + "description": "SFP-3 supply voltage high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.05", + "conditionType": "VCC-HIGH-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "58": { + "id": "58", + "number": "2000306", + "description": "SFP-3 supply voltage low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.06", + "conditionType": "VCC-LOW-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "59": { + "id": "59", + "number": "2000307", + "description": "SFP-3 supply voltage high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.07", + "conditionType": "VCC-HIGH-WN", + "amoType": "SFP.3", + "on": "0" + }, + "60": { + "id": "60", + "number": "2000308", + "description": "SFP-3 supply voltage low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.08", + "conditionType": "VCC-LOW-WN", + "amoType": "SFP.3", + "on": "0" + }, + "61": { + "id": "61", + "number": "2000309", + "description": "SFP-3 laser bias current high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.09", + "conditionType": "LBC-HIGH-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "62": { + "id": "62", + "number": "2000310", + "description": "SFP-3 laser bias current low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.10", + "conditionType": "LBC-LOW-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "63": { + "id": "63", + "number": "2000311", + "description": "SFP-3 laser bias current high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.11", + "conditionType": "LBC-HIGH-WN", + "amoType": "SFP.3", + "on": "0" + }, + "64": { + "id": "64", + "number": "2000312", + "description": "SFP-3 laser bias current low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.12", + "conditionType": "LBC-LOW-WN", + "amoType": "SFP.3", + "on": "0" + }, + "65": { + "id": "65", + "number": "2000313", + "description": "SFP-3 transmit power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.13", + "conditionType": "TX-PWR-HIGH-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "66": { + "id": "66", + "number": "2000314", + "description": "SFP-3 transmit power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.14", + "conditionType": "TX-PWR-LOW-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "67": { + "id": "67", + "number": "2000315", + "description": "SFP-3 transmit power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.15", + "conditionType": "TX-PWR-HIGH-WN", + "amoType": "SFP.3", + "on": "0" + }, + "68": { + "id": "68", + "number": "2000316", + "description": "SFP-3 transmit power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.16", + "conditionType": "TX-PWR-LOW-WN", + "amoType": "SFP.3", + "on": "0" + }, + "69": { + "id": "69", + "number": "2000317", + "description": "SFP-3 receive power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.17", + "conditionType": "RX-PWR-HIGH-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "70": { + "id": "70", + "number": "2000318", + "description": "SFP-3 receive power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.18", + "conditionType": "RX-PWR-LOW-ALM", + "amoType": "SFP.3", + "on": "0" + }, + "71": { + "id": "71", + "number": "2000319", + "description": "SFP-3 receive power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.19", + "conditionType": "RX-PWR-HIGH-WN", + "amoType": "SFP.3", + "on": "0" + }, + "72": { + "id": "72", + "number": "2000320", + "description": "SFP-3 receive power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0003.20", + "conditionType": "RX-PWR-LOW-WN", + "amoType": "SFP.3", + "on": "0" + }, + "73": { + "id": "73", + "number": "2000321", + "description": "SFP-3 not present", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0003.21", + "conditionType": "MOD-NOT-PRESENT", + "amoType": "SFP.3", + "on": "0" + }, + "74": { + "id": "74", + "number": "2000401", + "description": "SFP-4 temperature high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.01", + "conditionType": "TEMP-HIGH-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "75": { + "id": "75", + "number": "2000402", + "description": "SFP-4 temperature low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.02", + "conditionType": "TEMP-LOW-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "76": { + "id": "76", + "number": "2000403", + "description": "SFP-4 temperature high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.03", + "conditionType": "TEMP-HIGH-WN", + "amoType": "SFP.4", + "on": "0" + }, + "77": { + "id": "77", + "number": "2000404", + "description": "SFP-4 temperature low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.04", + "conditionType": "TEMP-LOW-WN", + "amoType": "SFP.4", + "on": "0" + }, + "78": { + "id": "78", + "number": "2000405", + "description": "SFP-4 supply voltage high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.05", + "conditionType": "VCC-HIGH-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "79": { + "id": "79", + "number": "2000406", + "description": "SFP-4 supply voltage low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.06", + "conditionType": "VCC-LOW-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "80": { + "id": "80", + "number": "2000407", + "description": "SFP-4 supply voltage high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.07", + "conditionType": "VCC-HIGH-WN", + "amoType": "SFP.4", + "on": "0" + }, + "81": { + "id": "81", + "number": "2000408", + "description": "SFP-4 supply voltage low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.08", + "conditionType": "VCC-LOW-WN", + "amoType": "SFP.4", + "on": "0" + }, + "82": { + "id": "82", + "number": "2000409", + "description": "SFP-4 laser bias current high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.09", + "conditionType": "LBC-HIGH-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "83": { + "id": "83", + "number": "2000410", + "description": "SFP-4 laser bias current low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.10", + "conditionType": "LBC-LOW-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "84": { + "id": "84", + "number": "2000411", + "description": "SFP-4 laser bias current high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.11", + "conditionType": "LBC-HIGH-WN", + "amoType": "SFP.4", + "on": "0" + }, + "85": { + "id": "85", + "number": "2000412", + "description": "SFP-4 laser bias current low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.12", + "conditionType": "LBC-LOW-WN", + "amoType": "SFP.4", + "on": "0" + }, + "86": { + "id": "86", + "number": "2000413", + "description": "SFP-4 transmit power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.13", + "conditionType": "TX-PWR-HIGH-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "87": { + "id": "87", + "number": "2000414", + "description": "SFP-4 transmit power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.14", + "conditionType": "TX-PWR-LOW-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "88": { + "id": "88", + "number": "2000415", + "description": "SFP-4 transmit power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.15", + "conditionType": "TX-PWR-HIGH-WN", + "amoType": "SFP.4", + "on": "0" + }, + "89": { + "id": "89", + "number": "2000416", + "description": "SFP-4 transmit power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.16", + "conditionType": "TX-PWR-LOW-WN", + "amoType": "SFP.4", + "on": "0" + }, + "90": { + "id": "90", + "number": "2000417", + "description": "SFP-4 receive power high alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.17", + "conditionType": "RX-PWR-HIGH-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "91": { + "id": "91", + "number": "2000418", + "description": "SFP-4 receive power low alarm", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.18", + "conditionType": "RX-PWR-LOW-ALM", + "amoType": "SFP.4", + "on": "0" + }, + "92": { + "id": "92", + "number": "2000419", + "description": "SFP-4 receive power high warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.19", + "conditionType": "RX-PWR-HIGH-WN", + "amoType": "SFP.4", + "on": "0" + }, + "93": { + "id": "93", + "number": "2000420", + "description": "SFP-4 receive power low warning", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "2.0004.20", + "conditionType": "RX-PWR-LOW-WN", + "amoType": "SFP.4", + "on": "0" + }, + "94": { + "id": "94", + "number": "2000421", + "description": "SFP-4 not present", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "2.0004.21", + "conditionType": "MOD-NOT-PRESENT", + "amoType": "SFP.4", + "on": "0" + }, + "95": { + "id": "95", + "number": "1000101", + "description": "Link down on EVEN_VLAN_UPLINK port", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0001.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.EVEN_VLAN_UPLINK", + "on": "0" + }, + "96": { + "id": "96", + "number": "1000102", + "description": "Loopback on port EVEN_VLAN_UPLINK", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "1.0001.02", + "conditionType": "OAM-LOOPBACK", + "amoType": "PORT.EVEN_VLAN_UPLINK", + "on": "0" + }, + "97": { + "id": "97", + "number": "1000104", + "description": "Fault propagation caused link down on port EVEN_VLAN_UPLINK", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0001.04", + "conditionType": "LINK-DOWN-FP", + "amoType": "PORT.EVEN_VLAN_UPLINK", + "on": "0" + }, + "98": { + "id": "98", + "number": "1000107", + "description": "SA caused link down on port EVEN_VLAN_UPLINK", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0001.07", + "conditionType": "LINK-DOWN-SA", + "amoType": "PORT.EVEN_VLAN_UPLINK", + "on": "0" + }, + "99": { + "id": "99", + "number": "1000201", + "description": "Link down on ODD_VLAN_UPLINK port", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0002.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.ODD_VLAN_UPLINK", + "on": "0" + }, + "100": { + "id": "100", + "number": "1000202", + "description": "Loopback on port ODD_VLAN_UPLINK", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "1.0002.02", + "conditionType": "OAM-LOOPBACK", + "amoType": "PORT.ODD_VLAN_UPLINK", + "on": "0" + }, + "101": { + "id": "101", + "number": "1000204", + "description": "Fault propagation caused link down on port ODD_VLAN_UPLINK", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0002.04", + "conditionType": "LINK-DOWN-FP", + "amoType": "PORT.ODD_VLAN_UPLINK", + "on": "0" + }, + "102": { + "id": "102", + "number": "1000207", + "description": "SA caused link down on port ODD_VLAN_UPLINK", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0002.07", + "conditionType": "LINK-DOWN-SA", + "amoType": "PORT.ODD_VLAN_UPLINK", + "on": "0" + }, + "103": { + "id": "103", + "number": "1000301", + "description": "Link down on EVEN_VLAN_DOWNLIN port", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0003.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.EVEN_VLAN_DOWNLIN", + "on": "0" + }, + "104": { + "id": "104", + "number": "1000302", + "description": "Loopback on port EVEN_VLAN_DOWNLIN", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "1.0003.02", + "conditionType": "OAM-LOOPBACK", + "amoType": "PORT.EVEN_VLAN_DOWNLIN", + "on": "0" + }, + "105": { + "id": "105", + "number": "1000304", + "description": "Fault propagation caused link down on port EVEN_VLAN_DOWNLIN", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0003.04", + "conditionType": "LINK-DOWN-FP", + "amoType": "PORT.EVEN_VLAN_DOWNLIN", + "on": "0" + }, + "106": { + "id": "106", + "number": "1000307", + "description": "SA caused link down on port EVEN_VLAN_DOWNLIN", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0003.07", + "conditionType": "LINK-DOWN-SA", + "amoType": "PORT.EVEN_VLAN_DOWNLIN", + "on": "0" + }, + "107": { + "id": "107", + "number": "1000401", + "description": "Link down on ODD_VLAN_DOWNLINK port", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0004.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.ODD_VLAN_DOWNLINK", + "on": "0" + }, + "108": { + "id": "108", + "number": "1000402", + "description": "Loopback on port ODD_VLAN_DOWNLINK", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "1.0004.02", + "conditionType": "OAM-LOOPBACK", + "amoType": "PORT.ODD_VLAN_DOWNLINK", + "on": "0" + }, + "109": { + "id": "109", + "number": "1000404", + "description": "Fault propagation caused link down on port ODD_VLAN_DOWNLINK", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0004.04", + "conditionType": "LINK-DOWN-FP", + "amoType": "PORT.ODD_VLAN_DOWNLINK", + "on": "0" + }, + "110": { + "id": "110", + "number": "1000407", + "description": "SA caused link down on port ODD_VLAN_DOWNLINK", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0004.07", + "conditionType": "LINK-DOWN-SA", + "amoType": "PORT.ODD_VLAN_DOWNLINK", + "on": "0" + }, + "111": { + "id": "111", + "number": "1000501", + "description": "Link down on Management port", + "enabled": "2", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0005.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.Management", + "on": "0" + }, + "112": { + "id": "112", + "number": "1000601", + "description": "Link down on LAG-1 port", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0006.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.LAG-1", + "on": "0" + }, + "113": { + "id": "113", + "number": "1000602", + "description": "Loopback on port LAG-1", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "1.0006.02", + "conditionType": "OAM-LOOPBACK", + "amoType": "PORT.LAG-1", + "on": "0" + }, + "114": { + "id": "114", + "number": "1000604", + "description": "Fault propagation caused link down on port LAG-1", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0006.04", + "conditionType": "LINK-DOWN-FP", + "amoType": "PORT.LAG-1", + "on": "0" + }, + "115": { + "id": "115", + "number": "1000603", + "description": "Sub-port speed mismatch on port LAG-1", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0006.03", + "conditionType": "SPEED-MISMATCH", + "amoType": "PORT.LAG-1", + "on": "0" + }, + "116": { + "id": "116", + "number": "1000701", + "description": "Link down on LAG-2 port", + "enabled": "2", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0007.01", + "conditionType": "LINK-DOWN", + "amoType": "PORT.LAG-2", + "on": "0" + }, + "117": { + "id": "117", + "number": "1000702", + "description": "Loopback on port LAG-2", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "1.0007.02", + "conditionType": "OAM-LOOPBACK", + "amoType": "PORT.LAG-2", + "on": "0" + }, + "118": { + "id": "118", + "number": "1000704", + "description": "Fault propagation caused link down on port LAG-2", + "enabled": "1", + "severity": "2", + "serviceAffecting": "1", + "extNumber": "1.0007.04", + "conditionType": "LINK-DOWN-FP", + "amoType": "PORT.LAG-2", + "on": "0" + }, + "119": { + "id": "119", + "number": "1000703", + "description": "Sub-port speed mismatch on port LAG-2", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "1.0007.03", + "conditionType": "SPEED-MISMATCH", + "amoType": "PORT.LAG-2", + "on": "0" + }, + "120": { + "id": "120", + "number": "8000006", + "description": "Input 1 Active", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "8.0000.06", + "conditionType": "DRYCONTACT-IN1", + "amoType": "ENV.DRYCONTACT-IN1", + "on": "0" + }, + "121": { + "id": "121", + "number": "8000007", + "description": "Input 2 Active", + "enabled": "1", + "severity": "0", + "serviceAffecting": "2", + "extNumber": "8.0000.07", + "conditionType": "DRYCONTACT-IN2", + "amoType": "ENV.DRYCONTACT-IN2", + "on": "0" + }, + "122": { + "id": "122", + "number": "8000080", + "description": "Troubleshooting tool is running", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "8.0000.80", + "conditionType": "TOOL-DIAG-RUNNING", + "amoType": "NE", + "on": "0" + }, + "123": { + "id": "123", + "number": "7000101", + "description": "NTP client lost server communication", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.01", + "conditionType": "NTP-STATUS", + "amoType": "PROTOCOL.NTP", + "on": "0" + }, + "124": { + "id": "124", + "number": "7000102", + "description": "NTP Time-of-day synchronization - May affect one-way delay measurements", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.02", + "conditionType": "NTP-LOST-SYNCH", + "amoType": "PROTOCOL.NTP", + "on": "0" + }, + "125": { + "id": "125", + "number": "7000106", + "description": "NTP client used interface without timestamp capability", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.06", + "conditionType": "NTP-CAPABILITY", + "amoType": "PROTOCOL.NTP", + "on": "0" + }, + "126": { + "id": "126", + "number": "7000108", + "description": "Remote NTP server used an interface without timestamp capability", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.08", + "conditionType": "NTP-RMT-CAPABILITY", + "amoType": "PROTOCOL.NTP", + "on": "0" + }, + "127": { + "id": "127", + "number": "7000104", + "description": "PTP client failure communication with server", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.04", + "conditionType": "PTP-STATUS", + "amoType": "PROTOCOL.PTP", + "on": "0" + }, + "128": { + "id": "128", + "number": "7000105", + "description": "PTP Time-of-day synchronization - May affect one-way delay measurements", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.05", + "conditionType": "PTP-LOST-SYNCH", + "amoType": "PROTOCOL.PTP", + "on": "0" + }, + "129": { + "id": "129", + "number": "7000107", + "description": "PTP client used interface without timestamp capability", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0001.07", + "conditionType": "PTP-CAPABILITY", + "amoType": "PROTOCOL.PTP", + "on": "0" + }, + "130": { + "id": "130", + "number": "18000101", + "description": "Inventory entries list is almost full", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "18.0001.01", + "conditionType": "INVENTORY-ALMOST-FULL", + "amoType": "INVENTORY", + "on": "0" + }, + "131": { + "id": "131", + "number": "18000102", + "description": "Inventory entries list is full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "18.0001.02", + "conditionType": "INVENTORY-FULL", + "amoType": "INVENTORY", + "on": "0" + }, + "132": { + "id": "132", + "number": "3000101", + "description": "PAA_Site573_VL2216 PAA_CC_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.01", + "conditionType": "CONNECT-LOSS", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "133": { + "id": "133", + "number": "3000102", + "description": "PAA_Site573_VL2216 PAA_PL_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.02", + "conditionType": "PKT-LOSS", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "134": { + "id": "134", + "number": "3000103", + "description": "PAA_Site573_VL2216 PAA_OW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.03", + "conditionType": "OW-DELAY", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "135": { + "id": "135", + "number": "3000104", + "description": "PAA_Site573_VL2216 PAA_OW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.04", + "conditionType": "OW-AVG-DELAY", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "136": { + "id": "136", + "number": "3000105", + "description": "PAA_Site573_VL2216 PAA_OW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.05", + "conditionType": "OW-DV", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "137": { + "id": "137", + "number": "3000106", + "description": "PAA_Site573_VL2216 PAA_OW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.06", + "conditionType": "OW-AVG-DV", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "138": { + "id": "138", + "number": "3000107", + "description": "PAA_Site573_VL2216 PAA_TW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.07", + "conditionType": "TW-DELAY", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "139": { + "id": "139", + "number": "3000108", + "description": "PAA_Site573_VL2216 PAA_TW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.08", + "conditionType": "TW-AVG-DELAY", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "140": { + "id": "140", + "number": "3000109", + "description": "PAA_Site573_VL2216 PAA_TW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.09", + "conditionType": "TW-DV", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "141": { + "id": "141", + "number": "3000110", + "description": "PAA_Site573_VL2216 PAA_TW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.10", + "conditionType": "TW-AVG-DV", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "142": { + "id": "142", + "number": "3000111", + "description": "PAA_Site573_VL2216 PAA_VLAN1_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.11", + "conditionType": "VLAN1-ID", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "143": { + "id": "143", + "number": "3000112", + "description": "PAA_Site573_VL2216 PAA_VLAN2_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.12", + "conditionType": "VLAN2-ID", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "144": { + "id": "144", + "number": "3000113", + "description": "PAA_Site573_VL2216 PAA_VLAN1_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.13", + "conditionType": "VLAN1-PRIO", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "145": { + "id": "145", + "number": "3000114", + "description": "PAA_Site573_VL2216 PAA_VLAN2_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.14", + "conditionType": "VLAN2-PRIO", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "146": { + "id": "146", + "number": "3000115", + "description": "PAA_Site573_VL2216 PAA_DSCP_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0001.15", + "conditionType": "DSCP", + "amoType": "PAA.PAA_Site573_VL2216", + "on": "0" + }, + "147": { + "id": "147", + "number": "3000201", + "description": "PAA_site573_2216_PNAP PAA_CC_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.01", + "conditionType": "CONNECT-LOSS", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "148": { + "id": "148", + "number": "3000202", + "description": "PAA_site573_2216_PNAP PAA_PL_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.02", + "conditionType": "PKT-LOSS", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "149": { + "id": "149", + "number": "3000203", + "description": "PAA_site573_2216_PNAP PAA_OW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.03", + "conditionType": "OW-DELAY", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "150": { + "id": "150", + "number": "3000204", + "description": "PAA_site573_2216_PNAP PAA_OW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.04", + "conditionType": "OW-AVG-DELAY", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "151": { + "id": "151", + "number": "3000205", + "description": "PAA_site573_2216_PNAP PAA_OW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.05", + "conditionType": "OW-DV", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "152": { + "id": "152", + "number": "3000206", + "description": "PAA_site573_2216_PNAP PAA_OW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.06", + "conditionType": "OW-AVG-DV", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "153": { + "id": "153", + "number": "3000207", + "description": "PAA_site573_2216_PNAP PAA_TW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.07", + "conditionType": "TW-DELAY", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "154": { + "id": "154", + "number": "3000208", + "description": "PAA_site573_2216_PNAP PAA_TW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.08", + "conditionType": "TW-AVG-DELAY", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "155": { + "id": "155", + "number": "3000209", + "description": "PAA_site573_2216_PNAP PAA_TW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.09", + "conditionType": "TW-DV", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "156": { + "id": "156", + "number": "3000210", + "description": "PAA_site573_2216_PNAP PAA_TW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.10", + "conditionType": "TW-AVG-DV", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "157": { + "id": "157", + "number": "3000211", + "description": "PAA_site573_2216_PNAP PAA_VLAN1_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.11", + "conditionType": "VLAN1-ID", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "158": { + "id": "158", + "number": "3000212", + "description": "PAA_site573_2216_PNAP PAA_VLAN2_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.12", + "conditionType": "VLAN2-ID", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "159": { + "id": "159", + "number": "3000213", + "description": "PAA_site573_2216_PNAP PAA_VLAN1_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.13", + "conditionType": "VLAN1-PRIO", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "160": { + "id": "160", + "number": "3000214", + "description": "PAA_site573_2216_PNAP PAA_VLAN2_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.14", + "conditionType": "VLAN2-PRIO", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "161": { + "id": "161", + "number": "3000215", + "description": "PAA_site573_2216_PNAP PAA_DSCP_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0002.15", + "conditionType": "DSCP", + "amoType": "PAA.PAA_site573_2216_PNAP", + "on": "0" + }, + "162": { + "id": "162", + "number": "3000301", + "description": "PAA_Site573_VL2217 PAA_CC_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.01", + "conditionType": "CONNECT-LOSS", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "163": { + "id": "163", + "number": "3000302", + "description": "PAA_Site573_VL2217 PAA_PL_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.02", + "conditionType": "PKT-LOSS", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "164": { + "id": "164", + "number": "3000303", + "description": "PAA_Site573_VL2217 PAA_OW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.03", + "conditionType": "OW-DELAY", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "165": { + "id": "165", + "number": "3000304", + "description": "PAA_Site573_VL2217 PAA_OW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.04", + "conditionType": "OW-AVG-DELAY", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "166": { + "id": "166", + "number": "3000305", + "description": "PAA_Site573_VL2217 PAA_OW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.05", + "conditionType": "OW-DV", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "167": { + "id": "167", + "number": "3000306", + "description": "PAA_Site573_VL2217 PAA_OW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.06", + "conditionType": "OW-AVG-DV", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "168": { + "id": "168", + "number": "3000307", + "description": "PAA_Site573_VL2217 PAA_TW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.07", + "conditionType": "TW-DELAY", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "169": { + "id": "169", + "number": "3000308", + "description": "PAA_Site573_VL2217 PAA_TW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.08", + "conditionType": "TW-AVG-DELAY", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "170": { + "id": "170", + "number": "3000309", + "description": "PAA_Site573_VL2217 PAA_TW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.09", + "conditionType": "TW-DV", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "171": { + "id": "171", + "number": "3000310", + "description": "PAA_Site573_VL2217 PAA_TW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.10", + "conditionType": "TW-AVG-DV", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "172": { + "id": "172", + "number": "3000311", + "description": "PAA_Site573_VL2217 PAA_VLAN1_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.11", + "conditionType": "VLAN1-ID", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "173": { + "id": "173", + "number": "3000312", + "description": "PAA_Site573_VL2217 PAA_VLAN2_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.12", + "conditionType": "VLAN2-ID", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "174": { + "id": "174", + "number": "3000313", + "description": "PAA_Site573_VL2217 PAA_VLAN1_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.13", + "conditionType": "VLAN1-PRIO", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "175": { + "id": "175", + "number": "3000314", + "description": "PAA_Site573_VL2217 PAA_VLAN2_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.14", + "conditionType": "VLAN2-PRIO", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "176": { + "id": "176", + "number": "3000315", + "description": "PAA_Site573_VL2217 PAA_DSCP_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0003.15", + "conditionType": "DSCP", + "amoType": "PAA.PAA_Site573_VL2217", + "on": "0" + }, + "177": { + "id": "177", + "number": "3000401", + "description": "PAA_site573_2217_PNAP PAA_CC_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.01", + "conditionType": "CONNECT-LOSS", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "178": { + "id": "178", + "number": "3000402", + "description": "PAA_site573_2217_PNAP PAA_PL_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.02", + "conditionType": "PKT-LOSS", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "179": { + "id": "179", + "number": "3000403", + "description": "PAA_site573_2217_PNAP PAA_OW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.03", + "conditionType": "OW-DELAY", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "180": { + "id": "180", + "number": "3000404", + "description": "PAA_site573_2217_PNAP PAA_OW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.04", + "conditionType": "OW-AVG-DELAY", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "181": { + "id": "181", + "number": "3000405", + "description": "PAA_site573_2217_PNAP PAA_OW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.05", + "conditionType": "OW-DV", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "182": { + "id": "182", + "number": "3000406", + "description": "PAA_site573_2217_PNAP PAA_OW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.06", + "conditionType": "OW-AVG-DV", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "183": { + "id": "183", + "number": "3000407", + "description": "PAA_site573_2217_PNAP PAA_TW_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.07", + "conditionType": "TW-DELAY", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "184": { + "id": "184", + "number": "3000408", + "description": "PAA_site573_2217_PNAP PAA_TW_AVG_DELAY_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.08", + "conditionType": "TW-AVG-DELAY", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "185": { + "id": "185", + "number": "3000409", + "description": "PAA_site573_2217_PNAP PAA_TW_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.09", + "conditionType": "TW-DV", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "186": { + "id": "186", + "number": "3000410", + "description": "PAA_site573_2217_PNAP PAA_TW_AVG_DV_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.10", + "conditionType": "TW-AVG-DV", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "187": { + "id": "187", + "number": "3000411", + "description": "PAA_site573_2217_PNAP PAA_VLAN1_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.11", + "conditionType": "VLAN1-ID", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "188": { + "id": "188", + "number": "3000412", + "description": "PAA_site573_2217_PNAP PAA_VLAN2_ID_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.12", + "conditionType": "VLAN2-ID", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "189": { + "id": "189", + "number": "3000413", + "description": "PAA_site573_2217_PNAP PAA_VLAN1_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.13", + "conditionType": "VLAN1-PRIO", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "190": { + "id": "190", + "number": "3000414", + "description": "PAA_site573_2217_PNAP PAA_VLAN2_PRIO_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.14", + "conditionType": "VLAN2-PRIO", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "191": { + "id": "191", + "number": "3000415", + "description": "PAA_site573_2217_PNAP PAA_DSCP_ALERT", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "3.0004.15", + "conditionType": "DSCP", + "amoType": "PAA.PAA_site573_2217_PNAP", + "on": "0" + }, + "192": { + "id": "192", + "number": "7000401", + "description": "VCAgent communication failure with Vision EMS", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.01", + "conditionType": "VCA-LOST-COMM", + "amoType": "VCAGENT", + "on": "0" + }, + "193": { + "id": "193", + "number": "7000412", + "description": "VCAgent High Resolution PAA statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.12", + "conditionType": "VCA-FULL-PAA", + "amoType": "VCAGENT", + "on": "0" + }, + "194": { + "id": "194", + "number": "7000404", + "description": "VCAgent High Resolution PAA instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.04", + "conditionType": "VCA-MAX-PAA", + "amoType": "VCAGENT", + "on": "0" + }, + "195": { + "id": "195", + "number": "7000411", + "description": "VCAgent High Resolution Regulator statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.11", + "conditionType": "VCA-FULL-BWP", + "amoType": "VCAGENT", + "on": "0" + }, + "196": { + "id": "196", + "number": "7000403", + "description": "VCAgent High Resolution Regulator instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.03", + "conditionType": "VCA-MAX-BWP", + "amoType": "VCAGENT", + "on": "0" + }, + "197": { + "id": "197", + "number": "7000410", + "description": "VCAgent High Resolution Policy statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.10", + "conditionType": "VCA-FULL-POL", + "amoType": "VCAGENT", + "on": "0" + }, + "198": { + "id": "198", + "number": "7000402", + "description": "VCAgent High Resolution Policy instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.02", + "conditionType": "VCA-MAX-POL", + "amoType": "VCAGENT", + "on": "0" + }, + "199": { + "id": "199", + "number": "7000414", + "description": "VCAgent High Resolution SOAM DMM statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.14", + "conditionType": "VCA-FULL-DMM", + "amoType": "VCAGENT", + "on": "0" + }, + "200": { + "id": "200", + "number": "7000406", + "description": "VCAgent High Resolution SOAM DMM instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.06", + "conditionType": "VCA-MAX-DMM", + "amoType": "VCAGENT", + "on": "0" + }, + "201": { + "id": "201", + "number": "7000413", + "description": "VCAgent High Resolution SOAM PL statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.13", + "conditionType": "VCA-FULL-PL", + "amoType": "VCAGENT", + "on": "0" + }, + "202": { + "id": "202", + "number": "7000405", + "description": "VCAgent High Resolution SOAM PL instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.05", + "conditionType": "VCA-MAX-PL", + "amoType": "VCAGENT", + "on": "0" + }, + "203": { + "id": "203", + "number": "7000417", + "description": "VCAgent High Resolution SOAM SLM statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.17", + "conditionType": "VCA-FULL-SLM", + "amoType": "VCAGENT", + "on": "0" + }, + "204": { + "id": "204", + "number": "7000409", + "description": "VCAgent High Resolution SOAM SLM instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.09", + "conditionType": "VCA-MAX-SLM", + "amoType": "VCAGENT", + "on": "0" + }, + "205": { + "id": "205", + "number": "7000415", + "description": "VCAgent High Resolution SOAM SA statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.15", + "conditionType": "VCA-FULL-SA", + "amoType": "VCAGENT", + "on": "0" + }, + "206": { + "id": "206", + "number": "7000407", + "description": "VCAgent High Resolution SOAM SA instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.07", + "conditionType": "VCA-MAX-SA", + "amoType": "VCAGENT", + "on": "0" + }, + "207": { + "id": "207", + "number": "7000416", + "description": "VCAgent High Resolution SOAM SA Metrics statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.16", + "conditionType": "VCA-FULL-SA_M", + "amoType": "VCAGENT", + "on": "0" + }, + "208": { + "id": "208", + "number": "7000408", + "description": "VCAgent High Resolution SOAM SA Metrics instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.08", + "conditionType": "VCA-MAX-SA_M", + "amoType": "VCAGENT", + "on": "0" + }, + "209": { + "id": "209", + "number": "7000421", + "description": "VCAgent High Resolution TWAMP statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.21", + "conditionType": "VCA-FULL-TWAMP", + "amoType": "VCAGENT", + "on": "0" + }, + "210": { + "id": "210", + "number": "7000420", + "description": "VCAgent High Resolution TWAMP instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.20", + "conditionType": "VCA-MAX-TWAMP", + "amoType": "VCAGENT", + "on": "0" + }, + "211": { + "id": "211", + "number": "7000423", + "description": "VCAgent High Resolution Shaper statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.23", + "conditionType": "VCA-FULL-SHAPER-V2", + "amoType": "VCAGENT", + "on": "0" + }, + "212": { + "id": "212", + "number": "7000422", + "description": "VCAgent High Resolution Shaper instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.22", + "conditionType": "VCA-MAX-SHAPER-V2", + "amoType": "VCAGENT", + "on": "0" + }, + "213": { + "id": "213", + "number": "7000425", + "description": "VCAgent High Resolution Port statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.25", + "conditionType": "VCA-FULL-PORT", + "amoType": "VCAGENT", + "on": "0" + }, + "214": { + "id": "214", + "number": "7000424", + "description": "VCAgent High Resolution Port instances validation", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "7.0004.24", + "conditionType": "VCA-MAX-PORT", + "amoType": "VCAGENT", + "on": "0" + }, + "215": { + "id": "215", + "number": "7000428", + "description": "VCAgent High Resolution SFP statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.28", + "conditionType": "VCA-FULL-SFP", + "amoType": "VCAGENT", + "on": "0" + }, + "216": { + "id": "216", + "number": "7000429", + "description": "VCAgent High Resolution System Health statistics buffer full", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "7.0004.29", + "conditionType": "VCA-FULL-SYSTEM-HEALTH", + "amoType": "VCAGENT", + "on": "0" + }, + "217": { + "id": "217", + "number": "19000101", + "description": "One or more certificates is about to expire", + "enabled": "1", + "severity": "1", + "serviceAffecting": "2", + "extNumber": "19.0001.01", + "conditionType": "EXPIRING", + "amoType": "CERTIFICATE.EXPIRING", + "on": "0" + }, + "218": { + "id": "218", + "number": "19000102", + "description": "One or more certificates has expired", + "enabled": "1", + "severity": "2", + "serviceAffecting": "2", + "extNumber": "19.0001.02", + "conditionType": "EXPIRED", + "amoType": "CERTIFICATE.EXPIRED", + "on": "0" + } + }, + "alarm_status": { + "1": { + "id": "1", + "number": "8000001", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "2": { + "id": "2", + "number": "8000002", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "3": { + "id": "3", + "number": "8000004", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "4": { + "id": "4", + "number": "8000005", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 07 00 2D 07 00", + "message": "", + "on": "0" + }, + "5": { + "id": "5", + "number": "8000101", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "6": { + "id": "6", + "number": "8000102", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "7": { + "id": "7", + "number": "8000040", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "8": { + "id": "8", + "number": "8000041", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "9": { + "id": "9", + "number": "8000140", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "10": { + "id": "10", + "number": "8000141", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "11": { + "id": "11", + "number": "2000101", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "12": { + "id": "12", + "number": "2000102", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "13": { + "id": "13", + "number": "2000103", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "14": { + "id": "14", + "number": "2000104", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "15": { + "id": "15", + "number": "2000105", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "16": { + "id": "16", + "number": "2000106", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "17": { + "id": "17", + "number": "2000107", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "18": { + "id": "18", + "number": "2000108", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "19": { + "id": "19", + "number": "2000109", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "20": { + "id": "20", + "number": "2000110", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "21": { + "id": "21", + "number": "2000111", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "22": { + "id": "22", + "number": "2000112", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "23": { + "id": "23", + "number": "2000113", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "24": { + "id": "24", + "number": "2000114", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "25": { + "id": "25", + "number": "2000115", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "26": { + "id": "26", + "number": "2000116", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "27": { + "id": "27", + "number": "2000117", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "28": { + "id": "28", + "number": "2000118", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "29": { + "id": "29", + "number": "2000119", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "30": { + "id": "30", + "number": "2000120", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "31": { + "id": "31", + "number": "2000121", + "active": "2", + "lastChange": "07 B4 0A 0F 11 35 3A 00 2D 07 00", + "message": "was inserted.", + "on": "0" + }, + "32": { + "id": "32", + "number": "2000201", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "33": { + "id": "33", + "number": "2000202", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "34": { + "id": "34", + "number": "2000203", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "35": { + "id": "35", + "number": "2000204", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "36": { + "id": "36", + "number": "2000205", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "37": { + "id": "37", + "number": "2000206", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "38": { + "id": "38", + "number": "2000207", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "39": { + "id": "39", + "number": "2000208", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "40": { + "id": "40", + "number": "2000209", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "41": { + "id": "41", + "number": "2000210", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "42": { + "id": "42", + "number": "2000211", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "43": { + "id": "43", + "number": "2000212", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "44": { + "id": "44", + "number": "2000213", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "45": { + "id": "45", + "number": "2000214", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "46": { + "id": "46", + "number": "2000215", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "47": { + "id": "47", + "number": "2000216", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "48": { + "id": "48", + "number": "2000217", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "49": { + "id": "49", + "number": "2000218", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "50": { + "id": "50", + "number": "2000219", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "51": { + "id": "51", + "number": "2000220", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "52": { + "id": "52", + "number": "2000221", + "active": "1", + "lastChange": "07 B4 0A 0F 13 03 07 00 2D 07 00", + "message": "was removed.", + "on": "0" + }, + "53": { + "id": "53", + "number": "2000301", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "54": { + "id": "54", + "number": "2000302", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "55": { + "id": "55", + "number": "2000303", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "56": { + "id": "56", + "number": "2000304", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "57": { + "id": "57", + "number": "2000305", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "58": { + "id": "58", + "number": "2000306", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "59": { + "id": "59", + "number": "2000307", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "60": { + "id": "60", + "number": "2000308", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "61": { + "id": "61", + "number": "2000309", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "62": { + "id": "62", + "number": "2000310", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "63": { + "id": "63", + "number": "2000311", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "64": { + "id": "64", + "number": "2000312", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "65": { + "id": "65", + "number": "2000313", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "66": { + "id": "66", + "number": "2000314", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "67": { + "id": "67", + "number": "2000315", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "68": { + "id": "68", + "number": "2000316", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "69": { + "id": "69", + "number": "2000317", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "70": { + "id": "70", + "number": "2000318", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "71": { + "id": "71", + "number": "2000319", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "72": { + "id": "72", + "number": "2000320", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "73": { + "id": "73", + "number": "2000321", + "active": "2", + "lastChange": "07 B4 0A 0F 13 03 0B 00 2D 07 00", + "message": "was inserted.", + "on": "0" + }, + "74": { + "id": "74", + "number": "2000401", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "75": { + "id": "75", + "number": "2000402", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "76": { + "id": "76", + "number": "2000403", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "77": { + "id": "77", + "number": "2000404", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "78": { + "id": "78", + "number": "2000405", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "79": { + "id": "79", + "number": "2000406", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "80": { + "id": "80", + "number": "2000407", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "81": { + "id": "81", + "number": "2000408", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "82": { + "id": "82", + "number": "2000409", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "83": { + "id": "83", + "number": "2000410", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "84": { + "id": "84", + "number": "2000411", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "85": { + "id": "85", + "number": "2000412", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "86": { + "id": "86", + "number": "2000413", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "87": { + "id": "87", + "number": "2000414", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "88": { + "id": "88", + "number": "2000415", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "89": { + "id": "89", + "number": "2000416", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "90": { + "id": "90", + "number": "2000417", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "91": { + "id": "91", + "number": "2000418", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "92": { + "id": "92", + "number": "2000419", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "93": { + "id": "93", + "number": "2000420", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "94": { + "id": "94", + "number": "2000421", + "active": "1", + "lastChange": "07 B4 09 1A 13 0F 06 00 2D 07 00", + "message": "was removed.", + "on": "0" + }, + "95": { + "id": "95", + "number": "1000101", + "active": "2", + "lastChange": "07 B5 01 18 12 07 19 00 2D 07 00", + "message": "went up", + "on": "0" + }, + "96": { + "id": "96", + "number": "1000102", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "97": { + "id": "97", + "number": "1000104", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "went up", + "on": "0" + }, + "98": { + "id": "98", + "number": "1000107", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "99": { + "id": "99", + "number": "1000201", + "active": "1", + "lastChange": "07 B3 0C 1D 0D 1C 33 00 2D 07 00", + "message": "went down", + "on": "0" + }, + "100": { + "id": "100", + "number": "1000202", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "101": { + "id": "101", + "number": "1000204", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "went up", + "on": "0" + }, + "102": { + "id": "102", + "number": "1000207", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "103": { + "id": "103", + "number": "1000301", + "active": "1", + "lastChange": "07 B4 0B 15 14 0A 2F 00 2D 07 00", + "message": "went down", + "on": "0" + }, + "104": { + "id": "104", + "number": "1000302", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "105": { + "id": "105", + "number": "1000304", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "went up", + "on": "0" + }, + "106": { + "id": "106", + "number": "1000307", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "107": { + "id": "107", + "number": "1000401", + "active": "1", + "lastChange": "07 B4 09 1A 13 0E 23 00 2D 07 00", + "message": "went down", + "on": "0" + }, + "108": { + "id": "108", + "number": "1000402", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "109": { + "id": "109", + "number": "1000404", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "went up", + "on": "0" + }, + "110": { + "id": "110", + "number": "1000407", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "111": { + "id": "111", + "number": "1000501", + "active": "2", + "lastChange": "07 B5 03 07 14 36 0F 00 2D 07 00", + "message": "went up", + "on": "0" + }, + "112": { + "id": "112", + "number": "1000601", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 0F 00 2D 07 00", + "message": "went down", + "on": "0" + }, + "113": { + "id": "113", + "number": "1000602", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "114": { + "id": "114", + "number": "1000604", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "went up", + "on": "0" + }, + "115": { + "id": "115", + "number": "1000603", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "116": { + "id": "116", + "number": "1000701", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 0F 00 2D 07 00", + "message": "went down", + "on": "0" + }, + "117": { + "id": "117", + "number": "1000702", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "118": { + "id": "118", + "number": "1000704", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "went up", + "on": "0" + }, + "119": { + "id": "119", + "number": "1000703", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "120": { + "id": "120", + "number": "8000006", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "121": { + "id": "121", + "number": "8000007", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "122": { + "id": "122", + "number": "8000080", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "123": { + "id": "123", + "number": "7000101", + "active": "1", + "lastChange": "07 B2 06 16 16 1F 23 00 2D 07 00", + "message": "Lost contact, server 10.10.20.", + "on": "0" + }, + "124": { + "id": "124", + "number": "7000102", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 15 00 2D 07 00", + "message": "NTP lost time-of-day sync", + "on": "0" + }, + "125": { + "id": "125", + "number": "7000106", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "Use intf with HW timestamp", + "on": "0" + }, + "126": { + "id": "126", + "number": "7000108", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "Use intf with HW timestamp", + "on": "0" + }, + "127": { + "id": "127", + "number": "7000104", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "128": { + "id": "128", + "number": "7000105", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "129": { + "id": "129", + "number": "7000107", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "130": { + "id": "130", + "number": "18000101", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "131": { + "id": "131", + "number": "18000102", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "132": { + "id": "132", + "number": "3000101", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 25 00 2D 07 00", + "message": "", + "on": "0" + }, + "133": { + "id": "133", + "number": "3000102", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 26 00 2D 07 00", + "message": "", + "on": "0" + }, + "134": { + "id": "134", + "number": "3000103", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "135": { + "id": "135", + "number": "3000104", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "136": { + "id": "136", + "number": "3000105", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "137": { + "id": "137", + "number": "3000106", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "138": { + "id": "138", + "number": "3000107", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "139": { + "id": "139", + "number": "3000108", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "140": { + "id": "140", + "number": "3000109", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "141": { + "id": "141", + "number": "3000110", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "142": { + "id": "142", + "number": "3000111", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "143": { + "id": "143", + "number": "3000112", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "144": { + "id": "144", + "number": "3000113", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "145": { + "id": "145", + "number": "3000114", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "146": { + "id": "146", + "number": "3000115", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "147": { + "id": "147", + "number": "3000201", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "148": { + "id": "148", + "number": "3000202", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "149": { + "id": "149", + "number": "3000203", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "150": { + "id": "150", + "number": "3000204", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "151": { + "id": "151", + "number": "3000205", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "152": { + "id": "152", + "number": "3000206", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "153": { + "id": "153", + "number": "3000207", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "154": { + "id": "154", + "number": "3000208", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "155": { + "id": "155", + "number": "3000209", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "156": { + "id": "156", + "number": "3000210", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "157": { + "id": "157", + "number": "3000211", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "158": { + "id": "158", + "number": "3000212", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "159": { + "id": "159", + "number": "3000213", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "160": { + "id": "160", + "number": "3000214", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "161": { + "id": "161", + "number": "3000215", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "162": { + "id": "162", + "number": "3000301", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 25 00 2D 07 00", + "message": "", + "on": "0" + }, + "163": { + "id": "163", + "number": "3000302", + "active": "1", + "lastChange": "07 B2 06 16 16 1D 26 00 2D 07 00", + "message": "", + "on": "0" + }, + "164": { + "id": "164", + "number": "3000303", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "165": { + "id": "165", + "number": "3000304", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "166": { + "id": "166", + "number": "3000305", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "167": { + "id": "167", + "number": "3000306", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "168": { + "id": "168", + "number": "3000307", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "169": { + "id": "169", + "number": "3000308", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "170": { + "id": "170", + "number": "3000309", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "171": { + "id": "171", + "number": "3000310", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "172": { + "id": "172", + "number": "3000311", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "173": { + "id": "173", + "number": "3000312", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "174": { + "id": "174", + "number": "3000313", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "175": { + "id": "175", + "number": "3000314", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "176": { + "id": "176", + "number": "3000315", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "177": { + "id": "177", + "number": "3000401", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "178": { + "id": "178", + "number": "3000402", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "179": { + "id": "179", + "number": "3000403", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "180": { + "id": "180", + "number": "3000404", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "181": { + "id": "181", + "number": "3000405", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "182": { + "id": "182", + "number": "3000406", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "183": { + "id": "183", + "number": "3000407", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "184": { + "id": "184", + "number": "3000408", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "185": { + "id": "185", + "number": "3000409", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "186": { + "id": "186", + "number": "3000410", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "187": { + "id": "187", + "number": "3000411", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "188": { + "id": "188", + "number": "3000412", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "189": { + "id": "189", + "number": "3000413", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "190": { + "id": "190", + "number": "3000414", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "191": { + "id": "191", + "number": "3000415", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "192": { + "id": "192", + "number": "7000401", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "193": { + "id": "193", + "number": "7000412", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "Buffer not full for PAA", + "on": "0" + }, + "194": { + "id": "194", + "number": "7000404", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "195": { + "id": "195", + "number": "7000411", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "196": { + "id": "196", + "number": "7000403", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "197": { + "id": "197", + "number": "7000410", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "198": { + "id": "198", + "number": "7000402", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "199": { + "id": "199", + "number": "7000414", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "200": { + "id": "200", + "number": "7000406", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "201": { + "id": "201", + "number": "7000413", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "202": { + "id": "202", + "number": "7000405", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "203": { + "id": "203", + "number": "7000417", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "204": { + "id": "204", + "number": "7000409", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "205": { + "id": "205", + "number": "7000415", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "206": { + "id": "206", + "number": "7000407", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "207": { + "id": "207", + "number": "7000416", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "208": { + "id": "208", + "number": "7000408", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "209": { + "id": "209", + "number": "7000421", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "210": { + "id": "210", + "number": "7000420", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "211": { + "id": "211", + "number": "7000423", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "212": { + "id": "212", + "number": "7000422", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "213": { + "id": "213", + "number": "7000425", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "214": { + "id": "214", + "number": "7000424", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "All instances are collected", + "on": "0" + }, + "215": { + "id": "215", + "number": "7000428", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "216": { + "id": "216", + "number": "7000429", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "217": { + "id": "217", + "number": "19000101", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + }, + "218": { + "id": "218", + "number": "19000102", + "active": "2", + "lastChange": "00 00 01 01 00 00 00 00", + "message": "", + "on": "0" + } + }, + "alarm_general": { + "threshOnMs": "2500", + "threshOffMs": "10000", + "ledEnabled": "1", + "syslogEnabled": "1", + "snmpEnabled": "1", + "802_3ahEnabled": "1" + }, + "port_config": { + "1": { + "name": "EVEN_VLAN_UPLINK", + "alias": "", + "macAddress": "00 15 AD 47 3E 61", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.1", + "state": "1", + "mtu": "4096", + "autoNego": "1", + "speed": "1000", + "duplex": "2", + "mdi": "1", + "pauseMode": "2", + "advertisement": "00 00 00 E0", + "forceTxOn": "2" + }, + "2": { + "name": "ODD_VLAN_UPLINK", + "alias": "", + "macAddress": "00 15 AD 47 3E 62", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.2", + "state": "1", + "mtu": "4096", + "autoNego": "1", + "speed": "1000", + "duplex": "2", + "mdi": "1", + "pauseMode": "2", + "advertisement": "00 00 00 EA", + "forceTxOn": "2" + }, + "3": { + "name": "EVEN_VLAN_DOWNLIN", + "alias": "", + "macAddress": "00 15 AD 47 3E 63", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.3", + "state": "1", + "mtu": "2000", + "autoNego": "1", + "speed": "1000", + "duplex": "2", + "mdi": "1", + "pauseMode": "2", + "advertisement": "00 00 00 EA", + "forceTxOn": "2" + }, + "4": { + "name": "ODD_VLAN_DOWNLINK", + "alias": "", + "macAddress": "00 15 AD 47 3E 64", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.4", + "state": "1", + "mtu": "4096", + "autoNego": "1", + "speed": "1000", + "duplex": "2", + "mdi": "1", + "pauseMode": "2", + "advertisement": "00 00 00 E0", + "forceTxOn": "2" + }, + "5": { + "name": "Management", + "alias": "", + "macAddress": "00 15 AD 47 3E 65", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.5", + "state": "1", + "mtu": "2000", + "autoNego": "1", + "speed": "100", + "duplex": "2", + "mdi": "1", + "pauseMode": "2", + "advertisement": "00 00 00 CA" + }, + "6": { + "name": "LAG-1", + "alias": "", + "macAddress": "00 15 AD 47 3E 61", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.6", + "state": "1", + "mtu": "10240", + "autoNego": "2", + "speed": "10000", + "duplex": "2", + "mdi": "2", + "pauseMode": "2", + "advertisement": "00 00 00 E0" + }, + "7": { + "name": "LAG-2", + "alias": "", + "macAddress": "00 15 AD 47 3E 63", + "connectorId": ".1.3.6.1.4.1.22420.1.1.10.1.1.7", + "state": "1", + "mtu": "10240", + "autoNego": "2", + "speed": "10000", + "duplex": "2", + "mdi": "2", + "pauseMode": "2", + "advertisement": "00 00 00 E0" + } + }, + "port_status": { + "1": { + "name": "1000", + "connectorIdx": "2", + "linkStatus": "1", + "speed": "2", + "duplex": "1", + "mdi": "", + "pauseMode": "1", + "sfpIdx": "00 00 02", + "col_10": "2", + "col_11": "2", + "col_12": "1", + "col_13": "1", + "col_14": "1" + }, + "2": { + "name": "0", + "connectorIdx": "0", + "linkStatus": "0", + "speed": "0", + "duplex": "0", + "mdi": "", + "pauseMode": "2", + "sfpIdx": "", + "col_10": "0", + "col_11": "0", + "col_12": "0", + "col_13": "0", + "col_14": "2" + }, + "3": { + "name": "0", + "connectorIdx": "0", + "linkStatus": "0", + "speed": "0", + "duplex": "0", + "mdi": "", + "pauseMode": "2", + "sfpIdx": "", + "col_10": "0", + "col_11": "0", + "col_12": "0", + "col_13": "0", + "col_14": "2" + }, + "4": { + "name": "0", + "connectorIdx": "0", + "linkStatus": "0", + "speed": "0", + "duplex": "0", + "mdi": "00 00 00 E0", + "pauseMode": "2", + "sfpIdx": "", + "col_10": "0", + "col_11": "0", + "col_12": "0", + "col_13": "0", + "col_14": "2" + }, + "5": { + "name": "100", + "connectorIdx": "2", + "linkStatus": "1", + "speed": "2", + "duplex": "1", + "mdi": "00 00 00 CF", + "pauseMode": "1", + "sfpIdx": "00 00 80", + "col_10": "2", + "col_11": "1", + "col_12": "2", + "col_13": "2", + "col_14": "1" + }, + "6": { + "name": "0", + "connectorIdx": "0", + "linkStatus": "0", + "speed": "0", + "duplex": "0", + "mdi": "", + "pauseMode": "2", + "sfpIdx": "", + "col_10": "0", + "col_11": "0", + "col_12": "0", + "col_13": "0", + "col_14": "2" + }, + "7": { + "name": "0", + "connectorIdx": "0", + "linkStatus": "0", + "speed": "0", + "duplex": "0", + "mdi": "", + "pauseMode": "2", + "sfpIdx": "", + "col_10": "0", + "col_11": "0", + "col_12": "0", + "col_13": "0", + "col_14": "2" + } + }, + "l2_filters": { + "1": { + "id": "1", + "name": "*default", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "2": { + "id": "2", + "name": "PAA-Discovery", + "macDstEn": "1", + "macDst": "FF FF FF FF FF FF", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "1", + "etype": "35068", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "3": { + "id": "3", + "name": "MTSOMAC_SRC", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "1", + "macSrc": "00 23 3E 82 15 73", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "4": { + "id": "4", + "name": "MTSOMAC_DST", + "macDstEn": "1", + "macDst": "00 23 3E 82 15 73", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "5": { + "id": "5", + "name": "SVLAN_2216", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2216", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "2573", + "rowStatus": "1" + }, + "6": { + "id": "6", + "name": "catchAll", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "7": { + "id": "7", + "name": "ieeeBPDU", + "macDstEn": "1", + "macDst": "01 80 C2 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "8": { + "id": "8", + "name": "ciscoBPDU", + "macDstEn": "1", + "macDst": "01 00 0C CC CC CD", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "9": { + "id": "9", + "name": "macDst", + "macDstEn": "1", + "macDst": "00 15 AD 01 01 01", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "10": { + "id": "10", + "name": "macSrc", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "1", + "macSrc": "00 15 AD 01 01 01", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "11": { + "id": "11", + "name": "frameType", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "1", + "etype": "36864", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "12": { + "id": "12", + "name": "firstVlanId", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "100", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "13": { + "id": "13", + "name": "firstVlanPrior", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "1", + "vlan1Id": "5", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "14": { + "id": "14", + "name": "firstVlanCfi", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "1", + "vlan1PriorEn": "1", + "vlan1Prior": "1", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "15": { + "id": "15", + "name": "secondVlanId", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "1", + "vlan2Cfi": "200", + "rowStatus": "1" + }, + "16": { + "id": "16", + "name": "secondVlanPrior", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "1", + "vlan2IdEn": "1", + "vlan2Id": "5", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "17": { + "id": "17", + "name": "secondVlanCfi", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "0", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "1", + "vlan2PriorEn": "1", + "vlan2Prior": "1", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "18": { + "id": "18", + "name": "SVLAN_2217", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2217", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "3573", + "rowStatus": "1" + }, + "19": { + "id": "19", + "name": "VLAN_2573", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2573", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "20": { + "id": "20", + "name": "VLAN_3573", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "3573", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "21": { + "id": "21", + "name": "rvResortMAC_DST", + "macDstEn": "1", + "macDst": "50 40 61 85 DE 68", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "22": { + "id": "22", + "name": "rvResortMAC_SRC", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "1", + "macSrc": "50 40 61 85 DE 68", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "2", + "vlan1Cfi": "0", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + }, + "23": { + "id": "23", + "name": "SVLAN_2218", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2218", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "2166", + "rowStatus": "1" + }, + "24": { + "id": "24", + "name": "SVLAN_2219", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2219", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "3166", + "rowStatus": "1" + }, + "25": { + "id": "25", + "name": "SVLAN_2220", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2220", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "2347", + "rowStatus": "1" + }, + "26": { + "id": "26", + "name": "SVLAN_2221", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "2221", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "3347", + "rowStatus": "1" + }, + "27": { + "id": "27", + "name": "CVLAN_3999", + "macDstEn": "2", + "macDst": "00 00 00 00 00 00", + "macDstMask": "48", + "macSrcEn": "2", + "macSrc": "00 00 00 00 00 00", + "macSrcMask": "48", + "etypeEn": "2", + "etype": "2048", + "vlan1IdEn": "2", + "vlan1Id": "0", + "vlan1PriorEn": "2", + "vlan1Prior": "0", + "vlan1CfiEn": "1", + "vlan1Cfi": "3999", + "vlan2IdEn": "2", + "vlan2Id": "0", + "vlan2PriorEn": "2", + "vlan2Prior": "0", + "vlan2CfiEn": "2", + "vlan2Cfi": "0", + "rowStatus": "1" + } + }, + "policy_lists": { + "1": { + "name": "Traffic-1", + "nbrEntries": "100" + }, + "2": { + "name": "Traffic-2", + "nbrEntries": "100" + }, + "3": { + "name": "Traffic-3", + "nbrEntries": "100" + }, + "4": { + "name": "Traffic-4", + "nbrEntries": "100" + } + }, + "policy_port_bindings": { + "1": { + "policyListId": "1" + }, + "2": { + "policyListId": "2" + }, + "3": { + "policyListId": "3" + }, + "4": { + "policyListId": "4" + }, + "5": { + "policyListId": "0" + }, + "6": { + "policyListId": "0" + }, + "7": { + "policyListId": "0" + } + }, + "policy_entries": { + "6": { + "listId": "1", + "entryId": "6", + "enable": "1", + "filterType": "0", + "filterIndex": "27", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "1", + "regulatorIndex": "1", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "3", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "0", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "col_31": "1", + "col_32": "0" + }, + "7": { + "listId": "1", + "entryId": "7", + "enable": "1", + "filterType": "0", + "filterIndex": "5", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "col_31": "1", + "col_32": "0" + }, + "8": { + "listId": "1", + "entryId": "8", + "enable": "1", + "filterType": "0", + "filterIndex": "23", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "col_31": "1", + "col_32": "0" + }, + "9": { + "listId": "1", + "entryId": "9", + "enable": "1", + "filterType": "0", + "filterIndex": "25", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "col_31": "1", + "col_32": "0" + }, + "107": { + "listId": "2", + "entryId": "7", + "enable": "1", + "filterType": "0", + "filterIndex": "18", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "col_31": "1", + "col_32": "0" + }, + "108": { + "listId": "2", + "entryId": "8", + "enable": "1", + "filterType": "0", + "filterIndex": "24", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "col_31": "1", + "col_32": "0" + }, + "109": { + "listId": "2", + "entryId": "9", + "enable": "1", + "filterType": "0", + "filterIndex": "26", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "col_31": "1", + "col_32": "0" + }, + "206": { + "listId": "3", + "entryId": "6", + "enable": "1", + "filterType": "0", + "filterIndex": "1", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "1", + "regulatorIndex": "1", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "2", + "col_15": "1", + "evcMappingVlanId": "3999", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "0", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "col_31": "1", + "col_32": "0" + }, + "207": { + "listId": "3", + "entryId": "7", + "enable": "1", + "filterType": "0", + "filterIndex": "5", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "col_31": "1", + "col_32": "0" + }, + "208": { + "listId": "3", + "entryId": "8", + "enable": "1", + "filterType": "0", + "filterIndex": "23", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "col_31": "1", + "col_32": "0" + }, + "209": { + "listId": "3", + "entryId": "9", + "enable": "1", + "filterType": "0", + "filterIndex": "25", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "col_31": "1", + "col_32": "0" + }, + "307": { + "listId": "4", + "entryId": "7", + "enable": "1", + "filterType": "0", + "filterIndex": "18", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "2", + "evcMappingVlanId": "2216", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "col_31": "1", + "col_32": "0" + }, + "308": { + "listId": "4", + "entryId": "8", + "enable": "1", + "filterType": "0", + "filterIndex": "24", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "2", + "evcMappingVlanId": "2217", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "col_31": "1", + "col_32": "0" + }, + "309": { + "listId": "4", + "entryId": "9", + "enable": "1", + "filterType": "0", + "filterIndex": "26", + "col_7": "0", + "monitorEnable": "2", + "monitorIndex": "2", + "regulatorEnable": "2", + "regulatorIndex": "0", + "col_12": "1", + "action": "2", + "evcMappingEncaps": "1", + "col_15": "1", + "evcMappingVlanId": "0", + "col_17": "1", + "col_18": "2", + "col_19": "1", + "col_20": "0", + "col_21": "0", + "col_22": "2", + "col_23": "1", + "col_24": "0", + "col_25": "0", + "col_26": "0", + "col_27": "5", + "col_28": "0", + "col_29": "0", + "outgoingPort": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "col_31": "1", + "col_32": "0" + } + }, + "policy_stats": { + "1": { + "listId": "1", + "entryId": "1", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "2": { + "listId": "1", + "entryId": "2", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "3": { + "listId": "1", + "entryId": "3", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "4": { + "listId": "1", + "entryId": "4", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "5": { + "listId": "1", + "entryId": "5", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "6": { + "listId": "1", + "entryId": "6", + "inPkts": "13471464", + "col_5": "0", + "inHCPkts": "13471464", + "inOctets": "4000629177", + "col_8": "2", + "inHCOctets": "12590563769", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "7": { + "listId": "1", + "entryId": "7", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "8": { + "listId": "1", + "entryId": "8", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "9": { + "listId": "1", + "entryId": "9", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "10": { + "listId": "1", + "entryId": "10", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "11": { + "listId": "1", + "entryId": "11", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "12": { + "listId": "1", + "entryId": "12", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "13": { + "listId": "1", + "entryId": "13", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "14": { + "listId": "1", + "entryId": "14", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "15": { + "listId": "1", + "entryId": "15", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "16": { + "listId": "1", + "entryId": "16", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "17": { + "listId": "1", + "entryId": "17", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "18": { + "listId": "1", + "entryId": "18", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "19": { + "listId": "1", + "entryId": "19", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "20": { + "listId": "1", + "entryId": "20", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "21": { + "listId": "1", + "entryId": "21", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "22": { + "listId": "1", + "entryId": "22", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "23": { + "listId": "1", + "entryId": "23", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "24": { + "listId": "1", + "entryId": "24", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "25": { + "listId": "1", + "entryId": "25", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "26": { + "listId": "1", + "entryId": "26", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "27": { + "listId": "1", + "entryId": "27", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "28": { + "listId": "1", + "entryId": "28", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "29": { + "listId": "1", + "entryId": "29", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "30": { + "listId": "1", + "entryId": "30", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "31": { + "listId": "1", + "entryId": "31", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "32": { + "listId": "1", + "entryId": "32", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "33": { + "listId": "1", + "entryId": "33", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "34": { + "listId": "1", + "entryId": "34", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "35": { + "listId": "1", + "entryId": "35", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "36": { + "listId": "1", + "entryId": "36", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "37": { + "listId": "1", + "entryId": "37", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "38": { + "listId": "1", + "entryId": "38", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "39": { + "listId": "1", + "entryId": "39", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "40": { + "listId": "1", + "entryId": "40", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "41": { + "listId": "1", + "entryId": "41", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "42": { + "listId": "1", + "entryId": "42", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "43": { + "listId": "1", + "entryId": "43", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "44": { + "listId": "1", + "entryId": "44", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "45": { + "listId": "1", + "entryId": "45", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "46": { + "listId": "1", + "entryId": "46", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "47": { + "listId": "1", + "entryId": "47", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "48": { + "listId": "1", + "entryId": "48", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "49": { + "listId": "1", + "entryId": "49", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "50": { + "listId": "1", + "entryId": "50", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "51": { + "listId": "1", + "entryId": "51", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "52": { + "listId": "1", + "entryId": "52", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "53": { + "listId": "1", + "entryId": "53", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "54": { + "listId": "1", + "entryId": "54", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "55": { + "listId": "1", + "entryId": "55", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "56": { + "listId": "1", + "entryId": "56", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "57": { + "listId": "1", + "entryId": "57", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "58": { + "listId": "1", + "entryId": "58", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "59": { + "listId": "1", + "entryId": "59", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "60": { + "listId": "1", + "entryId": "60", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "61": { + "listId": "1", + "entryId": "61", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "62": { + "listId": "1", + "entryId": "62", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "63": { + "listId": "1", + "entryId": "63", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "64": { + "listId": "1", + "entryId": "64", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "65": { + "listId": "1", + "entryId": "65", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "66": { + "listId": "1", + "entryId": "66", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "67": { + "listId": "1", + "entryId": "67", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "68": { + "listId": "1", + "entryId": "68", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "69": { + "listId": "1", + "entryId": "69", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "70": { + "listId": "1", + "entryId": "70", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "71": { + "listId": "1", + "entryId": "71", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "72": { + "listId": "1", + "entryId": "72", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "73": { + "listId": "1", + "entryId": "73", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "74": { + "listId": "1", + "entryId": "74", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "75": { + "listId": "1", + "entryId": "75", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "76": { + "listId": "1", + "entryId": "76", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "77": { + "listId": "1", + "entryId": "77", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "78": { + "listId": "1", + "entryId": "78", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "79": { + "listId": "1", + "entryId": "79", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "80": { + "listId": "1", + "entryId": "80", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "81": { + "listId": "1", + "entryId": "81", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "82": { + "listId": "1", + "entryId": "82", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "83": { + "listId": "1", + "entryId": "83", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "84": { + "listId": "1", + "entryId": "84", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "85": { + "listId": "1", + "entryId": "85", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "86": { + "listId": "1", + "entryId": "86", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "87": { + "listId": "1", + "entryId": "87", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "88": { + "listId": "1", + "entryId": "88", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "89": { + "listId": "1", + "entryId": "89", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "90": { + "listId": "1", + "entryId": "90", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "91": { + "listId": "1", + "entryId": "91", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "92": { + "listId": "1", + "entryId": "92", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "93": { + "listId": "1", + "entryId": "93", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "94": { + "listId": "1", + "entryId": "94", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "95": { + "listId": "1", + "entryId": "95", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "96": { + "listId": "1", + "entryId": "96", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "97": { + "listId": "1", + "entryId": "97", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "98": { + "listId": "1", + "entryId": "98", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "99": { + "listId": "1", + "entryId": "99", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "100": { + "listId": "1", + "entryId": "100", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "101": { + "listId": "2", + "entryId": "1", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "102": { + "listId": "2", + "entryId": "2", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "103": { + "listId": "2", + "entryId": "3", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "104": { + "listId": "2", + "entryId": "4", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "105": { + "listId": "2", + "entryId": "5", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "106": { + "listId": "2", + "entryId": "6", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "107": { + "listId": "2", + "entryId": "7", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "108": { + "listId": "2", + "entryId": "8", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "109": { + "listId": "2", + "entryId": "9", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "110": { + "listId": "2", + "entryId": "10", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "111": { + "listId": "2", + "entryId": "11", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "112": { + "listId": "2", + "entryId": "12", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "113": { + "listId": "2", + "entryId": "13", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "114": { + "listId": "2", + "entryId": "14", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "115": { + "listId": "2", + "entryId": "15", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "116": { + "listId": "2", + "entryId": "16", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "117": { + "listId": "2", + "entryId": "17", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "118": { + "listId": "2", + "entryId": "18", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "119": { + "listId": "2", + "entryId": "19", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "120": { + "listId": "2", + "entryId": "20", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "121": { + "listId": "2", + "entryId": "21", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "122": { + "listId": "2", + "entryId": "22", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "123": { + "listId": "2", + "entryId": "23", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "124": { + "listId": "2", + "entryId": "24", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "125": { + "listId": "2", + "entryId": "25", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "126": { + "listId": "2", + "entryId": "26", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "127": { + "listId": "2", + "entryId": "27", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "128": { + "listId": "2", + "entryId": "28", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "129": { + "listId": "2", + "entryId": "29", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "130": { + "listId": "2", + "entryId": "30", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "131": { + "listId": "2", + "entryId": "31", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "132": { + "listId": "2", + "entryId": "32", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "133": { + "listId": "2", + "entryId": "33", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "134": { + "listId": "2", + "entryId": "34", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "135": { + "listId": "2", + "entryId": "35", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "136": { + "listId": "2", + "entryId": "36", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "137": { + "listId": "2", + "entryId": "37", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "138": { + "listId": "2", + "entryId": "38", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "139": { + "listId": "2", + "entryId": "39", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "140": { + "listId": "2", + "entryId": "40", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "141": { + "listId": "2", + "entryId": "41", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "142": { + "listId": "2", + "entryId": "42", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "143": { + "listId": "2", + "entryId": "43", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "144": { + "listId": "2", + "entryId": "44", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "145": { + "listId": "2", + "entryId": "45", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "146": { + "listId": "2", + "entryId": "46", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "147": { + "listId": "2", + "entryId": "47", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "148": { + "listId": "2", + "entryId": "48", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "149": { + "listId": "2", + "entryId": "49", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "150": { + "listId": "2", + "entryId": "50", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "151": { + "listId": "2", + "entryId": "51", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "152": { + "listId": "2", + "entryId": "52", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "153": { + "listId": "2", + "entryId": "53", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "154": { + "listId": "2", + "entryId": "54", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "155": { + "listId": "2", + "entryId": "55", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "156": { + "listId": "2", + "entryId": "56", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "157": { + "listId": "2", + "entryId": "57", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "158": { + "listId": "2", + "entryId": "58", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "159": { + "listId": "2", + "entryId": "59", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "160": { + "listId": "2", + "entryId": "60", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "161": { + "listId": "2", + "entryId": "61", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "162": { + "listId": "2", + "entryId": "62", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "163": { + "listId": "2", + "entryId": "63", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "164": { + "listId": "2", + "entryId": "64", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "165": { + "listId": "2", + "entryId": "65", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "166": { + "listId": "2", + "entryId": "66", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "167": { + "listId": "2", + "entryId": "67", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "168": { + "listId": "2", + "entryId": "68", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "169": { + "listId": "2", + "entryId": "69", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "170": { + "listId": "2", + "entryId": "70", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "171": { + "listId": "2", + "entryId": "71", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "172": { + "listId": "2", + "entryId": "72", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "173": { + "listId": "2", + "entryId": "73", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "174": { + "listId": "2", + "entryId": "74", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "175": { + "listId": "2", + "entryId": "75", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "176": { + "listId": "2", + "entryId": "76", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "177": { + "listId": "2", + "entryId": "77", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "178": { + "listId": "2", + "entryId": "78", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "179": { + "listId": "2", + "entryId": "79", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "180": { + "listId": "2", + "entryId": "80", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "181": { + "listId": "2", + "entryId": "81", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "182": { + "listId": "2", + "entryId": "82", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "183": { + "listId": "2", + "entryId": "83", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "184": { + "listId": "2", + "entryId": "84", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "185": { + "listId": "2", + "entryId": "85", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "186": { + "listId": "2", + "entryId": "86", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "187": { + "listId": "2", + "entryId": "87", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "188": { + "listId": "2", + "entryId": "88", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "189": { + "listId": "2", + "entryId": "89", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "190": { + "listId": "2", + "entryId": "90", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "191": { + "listId": "2", + "entryId": "91", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "192": { + "listId": "2", + "entryId": "92", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "193": { + "listId": "2", + "entryId": "93", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "194": { + "listId": "2", + "entryId": "94", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "195": { + "listId": "2", + "entryId": "95", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "196": { + "listId": "2", + "entryId": "96", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "197": { + "listId": "2", + "entryId": "97", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "198": { + "listId": "2", + "entryId": "98", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "199": { + "listId": "2", + "entryId": "99", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "200": { + "listId": "2", + "entryId": "100", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "201": { + "listId": "3", + "entryId": "1", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "202": { + "listId": "3", + "entryId": "2", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "203": { + "listId": "3", + "entryId": "3", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "204": { + "listId": "3", + "entryId": "4", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "205": { + "listId": "3", + "entryId": "5", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "206": { + "listId": "3", + "entryId": "6", + "inPkts": "13188308", + "col_5": "0", + "inHCPkts": "13188308", + "inOctets": "1952795763", + "col_8": "3", + "inHCOctets": "14837697651", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "207": { + "listId": "3", + "entryId": "7", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "208": { + "listId": "3", + "entryId": "8", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "209": { + "listId": "3", + "entryId": "9", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "210": { + "listId": "3", + "entryId": "10", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "211": { + "listId": "3", + "entryId": "11", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "212": { + "listId": "3", + "entryId": "12", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "213": { + "listId": "3", + "entryId": "13", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "214": { + "listId": "3", + "entryId": "14", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "215": { + "listId": "3", + "entryId": "15", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "216": { + "listId": "3", + "entryId": "16", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "217": { + "listId": "3", + "entryId": "17", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "218": { + "listId": "3", + "entryId": "18", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "219": { + "listId": "3", + "entryId": "19", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "220": { + "listId": "3", + "entryId": "20", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "221": { + "listId": "3", + "entryId": "21", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "222": { + "listId": "3", + "entryId": "22", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "223": { + "listId": "3", + "entryId": "23", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "224": { + "listId": "3", + "entryId": "24", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "225": { + "listId": "3", + "entryId": "25", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "226": { + "listId": "3", + "entryId": "26", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "227": { + "listId": "3", + "entryId": "27", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "228": { + "listId": "3", + "entryId": "28", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "229": { + "listId": "3", + "entryId": "29", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "230": { + "listId": "3", + "entryId": "30", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "231": { + "listId": "3", + "entryId": "31", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "232": { + "listId": "3", + "entryId": "32", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "233": { + "listId": "3", + "entryId": "33", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "234": { + "listId": "3", + "entryId": "34", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "235": { + "listId": "3", + "entryId": "35", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "236": { + "listId": "3", + "entryId": "36", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "237": { + "listId": "3", + "entryId": "37", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "238": { + "listId": "3", + "entryId": "38", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "239": { + "listId": "3", + "entryId": "39", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "240": { + "listId": "3", + "entryId": "40", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "241": { + "listId": "3", + "entryId": "41", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "242": { + "listId": "3", + "entryId": "42", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "243": { + "listId": "3", + "entryId": "43", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "244": { + "listId": "3", + "entryId": "44", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "245": { + "listId": "3", + "entryId": "45", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "246": { + "listId": "3", + "entryId": "46", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "247": { + "listId": "3", + "entryId": "47", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "248": { + "listId": "3", + "entryId": "48", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "249": { + "listId": "3", + "entryId": "49", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "250": { + "listId": "3", + "entryId": "50", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "251": { + "listId": "3", + "entryId": "51", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "252": { + "listId": "3", + "entryId": "52", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "253": { + "listId": "3", + "entryId": "53", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "254": { + "listId": "3", + "entryId": "54", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "255": { + "listId": "3", + "entryId": "55", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "256": { + "listId": "3", + "entryId": "56", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "257": { + "listId": "3", + "entryId": "57", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "258": { + "listId": "3", + "entryId": "58", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "259": { + "listId": "3", + "entryId": "59", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "260": { + "listId": "3", + "entryId": "60", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "261": { + "listId": "3", + "entryId": "61", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "262": { + "listId": "3", + "entryId": "62", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "263": { + "listId": "3", + "entryId": "63", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "264": { + "listId": "3", + "entryId": "64", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "265": { + "listId": "3", + "entryId": "65", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "266": { + "listId": "3", + "entryId": "66", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "267": { + "listId": "3", + "entryId": "67", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "268": { + "listId": "3", + "entryId": "68", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "269": { + "listId": "3", + "entryId": "69", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "270": { + "listId": "3", + "entryId": "70", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "271": { + "listId": "3", + "entryId": "71", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "272": { + "listId": "3", + "entryId": "72", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "273": { + "listId": "3", + "entryId": "73", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "274": { + "listId": "3", + "entryId": "74", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "275": { + "listId": "3", + "entryId": "75", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "276": { + "listId": "3", + "entryId": "76", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "277": { + "listId": "3", + "entryId": "77", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "278": { + "listId": "3", + "entryId": "78", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "279": { + "listId": "3", + "entryId": "79", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "280": { + "listId": "3", + "entryId": "80", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "281": { + "listId": "3", + "entryId": "81", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "282": { + "listId": "3", + "entryId": "82", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "283": { + "listId": "3", + "entryId": "83", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "284": { + "listId": "3", + "entryId": "84", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "285": { + "listId": "3", + "entryId": "85", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "286": { + "listId": "3", + "entryId": "86", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "287": { + "listId": "3", + "entryId": "87", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "288": { + "listId": "3", + "entryId": "88", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "289": { + "listId": "3", + "entryId": "89", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "290": { + "listId": "3", + "entryId": "90", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "291": { + "listId": "3", + "entryId": "91", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "292": { + "listId": "3", + "entryId": "92", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "293": { + "listId": "3", + "entryId": "93", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "294": { + "listId": "3", + "entryId": "94", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "295": { + "listId": "3", + "entryId": "95", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "296": { + "listId": "3", + "entryId": "96", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "297": { + "listId": "3", + "entryId": "97", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "298": { + "listId": "3", + "entryId": "98", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "299": { + "listId": "3", + "entryId": "99", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "300": { + "listId": "3", + "entryId": "100", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "301": { + "listId": "4", + "entryId": "1", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "302": { + "listId": "4", + "entryId": "2", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "303": { + "listId": "4", + "entryId": "3", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "304": { + "listId": "4", + "entryId": "4", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "305": { + "listId": "4", + "entryId": "5", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "306": { + "listId": "4", + "entryId": "6", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "307": { + "listId": "4", + "entryId": "7", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "308": { + "listId": "4", + "entryId": "8", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "309": { + "listId": "4", + "entryId": "9", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "310": { + "listId": "4", + "entryId": "10", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "311": { + "listId": "4", + "entryId": "11", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "312": { + "listId": "4", + "entryId": "12", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "313": { + "listId": "4", + "entryId": "13", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "314": { + "listId": "4", + "entryId": "14", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "315": { + "listId": "4", + "entryId": "15", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "316": { + "listId": "4", + "entryId": "16", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "317": { + "listId": "4", + "entryId": "17", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "318": { + "listId": "4", + "entryId": "18", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "319": { + "listId": "4", + "entryId": "19", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "320": { + "listId": "4", + "entryId": "20", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "321": { + "listId": "4", + "entryId": "21", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "322": { + "listId": "4", + "entryId": "22", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "323": { + "listId": "4", + "entryId": "23", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "324": { + "listId": "4", + "entryId": "24", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "325": { + "listId": "4", + "entryId": "25", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "326": { + "listId": "4", + "entryId": "26", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "327": { + "listId": "4", + "entryId": "27", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "328": { + "listId": "4", + "entryId": "28", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "329": { + "listId": "4", + "entryId": "29", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "330": { + "listId": "4", + "entryId": "30", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "331": { + "listId": "4", + "entryId": "31", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "332": { + "listId": "4", + "entryId": "32", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "333": { + "listId": "4", + "entryId": "33", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "334": { + "listId": "4", + "entryId": "34", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "335": { + "listId": "4", + "entryId": "35", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "336": { + "listId": "4", + "entryId": "36", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "337": { + "listId": "4", + "entryId": "37", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "338": { + "listId": "4", + "entryId": "38", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "339": { + "listId": "4", + "entryId": "39", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "340": { + "listId": "4", + "entryId": "40", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "341": { + "listId": "4", + "entryId": "41", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "342": { + "listId": "4", + "entryId": "42", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "343": { + "listId": "4", + "entryId": "43", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "344": { + "listId": "4", + "entryId": "44", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "345": { + "listId": "4", + "entryId": "45", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "346": { + "listId": "4", + "entryId": "46", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "347": { + "listId": "4", + "entryId": "47", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "348": { + "listId": "4", + "entryId": "48", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "349": { + "listId": "4", + "entryId": "49", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "350": { + "listId": "4", + "entryId": "50", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "351": { + "listId": "4", + "entryId": "51", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "352": { + "listId": "4", + "entryId": "52", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "353": { + "listId": "4", + "entryId": "53", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "354": { + "listId": "4", + "entryId": "54", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "355": { + "listId": "4", + "entryId": "55", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "356": { + "listId": "4", + "entryId": "56", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "357": { + "listId": "4", + "entryId": "57", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "358": { + "listId": "4", + "entryId": "58", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "359": { + "listId": "4", + "entryId": "59", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "360": { + "listId": "4", + "entryId": "60", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "361": { + "listId": "4", + "entryId": "61", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "362": { + "listId": "4", + "entryId": "62", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "363": { + "listId": "4", + "entryId": "63", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "364": { + "listId": "4", + "entryId": "64", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "365": { + "listId": "4", + "entryId": "65", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "366": { + "listId": "4", + "entryId": "66", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "367": { + "listId": "4", + "entryId": "67", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "368": { + "listId": "4", + "entryId": "68", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "369": { + "listId": "4", + "entryId": "69", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "370": { + "listId": "4", + "entryId": "70", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "371": { + "listId": "4", + "entryId": "71", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "372": { + "listId": "4", + "entryId": "72", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "373": { + "listId": "4", + "entryId": "73", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "374": { + "listId": "4", + "entryId": "74", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "375": { + "listId": "4", + "entryId": "75", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "376": { + "listId": "4", + "entryId": "76", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "377": { + "listId": "4", + "entryId": "77", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "378": { + "listId": "4", + "entryId": "78", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "379": { + "listId": "4", + "entryId": "79", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "380": { + "listId": "4", + "entryId": "80", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "381": { + "listId": "4", + "entryId": "81", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "382": { + "listId": "4", + "entryId": "82", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "383": { + "listId": "4", + "entryId": "83", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "384": { + "listId": "4", + "entryId": "84", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "385": { + "listId": "4", + "entryId": "85", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "386": { + "listId": "4", + "entryId": "86", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "387": { + "listId": "4", + "entryId": "87", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "388": { + "listId": "4", + "entryId": "88", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "389": { + "listId": "4", + "entryId": "89", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "390": { + "listId": "4", + "entryId": "90", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "391": { + "listId": "4", + "entryId": "91", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "392": { + "listId": "4", + "entryId": "92", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "393": { + "listId": "4", + "entryId": "93", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "394": { + "listId": "4", + "entryId": "94", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "395": { + "listId": "4", + "entryId": "95", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "396": { + "listId": "4", + "entryId": "96", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "397": { + "listId": "4", + "entryId": "97", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "398": { + "listId": "4", + "entryId": "98", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "399": { + "listId": "4", + "entryId": "99", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + }, + "400": { + "listId": "4", + "entryId": "100", + "inPkts": "0", + "col_5": "0", + "inHCPkts": "0", + "inOctets": "0", + "col_8": "0", + "inHCOctets": "0", + "inPktsErr": "0", + "col_11": "0", + "inHCPktsErr": "0" + } + }, + "regulators": { + "1": { + "name": "150Mb_Reg", + "cirKbps": "154000", + "cbsKiB": "8", + "eirKbps": "40000", + "ebsKiB": "8", + "isBlind": "1", + "isCouple": "2", + "rowStatus": "1", + "workingRate": "1", + "cirMaxKbps": "165000", + "eirMaxKbps": "40000" + } + }, + "regulator_stats": { + "1": { + "col_2": "2716569892", + "col_3": "5", + "acceptHCOctets": "24191406372", + "col_5": "24075872", + "col_6": "0", + "acceptHCPkts": "24075872", + "acceptRateKbps": "0", + "col_9": "1327175847", + "col_10": "0", + "dropHCOctets": "1327175847", + "col_12": "1167711", + "col_13": "0", + "dropHCPkts": "1167711", + "dropRateKbps": "0", + "greenHCOctets": "15105527127", + "greenHCPkts": "16295758", + "yellowHCOctets": "9085879245", + "yellowHCPkts": "7780114", + "redHCOctets": "1327175847", + "redHCPkts": "1167711", + "greenRateKbps": "0", + "yellowRateKbps": "0", + "redRateKbps": "0" + } + }, + "cos_profiles": { + "1": { + "rowStatus": "1", + "name": "8P0D-8P0D", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "2": { + "rowStatus": "1", + "name": "8P0D-7P1D", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "3": { + "rowStatus": "1", + "name": "8P0D-6P2D", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "4": { + "rowStatus": "1", + "name": "8P0D-5P3D", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "51": { + "rowStatus": "1", + "name": "*EVEN_VLAN_UPLINK", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "52": { + "rowStatus": "1", + "name": "*ODD_VLAN_UPLINK", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "53": { + "rowStatus": "1", + "name": "*EVEN_VLAN_DOWNLIN", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "54": { + "rowStatus": "1", + "name": "*ODD_VLAN_DOWNLINK", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "55": { + "rowStatus": "1", + "name": "*LAG-1", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + }, + "56": { + "rowStatus": "1", + "name": "*LAG-2", + "type": "1", + "decodeDropBit": "2", + "encodeDropBit": "2" + } + }, + "ip_addresses": { + "1": { + "address": "10.13.60.102", + "prefixLength": "24", + "netmask": "255.255.255.0", + "ifIndex": "15", + "origin": "manual", + "status": "preferred" + }, + "2": { + "address": "192.168.1.254", + "prefixLength": "24", + "netmask": "255.255.255.0", + "ifIndex": "10", + "origin": "manual", + "status": "preferred" + } + }, + "lldp_neighbors": { + "1": { + "localPort": "1", + "remIndex": "1", + "chassisIdSubtype": "4", + "chassisId": "9C:E1:76:13:80:D9", + "portIdSubtype": "5", + "remPortId": "GigabitEthernet0/0/0/0", + "remPortDesc": "", + "remSysName": "LNBT-NCS-55A2-001.gilarivertel.", + "remSysDesc": "7.5.2, NCS-5500", + "capsSupported": "2", + "capsEnabled": "2", + "mgmtIPv4": "10.10.20.160", + "mgmtIPv6": "2604:57c0:0:0:0:0:0:36", + "localPortName": "EVEN_VLAN_UPLINK" + } + }, + "lldp_stats": { + "1": { + "txFrames": "3011688", + "rxFrames": "1333527", + "neighborsLearned": "12" + }, + "2": { + "txFrames": "3011688", + "rxFrames": "754988", + "neighborsLearned": "12" + }, + "3": { + "txFrames": "3011688", + "rxFrames": "1854347", + "neighborsLearned": "2" + }, + "4": { + "txFrames": "3011688", + "rxFrames": "2381333", + "neighborsLearned": "1" + }, + "5": { + "txFrames": "0", + "rxFrames": "0", + "neighborsLearned": "0" + } + }, + "lldp_raw": { + "lldp.1.1.9.1.2.1": "01 80 C2 00 00 0E", + "lldp.1.2.1.0": "15:18:20:13.08", + "lldp.1.2.2.0": "28", + "lldp.1.2.3.0": "27", + "lldp.1.2.4.0": "0", + "lldp.1.2.5.0": "27", + "lldp.1.2.6.1.3.1.1": "3011688", + "lldp.1.2.6.1.3.2.1": "3011688", + "lldp.1.2.6.1.3.3.1": "3011688", + "lldp.1.2.6.1.3.4.1": "3011688", + "lldp.1.2.6.1.3.5.1": "0", + "lldp.1.2.6.1.4.1.1": "0", + "lldp.1.2.6.1.4.2.1": "0", + "lldp.1.2.6.1.4.3.1": "0", + "lldp.1.2.6.1.4.4.1": "0", + "lldp.1.2.6.1.4.5.1": "0", + "lldp.1.2.7.1.3.1.1": "0", + "lldp.1.2.7.1.3.2.1": "0", + "lldp.1.2.7.1.3.3.1": "0", + "lldp.1.2.7.1.3.4.1": "0", + "lldp.1.2.7.1.3.5.1": "0", + "lldp.1.2.7.1.4.1.1": "0", + "lldp.1.2.7.1.4.2.1": "0", + "lldp.1.2.7.1.4.3.1": "0", + "lldp.1.2.7.1.4.4.1": "0", + "lldp.1.2.7.1.4.5.1": "0", + "lldp.1.2.7.1.5.1.1": "1333527", + "lldp.1.2.7.1.5.2.1": "754988", + "lldp.1.2.7.1.5.3.1": "1854347", + "lldp.1.2.7.1.5.4.1": "2381333", + "lldp.1.2.7.1.5.5.1": "0", + "lldp.1.2.7.1.6.1.1": "0", + "lldp.1.2.7.1.6.2.1": "0", + "lldp.1.2.7.1.6.3.1": "0", + "lldp.1.2.7.1.6.4.1": "0", + "lldp.1.2.7.1.6.5.1": "0", + "lldp.1.2.7.1.7.1.1": "0", + "lldp.1.2.7.1.7.2.1": "0", + "lldp.1.2.7.1.7.3.1": "12", + "lldp.1.2.7.1.7.4.1": "0", + "lldp.1.2.7.1.7.5.1": "0", + "lldp.1.2.7.1.8.1.1": "12", + "lldp.1.2.7.1.8.2.1": "12", + "lldp.1.2.7.1.8.3.1": "2", + "lldp.1.2.7.1.8.4.1": "1", + "lldp.1.2.7.1.8.5.1": "0", + "lldp.1.4.1.1.5.105317634.1.1.2": "4", + "lldp.1.4.1.1.6.105317634.1.1.2": "9C E1 76 13 80 D9", + "lldp.1.4.1.1.7.105317634.1.1.2": "5", + "lldp.1.4.1.1.8.105317634.1.1.2": "GigabitEthernet0/0/0/0", + "lldp.1.4.1.1.9.105317634.1.1.2": "", + "lldp.1.4.1.1.10.105317634.1.1.2": "LNBT-NCS-55A2-001.gilarivertel.", + "lldp.1.4.1.1.11.105317634.1.1.2": "7.5.2, NCS-5500", + "lldp.1.4.1.1.14.105317634.1.1.2": "2", + "lldp.1.4.1.1.15.105317634.1.1.2": "2", + "lldp.1.4.2.1.3.105317634.1.1.2.1.4.10.10.20.160": "2", + "lldp.1.4.2.1.3.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54": "2", + "lldp.1.4.2.1.4.105317634.1.1.2.1.4.10.10.20.160": "68", + "lldp.1.4.2.1.4.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54": "68", + "lldp.1.4.2.1.5.105317634.1.1.2.1.4.10.10.20.160": ".0.0.0", + "lldp.1.4.2.1.5.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54": ".0.0.0" + }, + "_module_oid_counts": { + "ACD-POLICY-MIB": 16816, + "STD-MIB": 5151, + "ACD-ALARM-MIB": 3496, + "ACD-FILTER-MIB": 2703, + "ACD-PAA-MIB": 2258, + "ACCEDIAN-ENTERPRISE": 1008, + "ACD-PORT-MIB": 698, + "ACD-SMAP-MIB": 465, + "IP-MIB": 281, + "IF-MIB::interfaces": 177, + "ACD-SFP-MIB": 156, + "IF-MIB::ifXTable": 137, + "IEEE-802.1": 118, + "SNMPv2-MIB::system": 65, + "ACD-DESC-MIB": 53, + "ACD-REGULATOR-MIB": 35, + "ACD-TID-MIB": 31, + "SNMPv2-MIB::snmp": 30, + "IPv6-MIB": 14, + "ACD-DISCOVERY-MIB": 2 + } +} \ No newline at end of file diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_walk_resolved.json b/walks/10-13-60-102_2026-02-27_11-23-07_walk_resolved.json new file mode 100644 index 0000000..4cf18b0 --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-23-07_walk_resolved.json @@ -0,0 +1,34072 @@ +{ + "ACCEDIAN-ENTERPRISE": { + "tables": { + "acdMibs": { + "21.1.1.1.2.1": "PORT-1-1", + "21.1.1.1.2.2": "PORT-1-2", + "21.1.1.1.2.3": "PORT-1-3", + "21.1.1.1.2.4": "PORT-1-4", + "21.1.1.1.2.5": "PORT-1-5", + "21.1.1.1.2.6": "PORT-1-6", + "21.1.1.1.2.7": "PORT-2-1", + "21.1.1.1.2.8": "PORT-2-2", + "21.1.1.1.2.9": "PORT-2-3", + "21.1.1.1.2.10": "PORT-2-4", + "21.1.1.1.2.11": "PORT-2-5", + "21.1.1.1.2.12": "PORT-2-6", + "21.1.1.1.2.13": "PORT-3-1", + "21.1.1.1.2.14": "PORT-3-2", + "21.1.1.1.2.15": "PORT-3-3", + "21.1.1.1.2.16": "PORT-3-4", + "21.1.1.1.2.17": "PORT-3-5", + "21.1.1.1.2.18": "PORT-3-6", + "21.1.1.1.2.19": "PORT-4-1", + "21.1.1.1.2.20": "PORT-4-2", + "21.1.1.1.2.21": "PORT-4-3", + "21.1.1.1.2.22": "PORT-4-4", + "21.1.1.1.2.23": "PORT-4-5", + "21.1.1.1.2.24": "PORT-4-6", + "21.1.1.1.2.25": "LAG-1-1", + "21.1.1.1.2.26": "LAG-1-2", + "21.1.1.1.2.27": "LAG-1-3", + "21.1.1.1.2.28": "LAG-1-4", + "21.1.1.1.2.29": "LAG-1-5", + "21.1.1.1.2.30": "LAG-1-6", + "21.1.1.1.2.31": "LAG-2-1", + "21.1.1.1.2.32": "LAG-2-2", + "21.1.1.1.2.33": "LAG-2-3", + "21.1.1.1.2.34": "LAG-2-4", + "21.1.1.1.2.35": "LAG-2-5", + "21.1.1.1.2.36": "LAG-2-6", + "21.1.1.1.2.37": "USR-1", + "21.1.1.1.2.38": "USR-2", + "21.1.1.1.2.39": "USR-3", + "21.1.1.1.2.40": "USR-4", + "21.1.1.1.2.41": "USR-5", + "21.1.1.1.2.42": "USR-6", + "21.1.1.1.2.43": "USR-7", + "21.1.1.1.2.44": "USR-8", + "21.1.1.1.2.45": "USR-9", + "21.1.1.1.2.46": "USR-10", + "21.1.1.1.2.47": "USR-11", + "21.1.1.1.2.48": "USR-12", + "21.1.1.1.3.1": "7014911", + "21.1.1.1.3.2": "0", + "21.1.1.1.3.3": "0", + "21.1.1.1.3.4": "0", + "21.1.1.1.3.5": "0", + "21.1.1.1.3.6": "0", + "21.1.1.1.3.7": "0", + "21.1.1.1.3.8": "0", + "21.1.1.1.3.9": "0", + "21.1.1.1.3.10": "0", + "21.1.1.1.3.11": "0", + "21.1.1.1.3.12": "0", + "21.1.1.1.3.13": "9214906", + "21.1.1.1.3.14": "0", + "21.1.1.1.3.15": "0", + "21.1.1.1.3.16": "0", + "21.1.1.1.3.17": "0", + "21.1.1.1.3.18": "0", + "21.1.1.1.3.19": "0", + "21.1.1.1.3.20": "0", + "21.1.1.1.3.21": "0", + "21.1.1.1.3.22": "0", + "21.1.1.1.3.23": "0", + "21.1.1.1.3.24": "0", + "21.1.1.1.3.25": "0", + "21.1.1.1.3.26": "0", + "21.1.1.1.3.27": "0", + "21.1.1.1.3.28": "0", + "21.1.1.1.3.29": "0", + "21.1.1.1.3.30": "0", + "21.1.1.1.3.31": "0", + "21.1.1.1.3.32": "0", + "21.1.1.1.3.33": "0", + "21.1.1.1.3.34": "0", + "21.1.1.1.3.35": "0", + "21.1.1.1.3.36": "0", + "21.1.1.1.3.37": "0", + "21.1.1.1.3.38": "0", + "21.1.1.1.3.39": "0", + "21.1.1.1.3.40": "0", + "21.1.1.1.3.41": "0", + "21.1.1.1.3.42": "0", + "21.1.1.1.3.43": "0", + "21.1.1.1.3.44": "0", + "21.1.1.1.3.45": "0", + "21.1.1.1.3.46": "0", + "21.1.1.1.3.47": "0", + "21.1.1.1.3.48": "0", + "21.1.1.1.4.1": "7308889290", + "21.1.1.1.4.2": "0", + "21.1.1.1.4.3": "0", + "21.1.1.1.4.4": "0", + "21.1.1.1.4.5": "0", + "21.1.1.1.4.6": "0", + "21.1.1.1.4.7": "0", + "21.1.1.1.4.8": "0", + "21.1.1.1.4.9": "0", + "21.1.1.1.4.10": "0", + "21.1.1.1.4.11": "0", + "21.1.1.1.4.12": "0", + "21.1.1.1.4.13": "7509661926", + "21.1.1.1.4.14": "0", + "21.1.1.1.4.15": "0", + "21.1.1.1.4.16": "0", + "21.1.1.1.4.17": "0", + "21.1.1.1.4.18": "0", + "21.1.1.1.4.19": "0", + "21.1.1.1.4.20": "0", + "21.1.1.1.4.21": "0", + "21.1.1.1.4.22": "0", + "21.1.1.1.4.23": "0", + "21.1.1.1.4.24": "0", + "21.1.1.1.4.25": "0", + "21.1.1.1.4.26": "0", + "21.1.1.1.4.27": "0", + "21.1.1.1.4.28": "0", + "21.1.1.1.4.29": "0", + "21.1.1.1.4.30": "0", + "21.1.1.1.4.31": "0", + "21.1.1.1.4.32": "0", + "21.1.1.1.4.33": "0", + "21.1.1.1.4.34": "0", + "21.1.1.1.4.35": "0", + "21.1.1.1.4.36": "0", + "21.1.1.1.4.37": "0", + "21.1.1.1.4.38": "0", + "21.1.1.1.4.39": "0", + "21.1.1.1.4.40": "0", + "21.1.1.1.4.41": "0", + "21.1.1.1.4.42": "0", + "21.1.1.1.4.43": "0", + "21.1.1.1.4.44": "0", + "21.1.1.1.4.45": "0", + "21.1.1.1.4.46": "0", + "21.1.1.1.4.47": "0", + "21.1.1.1.4.48": "0", + "21.1.1.1.5.1": "3019843", + "21.1.1.1.5.2": "0", + "21.1.1.1.5.3": "0", + "21.1.1.1.5.4": "0", + "21.1.1.1.5.5": "0", + "21.1.1.1.5.6": "0", + "21.1.1.1.5.7": "0", + "21.1.1.1.5.8": "0", + "21.1.1.1.5.9": "0", + "21.1.1.1.5.10": "0", + "21.1.1.1.5.11": "0", + "21.1.1.1.5.12": "0", + "21.1.1.1.5.13": "3663974", + "21.1.1.1.5.14": "0", + "21.1.1.1.5.15": "0", + "21.1.1.1.5.16": "0", + "21.1.1.1.5.17": "0", + "21.1.1.1.5.18": "0", + "21.1.1.1.5.19": "0", + "21.1.1.1.5.20": "0", + "21.1.1.1.5.21": "0", + "21.1.1.1.5.22": "0", + "21.1.1.1.5.23": "0", + "21.1.1.1.5.24": "0", + "21.1.1.1.5.25": "0", + "21.1.1.1.5.26": "0", + "21.1.1.1.5.27": "0", + "21.1.1.1.5.28": "0", + "21.1.1.1.5.29": "0", + "21.1.1.1.5.30": "0", + "21.1.1.1.5.31": "0", + "21.1.1.1.5.32": "0", + "21.1.1.1.5.33": "0", + "21.1.1.1.5.34": "0", + "21.1.1.1.5.35": "0", + "21.1.1.1.5.36": "0", + "21.1.1.1.5.37": "0", + "21.1.1.1.5.38": "0", + "21.1.1.1.5.39": "0", + "21.1.1.1.5.40": "0", + "21.1.1.1.5.41": "0", + "21.1.1.1.5.42": "0", + "21.1.1.1.5.43": "0", + "21.1.1.1.5.44": "0", + "21.1.1.1.5.45": "0", + "21.1.1.1.5.46": "0", + "21.1.1.1.5.47": "0", + "21.1.1.1.5.48": "0", + "21.1.1.1.6.1": "3125030629", + "21.1.1.1.6.2": "0", + "21.1.1.1.6.3": "0", + "21.1.1.1.6.4": "0", + "21.1.1.1.6.5": "0", + "21.1.1.1.6.6": "0", + "21.1.1.1.6.7": "0", + "21.1.1.1.6.8": "0", + "21.1.1.1.6.9": "0", + "21.1.1.1.6.10": "0", + "21.1.1.1.6.11": "0", + "21.1.1.1.6.12": "0", + "21.1.1.1.6.13": "4257941434", + "21.1.1.1.6.14": "0", + "21.1.1.1.6.15": "0", + "21.1.1.1.6.16": "0", + "21.1.1.1.6.17": "0", + "21.1.1.1.6.18": "0", + "21.1.1.1.6.19": "0", + "21.1.1.1.6.20": "0", + "21.1.1.1.6.21": "0", + "21.1.1.1.6.22": "0", + "21.1.1.1.6.23": "0", + "21.1.1.1.6.24": "0", + "21.1.1.1.6.25": "0", + "21.1.1.1.6.26": "0", + "21.1.1.1.6.27": "0", + "21.1.1.1.6.28": "0", + "21.1.1.1.6.29": "0", + "21.1.1.1.6.30": "0", + "21.1.1.1.6.31": "0", + "21.1.1.1.6.32": "0", + "21.1.1.1.6.33": "0", + "21.1.1.1.6.34": "0", + "21.1.1.1.6.35": "0", + "21.1.1.1.6.36": "0", + "21.1.1.1.6.37": "0", + "21.1.1.1.6.38": "0", + "21.1.1.1.6.39": "0", + "21.1.1.1.6.40": "0", + "21.1.1.1.6.41": "0", + "21.1.1.1.6.42": "0", + "21.1.1.1.6.43": "0", + "21.1.1.1.6.44": "0", + "21.1.1.1.6.45": "0", + "21.1.1.1.6.46": "0", + "21.1.1.1.6.47": "0", + "21.1.1.1.6.48": "0", + "21.1.1.1.7.1": "1429687", + "21.1.1.1.7.2": "0", + "21.1.1.1.7.3": "0", + "21.1.1.1.7.4": "0", + "21.1.1.1.7.5": "0", + "21.1.1.1.7.6": "0", + "21.1.1.1.7.7": "0", + "21.1.1.1.7.8": "0", + "21.1.1.1.7.9": "0", + "21.1.1.1.7.10": "0", + "21.1.1.1.7.11": "0", + "21.1.1.1.7.12": "0", + "21.1.1.1.7.13": "10441", + "21.1.1.1.7.14": "0", + "21.1.1.1.7.15": "0", + "21.1.1.1.7.16": "0", + "21.1.1.1.7.17": "0", + "21.1.1.1.7.18": "0", + "21.1.1.1.7.19": "0", + "21.1.1.1.7.20": "0", + "21.1.1.1.7.21": "0", + "21.1.1.1.7.22": "0", + "21.1.1.1.7.23": "0", + "21.1.1.1.7.24": "0", + "21.1.1.1.7.25": "0", + "21.1.1.1.7.26": "0", + "21.1.1.1.7.27": "0", + "21.1.1.1.7.28": "0", + "21.1.1.1.7.29": "0", + "21.1.1.1.7.30": "0", + "21.1.1.1.7.31": "0", + "21.1.1.1.7.32": "0", + "21.1.1.1.7.33": "0", + "21.1.1.1.7.34": "0", + "21.1.1.1.7.35": "0", + "21.1.1.1.7.36": "0", + "21.1.1.1.7.37": "0", + "21.1.1.1.7.38": "0", + "21.1.1.1.7.39": "0", + "21.1.1.1.7.40": "0", + "21.1.1.1.7.41": "0", + "21.1.1.1.7.42": "0", + "21.1.1.1.7.43": "0", + "21.1.1.1.7.44": "0", + "21.1.1.1.7.45": "0", + "21.1.1.1.7.46": "0", + "21.1.1.1.7.47": "0", + "21.1.1.1.7.48": "0", + "21.1.1.1.8.1": "2165339780", + "21.1.1.1.8.2": "0", + "21.1.1.1.8.3": "0", + "21.1.1.1.8.4": "0", + "21.1.1.1.8.5": "0", + "21.1.1.1.8.6": "0", + "21.1.1.1.8.7": "0", + "21.1.1.1.8.8": "0", + "21.1.1.1.8.9": "0", + "21.1.1.1.8.10": "0", + "21.1.1.1.8.11": "0", + "21.1.1.1.8.12": "0", + "21.1.1.1.8.13": "15588278", + "21.1.1.1.8.14": "0", + "21.1.1.1.8.15": "0", + "21.1.1.1.8.16": "0", + "21.1.1.1.8.17": "0", + "21.1.1.1.8.18": "0", + "21.1.1.1.8.19": "0", + "21.1.1.1.8.20": "0", + "21.1.1.1.8.21": "0", + "21.1.1.1.8.22": "0", + "21.1.1.1.8.23": "0", + "21.1.1.1.8.24": "0", + "21.1.1.1.8.25": "0", + "21.1.1.1.8.26": "0", + "21.1.1.1.8.27": "0", + "21.1.1.1.8.28": "0", + "21.1.1.1.8.29": "0", + "21.1.1.1.8.30": "0", + "21.1.1.1.8.31": "0", + "21.1.1.1.8.32": "0", + "21.1.1.1.8.33": "0", + "21.1.1.1.8.34": "0", + "21.1.1.1.8.35": "0", + "21.1.1.1.8.36": "0", + "21.1.1.1.8.37": "0", + "21.1.1.1.8.38": "0", + "21.1.1.1.8.39": "0", + "21.1.1.1.8.40": "0", + "21.1.1.1.8.41": "0", + "21.1.1.1.8.42": "0", + "21.1.1.1.8.43": "0", + "21.1.1.1.8.44": "0", + "21.1.1.1.8.45": "0", + "21.1.1.1.8.46": "0", + "21.1.1.1.8.47": "0", + "21.1.1.1.8.48": "0", + "21.1.1.1.9.1": "1063300", + "21.1.1.1.9.2": "0", + "21.1.1.1.9.3": "0", + "21.1.1.1.9.4": "0", + "21.1.1.1.9.5": "0", + "21.1.1.1.9.6": "0", + "21.1.1.1.9.7": "0", + "21.1.1.1.9.8": "0", + "21.1.1.1.9.9": "0", + "21.1.1.1.9.10": "0", + "21.1.1.1.9.11": "0", + "21.1.1.1.9.12": "0", + "21.1.1.1.9.13": "53507", + "21.1.1.1.9.14": "0", + "21.1.1.1.9.15": "0", + "21.1.1.1.9.16": "0", + "21.1.1.1.9.17": "0", + "21.1.1.1.9.18": "0", + "21.1.1.1.9.19": "0", + "21.1.1.1.9.20": "0", + "21.1.1.1.9.21": "0", + "21.1.1.1.9.22": "0", + "21.1.1.1.9.23": "0", + "21.1.1.1.9.24": "0", + "21.1.1.1.9.25": "0", + "21.1.1.1.9.26": "0", + "21.1.1.1.9.27": "0", + "21.1.1.1.9.28": "0", + "21.1.1.1.9.29": "0", + "21.1.1.1.9.30": "0", + "21.1.1.1.9.31": "0", + "21.1.1.1.9.32": "0", + "21.1.1.1.9.33": "0", + "21.1.1.1.9.34": "0", + "21.1.1.1.9.35": "0", + "21.1.1.1.9.36": "0", + "21.1.1.1.9.37": "0", + "21.1.1.1.9.38": "0", + "21.1.1.1.9.39": "0", + "21.1.1.1.9.40": "0", + "21.1.1.1.9.41": "0", + "21.1.1.1.9.42": "0", + "21.1.1.1.9.43": "0", + "21.1.1.1.9.44": "0", + "21.1.1.1.9.45": "0", + "21.1.1.1.9.46": "0", + "21.1.1.1.9.47": "0", + "21.1.1.1.9.48": "0", + "21.1.1.1.10.1": "1610461395", + "21.1.1.1.10.2": "0", + "21.1.1.1.10.3": "0", + "21.1.1.1.10.4": "0", + "21.1.1.1.10.5": "0", + "21.1.1.1.10.6": "0", + "21.1.1.1.10.7": "0", + "21.1.1.1.10.8": "0", + "21.1.1.1.10.9": "0", + "21.1.1.1.10.10": "0", + "21.1.1.1.10.11": "0", + "21.1.1.1.10.12": "0", + "21.1.1.1.10.13": "79915650", + "21.1.1.1.10.14": "0", + "21.1.1.1.10.15": "0", + "21.1.1.1.10.16": "0", + "21.1.1.1.10.17": "0", + "21.1.1.1.10.18": "0", + "21.1.1.1.10.19": "0", + "21.1.1.1.10.20": "0", + "21.1.1.1.10.21": "0", + "21.1.1.1.10.22": "0", + "21.1.1.1.10.23": "0", + "21.1.1.1.10.24": "0", + "21.1.1.1.10.25": "0", + "21.1.1.1.10.26": "0", + "21.1.1.1.10.27": "0", + "21.1.1.1.10.28": "0", + "21.1.1.1.10.29": "0", + "21.1.1.1.10.30": "0", + "21.1.1.1.10.31": "0", + "21.1.1.1.10.32": "0", + "21.1.1.1.10.33": "0", + "21.1.1.1.10.34": "0", + "21.1.1.1.10.35": "0", + "21.1.1.1.10.36": "0", + "21.1.1.1.10.37": "0", + "21.1.1.1.10.38": "0", + "21.1.1.1.10.39": "0", + "21.1.1.1.10.40": "0", + "21.1.1.1.10.41": "0", + "21.1.1.1.10.42": "0", + "21.1.1.1.10.43": "0", + "21.1.1.1.10.44": "0", + "21.1.1.1.10.45": "0", + "21.1.1.1.10.46": "0", + "21.1.1.1.10.47": "0", + "21.1.1.1.10.48": "0", + "21.1.1.1.11.1": "3700", + "21.1.1.1.11.2": "0", + "21.1.1.1.11.3": "0", + "21.1.1.1.11.4": "0", + "21.1.1.1.11.5": "0", + "21.1.1.1.11.6": "0", + "21.1.1.1.11.7": "0", + "21.1.1.1.11.8": "0", + "21.1.1.1.11.9": "0", + "21.1.1.1.11.10": "0", + "21.1.1.1.11.11": "0", + "21.1.1.1.11.12": "0", + "21.1.1.1.11.13": "2127", + "21.1.1.1.11.14": "0", + "21.1.1.1.11.15": "0", + "21.1.1.1.11.16": "0", + "21.1.1.1.11.17": "0", + "21.1.1.1.11.18": "0", + "21.1.1.1.11.19": "0", + "21.1.1.1.11.20": "0", + "21.1.1.1.11.21": "0", + "21.1.1.1.11.22": "0", + "21.1.1.1.11.23": "0", + "21.1.1.1.11.24": "0", + "21.1.1.1.11.25": "0", + "21.1.1.1.11.26": "0", + "21.1.1.1.11.27": "0", + "21.1.1.1.11.28": "0", + "21.1.1.1.11.29": "0", + "21.1.1.1.11.30": "0", + "21.1.1.1.11.31": "0", + "21.1.1.1.11.32": "0", + "21.1.1.1.11.33": "0", + "21.1.1.1.11.34": "0", + "21.1.1.1.11.35": "0", + "21.1.1.1.11.36": "0", + "21.1.1.1.11.37": "0", + "21.1.1.1.11.38": "0", + "21.1.1.1.11.39": "0", + "21.1.1.1.11.40": "0", + "21.1.1.1.11.41": "0", + "21.1.1.1.11.42": "0", + "21.1.1.1.11.43": "0", + "21.1.1.1.11.44": "0", + "21.1.1.1.11.45": "0", + "21.1.1.1.11.46": "0", + "21.1.1.1.11.47": "0", + "21.1.1.1.11.48": "0", + "21.1.1.1.12.1": "5602774", + "21.1.1.1.12.2": "0", + "21.1.1.1.12.3": "0", + "21.1.1.1.12.4": "0", + "21.1.1.1.12.5": "0", + "21.1.1.1.12.6": "0", + "21.1.1.1.12.7": "0", + "21.1.1.1.12.8": "0", + "21.1.1.1.12.9": "0", + "21.1.1.1.12.10": "0", + "21.1.1.1.12.11": "0", + "21.1.1.1.12.12": "0", + "21.1.1.1.12.13": "3177738", + "21.1.1.1.12.14": "0", + "21.1.1.1.12.15": "0", + "21.1.1.1.12.16": "0", + "21.1.1.1.12.17": "0", + "21.1.1.1.12.18": "0", + "21.1.1.1.12.19": "0", + "21.1.1.1.12.20": "0", + "21.1.1.1.12.21": "0", + "21.1.1.1.12.22": "0", + "21.1.1.1.12.23": "0", + "21.1.1.1.12.24": "0", + "21.1.1.1.12.25": "0", + "21.1.1.1.12.26": "0", + "21.1.1.1.12.27": "0", + "21.1.1.1.12.28": "0", + "21.1.1.1.12.29": "0", + "21.1.1.1.12.30": "0", + "21.1.1.1.12.31": "0", + "21.1.1.1.12.32": "0", + "21.1.1.1.12.33": "0", + "21.1.1.1.12.34": "0", + "21.1.1.1.12.35": "0", + "21.1.1.1.12.36": "0", + "21.1.1.1.12.37": "0", + "21.1.1.1.12.38": "0", + "21.1.1.1.12.39": "0", + "21.1.1.1.12.40": "0", + "21.1.1.1.12.41": "0", + "21.1.1.1.12.42": "0", + "21.1.1.1.12.43": "0", + "21.1.1.1.12.44": "0", + "21.1.1.1.12.45": "0", + "21.1.1.1.12.46": "0", + "21.1.1.1.12.47": "0", + "21.1.1.1.12.48": "0", + "21.1.1.1.13.1": "2769", + "21.1.1.1.13.2": "0", + "21.1.1.1.13.3": "0", + "21.1.1.1.13.4": "0", + "21.1.1.1.13.5": "0", + "21.1.1.1.13.6": "0", + "21.1.1.1.13.7": "0", + "21.1.1.1.13.8": "0", + "21.1.1.1.13.9": "0", + "21.1.1.1.13.10": "0", + "21.1.1.1.13.11": "0", + "21.1.1.1.13.12": "0", + "21.1.1.1.13.13": "11285", + "21.1.1.1.13.14": "0", + "21.1.1.1.13.15": "0", + "21.1.1.1.13.16": "0", + "21.1.1.1.13.17": "0", + "21.1.1.1.13.18": "0", + "21.1.1.1.13.19": "0", + "21.1.1.1.13.20": "0", + "21.1.1.1.13.21": "0", + "21.1.1.1.13.22": "0", + "21.1.1.1.13.23": "0", + "21.1.1.1.13.24": "0", + "21.1.1.1.13.25": "0", + "21.1.1.1.13.26": "0", + "21.1.1.1.13.27": "0", + "21.1.1.1.13.28": "0", + "21.1.1.1.13.29": "0", + "21.1.1.1.13.30": "0", + "21.1.1.1.13.31": "0", + "21.1.1.1.13.32": "0", + "21.1.1.1.13.33": "0", + "21.1.1.1.13.34": "0", + "21.1.1.1.13.35": "0", + "21.1.1.1.13.36": "0", + "21.1.1.1.13.37": "0", + "21.1.1.1.13.38": "0", + "21.1.1.1.13.39": "0", + "21.1.1.1.13.40": "0", + "21.1.1.1.13.41": "0", + "21.1.1.1.13.42": "0", + "21.1.1.1.13.43": "0", + "21.1.1.1.13.44": "0", + "21.1.1.1.13.45": "0", + "21.1.1.1.13.46": "0", + "21.1.1.1.13.47": "0", + "21.1.1.1.13.48": "0", + "21.1.1.1.14.1": "4193588", + "21.1.1.1.14.2": "0", + "21.1.1.1.14.3": "0", + "21.1.1.1.14.4": "0", + "21.1.1.1.14.5": "0", + "21.1.1.1.14.6": "0", + "21.1.1.1.14.7": "0", + "21.1.1.1.14.8": "0", + "21.1.1.1.14.9": "0", + "21.1.1.1.14.10": "0", + "21.1.1.1.14.11": "0", + "21.1.1.1.14.12": "0", + "21.1.1.1.14.13": "16857358", + "21.1.1.1.14.14": "0", + "21.1.1.1.14.15": "0", + "21.1.1.1.14.16": "0", + "21.1.1.1.14.17": "0", + "21.1.1.1.14.18": "0", + "21.1.1.1.14.19": "0", + "21.1.1.1.14.20": "0", + "21.1.1.1.14.21": "0", + "21.1.1.1.14.22": "0", + "21.1.1.1.14.23": "0", + "21.1.1.1.14.24": "0", + "21.1.1.1.14.25": "0", + "21.1.1.1.14.26": "0", + "21.1.1.1.14.27": "0", + "21.1.1.1.14.28": "0", + "21.1.1.1.14.29": "0", + "21.1.1.1.14.30": "0", + "21.1.1.1.14.31": "0", + "21.1.1.1.14.32": "0", + "21.1.1.1.14.33": "0", + "21.1.1.1.14.34": "0", + "21.1.1.1.14.35": "0", + "21.1.1.1.14.36": "0", + "21.1.1.1.14.37": "0", + "21.1.1.1.14.38": "0", + "21.1.1.1.14.39": "0", + "21.1.1.1.14.40": "0", + "21.1.1.1.14.41": "0", + "21.1.1.1.14.42": "0", + "21.1.1.1.14.43": "0", + "21.1.1.1.14.44": "0", + "21.1.1.1.14.45": "0", + "21.1.1.1.14.46": "0", + "21.1.1.1.14.47": "0", + "21.1.1.1.14.48": "0", + "21.1.1.1.15.1": "0", + "21.1.1.1.15.2": "0", + "21.1.1.1.15.3": "0", + "21.1.1.1.15.4": "0", + "21.1.1.1.15.5": "0", + "21.1.1.1.15.6": "0", + "21.1.1.1.15.7": "0", + "21.1.1.1.15.8": "0", + "21.1.1.1.15.9": "0", + "21.1.1.1.15.10": "0", + "21.1.1.1.15.11": "0", + "21.1.1.1.15.12": "0", + "21.1.1.1.15.13": "0", + "21.1.1.1.15.14": "0", + "21.1.1.1.15.15": "0", + "21.1.1.1.15.16": "0", + "21.1.1.1.15.17": "0", + "21.1.1.1.15.18": "0", + "21.1.1.1.15.19": "0", + "21.1.1.1.15.20": "0", + "21.1.1.1.15.21": "0", + "21.1.1.1.15.22": "0", + "21.1.1.1.15.23": "0", + "21.1.1.1.15.24": "0", + "21.1.1.1.15.25": "0", + "21.1.1.1.15.26": "0", + "21.1.1.1.15.27": "0", + "21.1.1.1.15.28": "0", + "21.1.1.1.15.29": "0", + "21.1.1.1.15.30": "0", + "21.1.1.1.15.31": "0", + "21.1.1.1.15.32": "0", + "21.1.1.1.15.33": "0", + "21.1.1.1.15.34": "0", + "21.1.1.1.15.35": "0", + "21.1.1.1.15.36": "0", + "21.1.1.1.15.37": "0", + "21.1.1.1.15.38": "0", + "21.1.1.1.15.39": "0", + "21.1.1.1.15.40": "0", + "21.1.1.1.15.41": "0", + "21.1.1.1.15.42": "0", + "21.1.1.1.15.43": "0", + "21.1.1.1.15.44": "0", + "21.1.1.1.15.45": "0", + "21.1.1.1.15.46": "0", + "21.1.1.1.15.47": "0", + "21.1.1.1.15.48": "0", + "21.1.1.1.16.1": "0", + "21.1.1.1.16.2": "0", + "21.1.1.1.16.3": "0", + "21.1.1.1.16.4": "0", + "21.1.1.1.16.5": "0", + "21.1.1.1.16.6": "0", + "21.1.1.1.16.7": "0", + "21.1.1.1.16.8": "0", + "21.1.1.1.16.9": "0", + "21.1.1.1.16.10": "0", + "21.1.1.1.16.11": "0", + "21.1.1.1.16.12": "0", + "21.1.1.1.16.13": "0", + "21.1.1.1.16.14": "0", + "21.1.1.1.16.15": "0", + "21.1.1.1.16.16": "0", + "21.1.1.1.16.17": "0", + "21.1.1.1.16.18": "0", + "21.1.1.1.16.19": "0", + "21.1.1.1.16.20": "0", + "21.1.1.1.16.21": "0", + "21.1.1.1.16.22": "0", + "21.1.1.1.16.23": "0", + "21.1.1.1.16.24": "0", + "21.1.1.1.16.25": "0", + "21.1.1.1.16.26": "0", + "21.1.1.1.16.27": "0", + "21.1.1.1.16.28": "0", + "21.1.1.1.16.29": "0", + "21.1.1.1.16.30": "0", + "21.1.1.1.16.31": "0", + "21.1.1.1.16.32": "0", + "21.1.1.1.16.33": "0", + "21.1.1.1.16.34": "0", + "21.1.1.1.16.35": "0", + "21.1.1.1.16.36": "0", + "21.1.1.1.16.37": "0", + "21.1.1.1.16.38": "0", + "21.1.1.1.16.39": "0", + "21.1.1.1.16.40": "0", + "21.1.1.1.16.41": "0", + "21.1.1.1.16.42": "0", + "21.1.1.1.16.43": "0", + "21.1.1.1.16.44": "0", + "21.1.1.1.16.45": "0", + "21.1.1.1.16.46": "0", + "21.1.1.1.16.47": "0", + "21.1.1.1.16.48": "0", + "21.1.1.1.17.1": "0", + "21.1.1.1.17.2": "0", + "21.1.1.1.17.3": "0", + "21.1.1.1.17.4": "0", + "21.1.1.1.17.5": "0", + "21.1.1.1.17.6": "0", + "21.1.1.1.17.7": "0", + "21.1.1.1.17.8": "0", + "21.1.1.1.17.9": "0", + "21.1.1.1.17.10": "0", + "21.1.1.1.17.11": "0", + "21.1.1.1.17.12": "0", + "21.1.1.1.17.13": "0", + "21.1.1.1.17.14": "0", + "21.1.1.1.17.15": "0", + "21.1.1.1.17.16": "0", + "21.1.1.1.17.17": "0", + "21.1.1.1.17.18": "0", + "21.1.1.1.17.19": "0", + "21.1.1.1.17.20": "0", + "21.1.1.1.17.21": "0", + "21.1.1.1.17.22": "0", + "21.1.1.1.17.23": "0", + "21.1.1.1.17.24": "0", + "21.1.1.1.17.25": "0", + "21.1.1.1.17.26": "0", + "21.1.1.1.17.27": "0", + "21.1.1.1.17.28": "0", + "21.1.1.1.17.29": "0", + "21.1.1.1.17.30": "0", + "21.1.1.1.17.31": "0", + "21.1.1.1.17.32": "0", + "21.1.1.1.17.33": "0", + "21.1.1.1.17.34": "0", + "21.1.1.1.17.35": "0", + "21.1.1.1.17.36": "0", + "21.1.1.1.17.37": "0", + "21.1.1.1.17.38": "0", + "21.1.1.1.17.39": "0", + "21.1.1.1.17.40": "0", + "21.1.1.1.17.41": "0", + "21.1.1.1.17.42": "0", + "21.1.1.1.17.43": "0", + "21.1.1.1.17.44": "0", + "21.1.1.1.17.45": "0", + "21.1.1.1.17.46": "0", + "21.1.1.1.17.47": "0", + "21.1.1.1.17.48": "0", + "21.1.1.1.18.1": "0", + "21.1.1.1.18.2": "0", + "21.1.1.1.18.3": "0", + "21.1.1.1.18.4": "0", + "21.1.1.1.18.5": "0", + "21.1.1.1.18.6": "0", + "21.1.1.1.18.7": "0", + "21.1.1.1.18.8": "0", + "21.1.1.1.18.9": "0", + "21.1.1.1.18.10": "0", + "21.1.1.1.18.11": "0", + "21.1.1.1.18.12": "0", + "21.1.1.1.18.13": "0", + "21.1.1.1.18.14": "0", + "21.1.1.1.18.15": "0", + "21.1.1.1.18.16": "0", + "21.1.1.1.18.17": "0", + "21.1.1.1.18.18": "0", + "21.1.1.1.18.19": "0", + "21.1.1.1.18.20": "0", + "21.1.1.1.18.21": "0", + "21.1.1.1.18.22": "0", + "21.1.1.1.18.23": "0", + "21.1.1.1.18.24": "0", + "21.1.1.1.18.25": "0", + "21.1.1.1.18.26": "0", + "21.1.1.1.18.27": "0", + "21.1.1.1.18.28": "0", + "21.1.1.1.18.29": "0", + "21.1.1.1.18.30": "0", + "21.1.1.1.18.31": "0", + "21.1.1.1.18.32": "0", + "21.1.1.1.18.33": "0", + "21.1.1.1.18.34": "0", + "21.1.1.1.18.35": "0", + "21.1.1.1.18.36": "0", + "21.1.1.1.18.37": "0", + "21.1.1.1.18.38": "0", + "21.1.1.1.18.39": "0", + "21.1.1.1.18.40": "0", + "21.1.1.1.18.41": "0", + "21.1.1.1.18.42": "0", + "21.1.1.1.18.43": "0", + "21.1.1.1.18.44": "0", + "21.1.1.1.18.45": "0", + "21.1.1.1.18.46": "0", + "21.1.1.1.18.47": "0", + "21.1.1.1.18.48": "0", + "21.1.1.1.19.1": "12527741", + "21.1.1.1.19.2": "0", + "21.1.1.1.19.3": "0", + "21.1.1.1.19.4": "0", + "21.1.1.1.19.5": "0", + "21.1.1.1.19.6": "0", + "21.1.1.1.19.7": "0", + "21.1.1.1.19.8": "0", + "21.1.1.1.19.9": "0", + "21.1.1.1.19.10": "0", + "21.1.1.1.19.11": "0", + "21.1.1.1.19.12": "0", + "21.1.1.1.19.13": "12942828", + "21.1.1.1.19.14": "0", + "21.1.1.1.19.15": "0", + "21.1.1.1.19.16": "0", + "21.1.1.1.19.17": "0", + "21.1.1.1.19.18": "0", + "21.1.1.1.19.19": "0", + "21.1.1.1.19.20": "0", + "21.1.1.1.19.21": "0", + "21.1.1.1.19.22": "0", + "21.1.1.1.19.23": "0", + "21.1.1.1.19.24": "0", + "21.1.1.1.19.25": "0", + "21.1.1.1.19.26": "0", + "21.1.1.1.19.27": "0", + "21.1.1.1.19.28": "0", + "21.1.1.1.19.29": "0", + "21.1.1.1.19.30": "0", + "21.1.1.1.19.31": "0", + "21.1.1.1.19.32": "0", + "21.1.1.1.19.33": "0", + "21.1.1.1.19.34": "0", + "21.1.1.1.19.35": "0", + "21.1.1.1.19.36": "0", + "21.1.1.1.19.37": "0", + "21.1.1.1.19.38": "0", + "21.1.1.1.19.39": "0", + "21.1.1.1.19.40": "0", + "21.1.1.1.19.41": "0", + "21.1.1.1.19.42": "0", + "21.1.1.1.19.43": "0", + "21.1.1.1.19.44": "0", + "21.1.1.1.19.45": "0", + "21.1.1.1.19.46": "0", + "21.1.1.1.19.47": "0", + "21.1.1.1.19.48": "0", + "21.1.1.1.20.1": "14209721094", + "21.1.1.1.20.2": "0", + "21.1.1.1.20.3": "0", + "21.1.1.1.20.4": "0", + "21.1.1.1.20.5": "0", + "21.1.1.1.20.6": "0", + "21.1.1.1.20.7": "0", + "21.1.1.1.20.8": "0", + "21.1.1.1.20.9": "0", + "21.1.1.1.20.10": "0", + "21.1.1.1.20.11": "0", + "21.1.1.1.20.12": "0", + "21.1.1.1.20.13": "11863107288", + "21.1.1.1.20.14": "0", + "21.1.1.1.20.15": "0", + "21.1.1.1.20.16": "0", + "21.1.1.1.20.17": "0", + "21.1.1.1.20.18": "0", + "21.1.1.1.20.19": "0", + "21.1.1.1.20.20": "0", + "21.1.1.1.20.21": "0", + "21.1.1.1.20.22": "0", + "21.1.1.1.20.23": "0", + "21.1.1.1.20.24": "0", + "21.1.1.1.20.25": "0", + "21.1.1.1.20.26": "0", + "21.1.1.1.20.27": "0", + "21.1.1.1.20.28": "0", + "21.1.1.1.20.29": "0", + "21.1.1.1.20.30": "0", + "21.1.1.1.20.31": "0", + "21.1.1.1.20.32": "0", + "21.1.1.1.20.33": "0", + "21.1.1.1.20.34": "0", + "21.1.1.1.20.35": "0", + "21.1.1.1.20.36": "0", + "21.1.1.1.20.37": "0", + "21.1.1.1.20.38": "0", + "21.1.1.1.20.39": "0", + "21.1.1.1.20.40": "0", + "21.1.1.1.20.41": "0", + "21.1.1.1.20.42": "0", + "21.1.1.1.20.43": "0", + "21.1.1.1.20.44": "0", + "21.1.1.1.20.45": "0", + "21.1.1.1.20.46": "0", + "21.1.1.1.20.47": "0", + "21.1.1.1.20.48": "0", + "21.1.1.1.21.1": "0", + "21.1.1.1.21.2": "0", + "21.1.1.1.21.3": "0", + "21.1.1.1.21.4": "0", + "21.1.1.1.21.5": "0", + "21.1.1.1.21.6": "0", + "21.1.1.1.21.7": "0", + "21.1.1.1.21.8": "0", + "21.1.1.1.21.9": "0", + "21.1.1.1.21.10": "0", + "21.1.1.1.21.11": "0", + "21.1.1.1.21.12": "0", + "21.1.1.1.21.13": "0", + "21.1.1.1.21.14": "0", + "21.1.1.1.21.15": "0", + "21.1.1.1.21.16": "0", + "21.1.1.1.21.17": "0", + "21.1.1.1.21.18": "0", + "21.1.1.1.21.19": "0", + "21.1.1.1.21.20": "0", + "21.1.1.1.21.21": "0", + "21.1.1.1.21.22": "0", + "21.1.1.1.21.23": "0", + "21.1.1.1.21.24": "0", + "21.1.1.1.21.25": "0", + "21.1.1.1.21.26": "0", + "21.1.1.1.21.27": "0", + "21.1.1.1.21.28": "0", + "21.1.1.1.21.29": "0", + "21.1.1.1.21.30": "0", + "21.1.1.1.21.31": "0", + "21.1.1.1.21.32": "0", + "21.1.1.1.21.33": "0", + "21.1.1.1.21.34": "0", + "21.1.1.1.21.35": "0", + "21.1.1.1.21.36": "0", + "21.1.1.1.21.37": "0", + "21.1.1.1.21.38": "0", + "21.1.1.1.21.39": "0", + "21.1.1.1.21.40": "0", + "21.1.1.1.21.41": "0", + "21.1.1.1.21.42": "0", + "21.1.1.1.21.43": "0", + "21.1.1.1.21.44": "0", + "21.1.1.1.21.45": "0", + "21.1.1.1.21.46": "0", + "21.1.1.1.21.47": "0", + "21.1.1.1.21.48": "0", + "21.1.1.1.22.1": "0", + "21.1.1.1.22.2": "0", + "21.1.1.1.22.3": "0", + "21.1.1.1.22.4": "0", + "21.1.1.1.22.5": "0", + "21.1.1.1.22.6": "0", + "21.1.1.1.22.7": "0", + "21.1.1.1.22.8": "0", + "21.1.1.1.22.9": "0", + "21.1.1.1.22.10": "0", + "21.1.1.1.22.11": "0", + "21.1.1.1.22.12": "0", + "21.1.1.1.22.13": "0", + "21.1.1.1.22.14": "0", + "21.1.1.1.22.15": "0", + "21.1.1.1.22.16": "0", + "21.1.1.1.22.17": "0", + "21.1.1.1.22.18": "0", + "21.1.1.1.22.19": "0", + "21.1.1.1.22.20": "0", + "21.1.1.1.22.21": "0", + "21.1.1.1.22.22": "0", + "21.1.1.1.22.23": "0", + "21.1.1.1.22.24": "0", + "21.1.1.1.22.25": "0", + "21.1.1.1.22.26": "0", + "21.1.1.1.22.27": "0", + "21.1.1.1.22.28": "0", + "21.1.1.1.22.29": "0", + "21.1.1.1.22.30": "0", + "21.1.1.1.22.31": "0", + "21.1.1.1.22.32": "0", + "21.1.1.1.22.33": "0", + "21.1.1.1.22.34": "0", + "21.1.1.1.22.35": "0", + "21.1.1.1.22.36": "0", + "21.1.1.1.22.37": "0", + "21.1.1.1.22.38": "0", + "21.1.1.1.22.39": "0", + "21.1.1.1.22.40": "0", + "21.1.1.1.22.41": "0", + "21.1.1.1.22.42": "0", + "21.1.1.1.22.43": "0", + "21.1.1.1.22.44": "0", + "21.1.1.1.22.45": "0", + "21.1.1.1.22.46": "0", + "21.1.1.1.22.47": "0", + "21.1.1.1.22.48": "0" + } + } + }, + "ACD-ALARM-MIB": { + "tables": { + "acdAlarm": { + "1.0": "2500", + "2.0": "10000", + "3.0": "1", + "4.0": "1", + "5.0": "1", + "6.0": "1", + "10.1.1.1": "1", + "10.1.1.2": "2", + "10.1.1.3": "3", + "10.1.1.4": "4", + "10.1.1.5": "5", + "10.1.1.6": "6", + "10.1.1.7": "7", + "10.1.1.8": "8", + "10.1.1.9": "9", + "10.1.1.10": "10", + "10.1.1.11": "11", + "10.1.1.12": "12", + "10.1.1.13": "13", + "10.1.1.14": "14", + "10.1.1.15": "15", + "10.1.1.16": "16", + "10.1.1.17": "17", + "10.1.1.18": "18", + "10.1.1.19": "19", + "10.1.1.20": "20", + "10.1.1.21": "21", + "10.1.1.22": "22", + "10.1.1.23": "23", + "10.1.1.24": "24", + "10.1.1.25": "25", + "10.1.1.26": "26", + "10.1.1.27": "27", + "10.1.1.28": "28", + "10.1.1.29": "29", + "10.1.1.30": "30", + "10.1.1.31": "31", + "10.1.1.32": "32", + "10.1.1.33": "33", + "10.1.1.34": "34", + "10.1.1.35": "35", + "10.1.1.36": "36", + "10.1.1.37": "37", + "10.1.1.38": "38", + "10.1.1.39": "39", + "10.1.1.40": "40", + "10.1.1.41": "41", + "10.1.1.42": "42", + "10.1.1.43": "43", + "10.1.1.44": "44", + "10.1.1.45": "45", + "10.1.1.46": "46", + "10.1.1.47": "47", + "10.1.1.48": "48", + "10.1.1.49": "49", + "10.1.1.50": "50", + "10.1.1.51": "51", + "10.1.1.52": "52", + "10.1.1.53": "53", + "10.1.1.54": "54", + "10.1.1.55": "55", + "10.1.1.56": "56", + "10.1.1.57": "57", + "10.1.1.58": "58", + "10.1.1.59": "59", + "10.1.1.60": "60", + "10.1.1.61": "61", + "10.1.1.62": "62", + "10.1.1.63": "63", + "10.1.1.64": "64", + "10.1.1.65": "65", + "10.1.1.66": "66", + "10.1.1.67": "67", + "10.1.1.68": "68", + "10.1.1.69": "69", + "10.1.1.70": "70", + "10.1.1.71": "71", + "10.1.1.72": "72", + "10.1.1.73": "73", + "10.1.1.74": "74", + "10.1.1.75": "75", + "10.1.1.76": "76", + "10.1.1.77": "77", + "10.1.1.78": "78", + "10.1.1.79": "79", + "10.1.1.80": "80", + "10.1.1.81": "81", + "10.1.1.82": "82", + "10.1.1.83": "83", + "10.1.1.84": "84", + "10.1.1.85": "85", + "10.1.1.86": "86", + "10.1.1.87": "87", + "10.1.1.88": "88", + "10.1.1.89": "89", + "10.1.1.90": "90", + "10.1.1.91": "91", + "10.1.1.92": "92", + "10.1.1.93": "93", + "10.1.1.94": "94", + "10.1.1.95": "95", + "10.1.1.96": "96", + "10.1.1.97": "97", + "10.1.1.98": "98", + "10.1.1.99": "99", + "10.1.1.100": "100", + "10.1.1.101": "101", + "10.1.1.102": "102", + "10.1.1.103": "103", + "10.1.1.104": "104", + "10.1.1.105": "105", + "10.1.1.106": "106", + "10.1.1.107": "107", + "10.1.1.108": "108", + "10.1.1.109": "109", + "10.1.1.110": "110", + "10.1.1.111": "111", + "10.1.1.112": "112", + "10.1.1.113": "113", + "10.1.1.114": "114", + "10.1.1.115": "115", + "10.1.1.116": "116", + "10.1.1.117": "117", + "10.1.1.118": "118", + "10.1.1.119": "119", + "10.1.1.120": "120", + "10.1.1.121": "121", + "10.1.1.122": "122", + "10.1.1.123": "123", + "10.1.1.124": "124", + "10.1.1.125": "125", + "10.1.1.126": "126", + "10.1.1.127": "127", + "10.1.1.128": "128", + "10.1.1.129": "129", + "10.1.1.130": "130", + "10.1.1.131": "131", + "10.1.1.132": "132", + "10.1.1.133": "133", + "10.1.1.134": "134", + "10.1.1.135": "135", + "10.1.1.136": "136", + "10.1.1.137": "137", + "10.1.1.138": "138", + "10.1.1.139": "139", + "10.1.1.140": "140", + "10.1.1.141": "141", + "10.1.1.142": "142", + "10.1.1.143": "143", + "10.1.1.144": "144", + "10.1.1.145": "145", + "10.1.1.146": "146", + "10.1.1.147": "147", + "10.1.1.148": "148", + "10.1.1.149": "149", + "10.1.1.150": "150", + "10.1.1.151": "151", + "10.1.1.152": "152", + "10.1.1.153": "153", + "10.1.1.154": "154", + "10.1.1.155": "155", + "10.1.1.156": "156", + "10.1.1.157": "157", + "10.1.1.158": "158", + "10.1.1.159": "159", + "10.1.1.160": "160", + "10.1.1.161": "161", + "10.1.1.162": "162", + "10.1.1.163": "163", + "10.1.1.164": "164", + "10.1.1.165": "165", + "10.1.1.166": "166", + "10.1.1.167": "167", + "10.1.1.168": "168", + "10.1.1.169": "169", + "10.1.1.170": "170", + "10.1.1.171": "171", + "10.1.1.172": "172", + "10.1.1.173": "173", + "10.1.1.174": "174", + "10.1.1.175": "175", + "10.1.1.176": "176", + "10.1.1.177": "177", + "10.1.1.178": "178", + "10.1.1.179": "179", + "10.1.1.180": "180", + "10.1.1.181": "181", + "10.1.1.182": "182", + "10.1.1.183": "183", + "10.1.1.184": "184", + "10.1.1.185": "185", + "10.1.1.186": "186", + "10.1.1.187": "187", + "10.1.1.188": "188", + "10.1.1.189": "189", + "10.1.1.190": "190", + "10.1.1.191": "191", + "10.1.1.192": "192", + "10.1.1.193": "193", + "10.1.1.194": "194", + "10.1.1.195": "195", + "10.1.1.196": "196", + "10.1.1.197": "197", + "10.1.1.198": "198", + "10.1.1.199": "199", + "10.1.1.200": "200", + "10.1.1.201": "201", + "10.1.1.202": "202", + "10.1.1.203": "203", + "10.1.1.204": "204", + "10.1.1.205": "205", + "10.1.1.206": "206", + "10.1.1.207": "207", + "10.1.1.208": "208", + "10.1.1.209": "209", + "10.1.1.210": "210", + "10.1.1.211": "211", + "10.1.1.212": "212", + "10.1.1.213": "213", + "10.1.1.214": "214", + "10.1.1.215": "215", + "10.1.1.216": "216", + "10.1.1.217": "217", + "10.1.1.218": "218", + "10.1.2.1": "8000001", + "10.1.2.2": "8000002", + "10.1.2.3": "8000004", + "10.1.2.4": "8000005", + "10.1.2.5": "8000101", + "10.1.2.6": "8000102", + "10.1.2.7": "8000040", + "10.1.2.8": "8000041", + "10.1.2.9": "8000140", + "10.1.2.10": "8000141", + "10.1.2.11": "2000101", + "10.1.2.12": "2000102", + "10.1.2.13": "2000103", + "10.1.2.14": "2000104", + "10.1.2.15": "2000105", + "10.1.2.16": "2000106", + "10.1.2.17": "2000107", + "10.1.2.18": "2000108", + "10.1.2.19": "2000109", + "10.1.2.20": "2000110", + "10.1.2.21": "2000111", + "10.1.2.22": "2000112", + "10.1.2.23": "2000113", + "10.1.2.24": "2000114", + "10.1.2.25": "2000115", + "10.1.2.26": "2000116", + "10.1.2.27": "2000117", + "10.1.2.28": "2000118", + "10.1.2.29": "2000119", + "10.1.2.30": "2000120", + "10.1.2.31": "2000121", + "10.1.2.32": "2000201", + "10.1.2.33": "2000202", + "10.1.2.34": "2000203", + "10.1.2.35": "2000204", + "10.1.2.36": "2000205", + "10.1.2.37": "2000206", + "10.1.2.38": "2000207", + "10.1.2.39": "2000208", + "10.1.2.40": "2000209", + "10.1.2.41": "2000210", + "10.1.2.42": "2000211", + "10.1.2.43": "2000212", + "10.1.2.44": "2000213", + "10.1.2.45": "2000214", + "10.1.2.46": "2000215", + "10.1.2.47": "2000216", + "10.1.2.48": "2000217", + "10.1.2.49": "2000218", + "10.1.2.50": "2000219", + "10.1.2.51": "2000220", + "10.1.2.52": "2000221", + "10.1.2.53": "2000301", + "10.1.2.54": "2000302", + "10.1.2.55": "2000303", + "10.1.2.56": "2000304", + "10.1.2.57": "2000305", + "10.1.2.58": "2000306", + "10.1.2.59": "2000307", + "10.1.2.60": "2000308", + "10.1.2.61": "2000309", + "10.1.2.62": "2000310", + "10.1.2.63": "2000311", + "10.1.2.64": "2000312", + "10.1.2.65": "2000313", + "10.1.2.66": "2000314", + "10.1.2.67": "2000315", + "10.1.2.68": "2000316", + "10.1.2.69": "2000317", + "10.1.2.70": "2000318", + "10.1.2.71": "2000319", + "10.1.2.72": "2000320", + "10.1.2.73": "2000321", + "10.1.2.74": "2000401", + "10.1.2.75": "2000402", + "10.1.2.76": "2000403", + "10.1.2.77": "2000404", + "10.1.2.78": "2000405", + "10.1.2.79": "2000406", + "10.1.2.80": "2000407", + "10.1.2.81": "2000408", + "10.1.2.82": "2000409", + "10.1.2.83": "2000410", + "10.1.2.84": "2000411", + "10.1.2.85": "2000412", + "10.1.2.86": "2000413", + "10.1.2.87": "2000414", + "10.1.2.88": "2000415", + "10.1.2.89": "2000416", + "10.1.2.90": "2000417", + "10.1.2.91": "2000418", + "10.1.2.92": "2000419", + "10.1.2.93": "2000420", + "10.1.2.94": "2000421", + "10.1.2.95": "1000101", + "10.1.2.96": "1000102", + "10.1.2.97": "1000104", + "10.1.2.98": "1000107", + "10.1.2.99": "1000201", + "10.1.2.100": "1000202", + "10.1.2.101": "1000204", + "10.1.2.102": "1000207", + "10.1.2.103": "1000301", + "10.1.2.104": "1000302", + "10.1.2.105": "1000304", + "10.1.2.106": "1000307", + "10.1.2.107": "1000401", + "10.1.2.108": "1000402", + "10.1.2.109": "1000404", + "10.1.2.110": "1000407", + "10.1.2.111": "1000501", + "10.1.2.112": "1000601", + "10.1.2.113": "1000602", + "10.1.2.114": "1000604", + "10.1.2.115": "1000603", + "10.1.2.116": "1000701", + "10.1.2.117": "1000702", + "10.1.2.118": "1000704", + "10.1.2.119": "1000703", + "10.1.2.120": "8000006", + "10.1.2.121": "8000007", + "10.1.2.122": "8000080", + "10.1.2.123": "7000101", + "10.1.2.124": "7000102", + "10.1.2.125": "7000106", + "10.1.2.126": "7000108", + "10.1.2.127": "7000104", + "10.1.2.128": "7000105", + "10.1.2.129": "7000107", + "10.1.2.130": "18000101", + "10.1.2.131": "18000102", + "10.1.2.132": "3000101", + "10.1.2.133": "3000102", + "10.1.2.134": "3000103", + "10.1.2.135": "3000104", + "10.1.2.136": "3000105", + "10.1.2.137": "3000106", + "10.1.2.138": "3000107", + "10.1.2.139": "3000108", + "10.1.2.140": "3000109", + "10.1.2.141": "3000110", + "10.1.2.142": "3000111", + "10.1.2.143": "3000112", + "10.1.2.144": "3000113", + "10.1.2.145": "3000114", + "10.1.2.146": "3000115", + "10.1.2.147": "3000201", + "10.1.2.148": "3000202", + "10.1.2.149": "3000203", + "10.1.2.150": "3000204", + "10.1.2.151": "3000205", + "10.1.2.152": "3000206", + "10.1.2.153": "3000207", + "10.1.2.154": "3000208", + "10.1.2.155": "3000209", + "10.1.2.156": "3000210", + "10.1.2.157": "3000211", + "10.1.2.158": "3000212", + "10.1.2.159": "3000213", + "10.1.2.160": "3000214", + "10.1.2.161": "3000215", + "10.1.2.162": "3000301", + "10.1.2.163": "3000302", + "10.1.2.164": "3000303", + "10.1.2.165": "3000304", + "10.1.2.166": "3000305", + "10.1.2.167": "3000306", + "10.1.2.168": "3000307", + "10.1.2.169": "3000308", + "10.1.2.170": "3000309", + "10.1.2.171": "3000310", + "10.1.2.172": "3000311", + "10.1.2.173": "3000312", + "10.1.2.174": "3000313", + "10.1.2.175": "3000314", + "10.1.2.176": "3000315", + "10.1.2.177": "3000401", + "10.1.2.178": "3000402", + "10.1.2.179": "3000403", + "10.1.2.180": "3000404", + "10.1.2.181": "3000405", + "10.1.2.182": "3000406", + "10.1.2.183": "3000407", + "10.1.2.184": "3000408", + "10.1.2.185": "3000409", + "10.1.2.186": "3000410", + "10.1.2.187": "3000411", + "10.1.2.188": "3000412", + "10.1.2.189": "3000413", + "10.1.2.190": "3000414", + "10.1.2.191": "3000415", + "10.1.2.192": "7000401", + "10.1.2.193": "7000412", + "10.1.2.194": "7000404", + "10.1.2.195": "7000411", + "10.1.2.196": "7000403", + "10.1.2.197": "7000410", + "10.1.2.198": "7000402", + "10.1.2.199": "7000414", + "10.1.2.200": "7000406", + "10.1.2.201": "7000413", + "10.1.2.202": "7000405", + "10.1.2.203": "7000417", + "10.1.2.204": "7000409", + "10.1.2.205": "7000415", + "10.1.2.206": "7000407", + "10.1.2.207": "7000416", + "10.1.2.208": "7000408", + "10.1.2.209": "7000421", + "10.1.2.210": "7000420", + "10.1.2.211": "7000423", + "10.1.2.212": "7000422", + "10.1.2.213": "7000425", + "10.1.2.214": "7000424", + "10.1.2.215": "7000428", + "10.1.2.216": "7000429", + "10.1.2.217": "19000101", + "10.1.2.218": "19000102", + "10.1.3.1": "First overheat threshold", + "10.1.3.2": "Second overheat threshold", + "10.1.3.3": "No power supply on feed A", + "10.1.3.4": "No power supply on feed B", + "10.1.3.5": "First overheat threshold", + "10.1.3.6": "Second overheat threshold", + "10.1.3.7": "Fan 1 slow", + "10.1.3.8": "Fan 1 failure", + "10.1.3.9": "Fan 2 slow", + "10.1.3.10": "Fan 2 failure", + "10.1.3.11": "SFP-1 temperature high alarm", + "10.1.3.12": "SFP-1 temperature low alarm", + "10.1.3.13": "SFP-1 temperature high warning", + "10.1.3.14": "SFP-1 temperature low warning", + "10.1.3.15": "SFP-1 supply voltage high alarm", + "10.1.3.16": "SFP-1 supply voltage low alarm", + "10.1.3.17": "SFP-1 supply voltage high warning", + "10.1.3.18": "SFP-1 supply voltage low warning", + "10.1.3.19": "SFP-1 laser bias current high alarm", + "10.1.3.20": "SFP-1 laser bias current low alarm", + "10.1.3.21": "SFP-1 laser bias current high warning", + "10.1.3.22": "SFP-1 laser bias current low warning", + "10.1.3.23": "SFP-1 transmit power high alarm", + "10.1.3.24": "SFP-1 transmit power low alarm", + "10.1.3.25": "SFP-1 transmit power high warning", + "10.1.3.26": "SFP-1 transmit power low warning", + "10.1.3.27": "SFP-1 receive power high alarm", + "10.1.3.28": "SFP-1 receive power low alarm", + "10.1.3.29": "SFP-1 receive power high warning", + "10.1.3.30": "SFP-1 receive power low warning", + "10.1.3.31": "SFP-1 not present", + "10.1.3.32": "SFP-2 temperature high alarm", + "10.1.3.33": "SFP-2 temperature low alarm", + "10.1.3.34": "SFP-2 temperature high warning", + "10.1.3.35": "SFP-2 temperature low warning", + "10.1.3.36": "SFP-2 supply voltage high alarm", + "10.1.3.37": "SFP-2 supply voltage low alarm", + "10.1.3.38": "SFP-2 supply voltage high warning", + "10.1.3.39": "SFP-2 supply voltage low warning", + "10.1.3.40": "SFP-2 laser bias current high alarm", + "10.1.3.41": "SFP-2 laser bias current low alarm", + "10.1.3.42": "SFP-2 laser bias current high warning", + "10.1.3.43": "SFP-2 laser bias current low warning", + "10.1.3.44": "SFP-2 transmit power high alarm", + "10.1.3.45": "SFP-2 transmit power low alarm", + "10.1.3.46": "SFP-2 transmit power high warning", + "10.1.3.47": "SFP-2 transmit power low warning", + "10.1.3.48": "SFP-2 receive power high alarm", + "10.1.3.49": "SFP-2 receive power low alarm", + "10.1.3.50": "SFP-2 receive power high warning", + "10.1.3.51": "SFP-2 receive power low warning", + "10.1.3.52": "SFP-2 not present", + "10.1.3.53": "SFP-3 temperature high alarm", + "10.1.3.54": "SFP-3 temperature low alarm", + "10.1.3.55": "SFP-3 temperature high warning", + "10.1.3.56": "SFP-3 temperature low warning", + "10.1.3.57": "SFP-3 supply voltage high alarm", + "10.1.3.58": "SFP-3 supply voltage low alarm", + "10.1.3.59": "SFP-3 supply voltage high warning", + "10.1.3.60": "SFP-3 supply voltage low warning", + "10.1.3.61": "SFP-3 laser bias current high alarm", + "10.1.3.62": "SFP-3 laser bias current low alarm", + "10.1.3.63": "SFP-3 laser bias current high warning", + "10.1.3.64": "SFP-3 laser bias current low warning", + "10.1.3.65": "SFP-3 transmit power high alarm", + "10.1.3.66": "SFP-3 transmit power low alarm", + "10.1.3.67": "SFP-3 transmit power high warning", + "10.1.3.68": "SFP-3 transmit power low warning", + "10.1.3.69": "SFP-3 receive power high alarm", + "10.1.3.70": "SFP-3 receive power low alarm", + "10.1.3.71": "SFP-3 receive power high warning", + "10.1.3.72": "SFP-3 receive power low warning", + "10.1.3.73": "SFP-3 not present", + "10.1.3.74": "SFP-4 temperature high alarm", + "10.1.3.75": "SFP-4 temperature low alarm", + "10.1.3.76": "SFP-4 temperature high warning", + "10.1.3.77": "SFP-4 temperature low warning", + "10.1.3.78": "SFP-4 supply voltage high alarm", + "10.1.3.79": "SFP-4 supply voltage low alarm", + "10.1.3.80": "SFP-4 supply voltage high warning", + "10.1.3.81": "SFP-4 supply voltage low warning", + "10.1.3.82": "SFP-4 laser bias current high alarm", + "10.1.3.83": "SFP-4 laser bias current low alarm", + "10.1.3.84": "SFP-4 laser bias current high warning", + "10.1.3.85": "SFP-4 laser bias current low warning", + "10.1.3.86": "SFP-4 transmit power high alarm", + "10.1.3.87": "SFP-4 transmit power low alarm", + "10.1.3.88": "SFP-4 transmit power high warning", + "10.1.3.89": "SFP-4 transmit power low warning", + "10.1.3.90": "SFP-4 receive power high alarm", + "10.1.3.91": "SFP-4 receive power low alarm", + "10.1.3.92": "SFP-4 receive power high warning", + "10.1.3.93": "SFP-4 receive power low warning", + "10.1.3.94": "SFP-4 not present", + "10.1.3.95": "Link down on EVEN_VLAN_UPLINK port", + "10.1.3.96": "Loopback on port EVEN_VLAN_UPLINK", + "10.1.3.97": "Fault propagation caused link down on port EVEN_VLAN_UPLINK", + "10.1.3.98": "SA caused link down on port EVEN_VLAN_UPLINK", + "10.1.3.99": "Link down on ODD_VLAN_UPLINK port", + "10.1.3.100": "Loopback on port ODD_VLAN_UPLINK", + "10.1.3.101": "Fault propagation caused link down on port ODD_VLAN_UPLINK", + "10.1.3.102": "SA caused link down on port ODD_VLAN_UPLINK", + "10.1.3.103": "Link down on EVEN_VLAN_DOWNLIN port", + "10.1.3.104": "Loopback on port EVEN_VLAN_DOWNLIN", + "10.1.3.105": "Fault propagation caused link down on port EVEN_VLAN_DOWNLIN", + "10.1.3.106": "SA caused link down on port EVEN_VLAN_DOWNLIN", + "10.1.3.107": "Link down on ODD_VLAN_DOWNLINK port", + "10.1.3.108": "Loopback on port ODD_VLAN_DOWNLINK", + "10.1.3.109": "Fault propagation caused link down on port ODD_VLAN_DOWNLINK", + "10.1.3.110": "SA caused link down on port ODD_VLAN_DOWNLINK", + "10.1.3.111": "Link down on Management port", + "10.1.3.112": "Link down on LAG-1 port", + "10.1.3.113": "Loopback on port LAG-1", + "10.1.3.114": "Fault propagation caused link down on port LAG-1", + "10.1.3.115": "Sub-port speed mismatch on port LAG-1", + "10.1.3.116": "Link down on LAG-2 port", + "10.1.3.117": "Loopback on port LAG-2", + "10.1.3.118": "Fault propagation caused link down on port LAG-2", + "10.1.3.119": "Sub-port speed mismatch on port LAG-2", + "10.1.3.120": "Input 1 Active", + "10.1.3.121": "Input 2 Active", + "10.1.3.122": "Troubleshooting tool is running", + "10.1.3.123": "NTP client lost server communication", + "10.1.3.124": "NTP Time-of-day synchronization - May affect one-way delay measurements", + "10.1.3.125": "NTP client used interface without timestamp capability", + "10.1.3.126": "Remote NTP server used an interface without timestamp capability", + "10.1.3.127": "PTP client failure communication with server", + "10.1.3.128": "PTP Time-of-day synchronization - May affect one-way delay measurements", + "10.1.3.129": "PTP client used interface without timestamp capability", + "10.1.3.130": "Inventory entries list is almost full", + "10.1.3.131": "Inventory entries list is full", + "10.1.3.132": "PAA_Site573_VL2216 PAA_CC_ALERT", + "10.1.3.133": "PAA_Site573_VL2216 PAA_PL_ALERT", + "10.1.3.134": "PAA_Site573_VL2216 PAA_OW_DELAY_ALERT", + "10.1.3.135": "PAA_Site573_VL2216 PAA_OW_AVG_DELAY_ALERT", + "10.1.3.136": "PAA_Site573_VL2216 PAA_OW_DV_ALERT", + "10.1.3.137": "PAA_Site573_VL2216 PAA_OW_AVG_DV_ALERT", + "10.1.3.138": "PAA_Site573_VL2216 PAA_TW_DELAY_ALERT", + "10.1.3.139": "PAA_Site573_VL2216 PAA_TW_AVG_DELAY_ALERT", + "10.1.3.140": "PAA_Site573_VL2216 PAA_TW_DV_ALERT", + "10.1.3.141": "PAA_Site573_VL2216 PAA_TW_AVG_DV_ALERT", + "10.1.3.142": "PAA_Site573_VL2216 PAA_VLAN1_ID_ALERT", + "10.1.3.143": "PAA_Site573_VL2216 PAA_VLAN2_ID_ALERT", + "10.1.3.144": "PAA_Site573_VL2216 PAA_VLAN1_PRIO_ALERT", + "10.1.3.145": "PAA_Site573_VL2216 PAA_VLAN2_PRIO_ALERT", + "10.1.3.146": "PAA_Site573_VL2216 PAA_DSCP_ALERT", + "10.1.3.147": "PAA_site573_2216_PNAP PAA_CC_ALERT", + "10.1.3.148": "PAA_site573_2216_PNAP PAA_PL_ALERT", + "10.1.3.149": "PAA_site573_2216_PNAP PAA_OW_DELAY_ALERT", + "10.1.3.150": "PAA_site573_2216_PNAP PAA_OW_AVG_DELAY_ALERT", + "10.1.3.151": "PAA_site573_2216_PNAP PAA_OW_DV_ALERT", + "10.1.3.152": "PAA_site573_2216_PNAP PAA_OW_AVG_DV_ALERT", + "10.1.3.153": "PAA_site573_2216_PNAP PAA_TW_DELAY_ALERT", + "10.1.3.154": "PAA_site573_2216_PNAP PAA_TW_AVG_DELAY_ALERT", + "10.1.3.155": "PAA_site573_2216_PNAP PAA_TW_DV_ALERT", + "10.1.3.156": "PAA_site573_2216_PNAP PAA_TW_AVG_DV_ALERT", + "10.1.3.157": "PAA_site573_2216_PNAP PAA_VLAN1_ID_ALERT", + "10.1.3.158": "PAA_site573_2216_PNAP PAA_VLAN2_ID_ALERT", + "10.1.3.159": "PAA_site573_2216_PNAP PAA_VLAN1_PRIO_ALERT", + "10.1.3.160": "PAA_site573_2216_PNAP PAA_VLAN2_PRIO_ALERT", + "10.1.3.161": "PAA_site573_2216_PNAP PAA_DSCP_ALERT", + "10.1.3.162": "PAA_Site573_VL2217 PAA_CC_ALERT", + "10.1.3.163": "PAA_Site573_VL2217 PAA_PL_ALERT", + "10.1.3.164": "PAA_Site573_VL2217 PAA_OW_DELAY_ALERT", + "10.1.3.165": "PAA_Site573_VL2217 PAA_OW_AVG_DELAY_ALERT", + "10.1.3.166": "PAA_Site573_VL2217 PAA_OW_DV_ALERT", + "10.1.3.167": "PAA_Site573_VL2217 PAA_OW_AVG_DV_ALERT", + "10.1.3.168": "PAA_Site573_VL2217 PAA_TW_DELAY_ALERT", + "10.1.3.169": "PAA_Site573_VL2217 PAA_TW_AVG_DELAY_ALERT", + "10.1.3.170": "PAA_Site573_VL2217 PAA_TW_DV_ALERT", + "10.1.3.171": "PAA_Site573_VL2217 PAA_TW_AVG_DV_ALERT", + "10.1.3.172": "PAA_Site573_VL2217 PAA_VLAN1_ID_ALERT", + "10.1.3.173": "PAA_Site573_VL2217 PAA_VLAN2_ID_ALERT", + "10.1.3.174": "PAA_Site573_VL2217 PAA_VLAN1_PRIO_ALERT", + "10.1.3.175": "PAA_Site573_VL2217 PAA_VLAN2_PRIO_ALERT", + "10.1.3.176": "PAA_Site573_VL2217 PAA_DSCP_ALERT", + "10.1.3.177": "PAA_site573_2217_PNAP PAA_CC_ALERT", + "10.1.3.178": "PAA_site573_2217_PNAP PAA_PL_ALERT", + "10.1.3.179": "PAA_site573_2217_PNAP PAA_OW_DELAY_ALERT", + "10.1.3.180": "PAA_site573_2217_PNAP PAA_OW_AVG_DELAY_ALERT", + "10.1.3.181": "PAA_site573_2217_PNAP PAA_OW_DV_ALERT", + "10.1.3.182": "PAA_site573_2217_PNAP PAA_OW_AVG_DV_ALERT", + "10.1.3.183": "PAA_site573_2217_PNAP PAA_TW_DELAY_ALERT", + "10.1.3.184": "PAA_site573_2217_PNAP PAA_TW_AVG_DELAY_ALERT", + "10.1.3.185": "PAA_site573_2217_PNAP PAA_TW_DV_ALERT", + "10.1.3.186": "PAA_site573_2217_PNAP PAA_TW_AVG_DV_ALERT", + "10.1.3.187": "PAA_site573_2217_PNAP PAA_VLAN1_ID_ALERT", + "10.1.3.188": "PAA_site573_2217_PNAP PAA_VLAN2_ID_ALERT", + "10.1.3.189": "PAA_site573_2217_PNAP PAA_VLAN1_PRIO_ALERT", + "10.1.3.190": "PAA_site573_2217_PNAP PAA_VLAN2_PRIO_ALERT", + "10.1.3.191": "PAA_site573_2217_PNAP PAA_DSCP_ALERT", + "10.1.3.192": "VCAgent communication failure with Vision EMS", + "10.1.3.193": "VCAgent High Resolution PAA statistics buffer full", + "10.1.3.194": "VCAgent High Resolution PAA instances validation", + "10.1.3.195": "VCAgent High Resolution Regulator statistics buffer full", + "10.1.3.196": "VCAgent High Resolution Regulator instances validation", + "10.1.3.197": "VCAgent High Resolution Policy statistics buffer full", + "10.1.3.198": "VCAgent High Resolution Policy instances validation", + "10.1.3.199": "VCAgent High Resolution SOAM DMM statistics buffer full", + "10.1.3.200": "VCAgent High Resolution SOAM DMM instances validation", + "10.1.3.201": "VCAgent High Resolution SOAM PL statistics buffer full", + "10.1.3.202": "VCAgent High Resolution SOAM PL instances validation", + "10.1.3.203": "VCAgent High Resolution SOAM SLM statistics buffer full", + "10.1.3.204": "VCAgent High Resolution SOAM SLM instances validation", + "10.1.3.205": "VCAgent High Resolution SOAM SA statistics buffer full", + "10.1.3.206": "VCAgent High Resolution SOAM SA instances validation", + "10.1.3.207": "VCAgent High Resolution SOAM SA Metrics statistics buffer full", + "10.1.3.208": "VCAgent High Resolution SOAM SA Metrics instances validation", + "10.1.3.209": "VCAgent High Resolution TWAMP statistics buffer full", + "10.1.3.210": "VCAgent High Resolution TWAMP instances validation", + "10.1.3.211": "VCAgent High Resolution Shaper statistics buffer full", + "10.1.3.212": "VCAgent High Resolution Shaper instances validation", + "10.1.3.213": "VCAgent High Resolution Port statistics buffer full", + "10.1.3.214": "VCAgent High Resolution Port instances validation", + "10.1.3.215": "VCAgent High Resolution SFP statistics buffer full", + "10.1.3.216": "VCAgent High Resolution System Health statistics buffer full", + "10.1.3.217": "One or more certificates is about to expire", + "10.1.3.218": "One or more certificates has expired", + "10.1.4.1": "1", + "10.1.4.2": "1", + "10.1.4.3": "1", + "10.1.4.4": "1", + "10.1.4.5": "1", + "10.1.4.6": "1", + "10.1.4.7": "1", + "10.1.4.8": "1", + "10.1.4.9": "1", + "10.1.4.10": "1", + "10.1.4.11": "1", + "10.1.4.12": "1", + "10.1.4.13": "1", + "10.1.4.14": "1", + "10.1.4.15": "1", + "10.1.4.16": "1", + "10.1.4.17": "1", + "10.1.4.18": "1", + "10.1.4.19": "1", + "10.1.4.20": "1", + "10.1.4.21": "1", + "10.1.4.22": "1", + "10.1.4.23": "1", + "10.1.4.24": "1", + "10.1.4.25": "1", + "10.1.4.26": "1", + "10.1.4.27": "1", + "10.1.4.28": "1", + "10.1.4.29": "1", + "10.1.4.30": "1", + "10.1.4.31": "1", + "10.1.4.32": "1", + "10.1.4.33": "1", + "10.1.4.34": "1", + "10.1.4.35": "1", + "10.1.4.36": "1", + "10.1.4.37": "1", + "10.1.4.38": "1", + "10.1.4.39": "1", + "10.1.4.40": "1", + "10.1.4.41": "1", + "10.1.4.42": "1", + "10.1.4.43": "1", + "10.1.4.44": "1", + "10.1.4.45": "1", + "10.1.4.46": "1", + "10.1.4.47": "1", + "10.1.4.48": "1", + "10.1.4.49": "1", + "10.1.4.50": "1", + "10.1.4.51": "1", + "10.1.4.52": "1", + "10.1.4.53": "1", + "10.1.4.54": "1", + "10.1.4.55": "1", + "10.1.4.56": "1", + "10.1.4.57": "1", + "10.1.4.58": "1", + "10.1.4.59": "1", + "10.1.4.60": "1", + "10.1.4.61": "1", + "10.1.4.62": "1", + "10.1.4.63": "1", + "10.1.4.64": "1", + "10.1.4.65": "1", + "10.1.4.66": "1", + "10.1.4.67": "1", + "10.1.4.68": "1", + "10.1.4.69": "1", + "10.1.4.70": "1", + "10.1.4.71": "1", + "10.1.4.72": "1", + "10.1.4.73": "1", + "10.1.4.74": "1", + "10.1.4.75": "1", + "10.1.4.76": "1", + "10.1.4.77": "1", + "10.1.4.78": "1", + "10.1.4.79": "1", + "10.1.4.80": "1", + "10.1.4.81": "1", + "10.1.4.82": "1", + "10.1.4.83": "1", + "10.1.4.84": "1", + "10.1.4.85": "1", + "10.1.4.86": "1", + "10.1.4.87": "1", + "10.1.4.88": "1", + "10.1.4.89": "1", + "10.1.4.90": "1", + "10.1.4.91": "1", + "10.1.4.92": "1", + "10.1.4.93": "1", + "10.1.4.94": "1", + "10.1.4.95": "1", + "10.1.4.96": "1", + "10.1.4.97": "1", + "10.1.4.98": "1", + "10.1.4.99": "1", + "10.1.4.100": "1", + "10.1.4.101": "1", + "10.1.4.102": "1", + "10.1.4.103": "1", + "10.1.4.104": "1", + "10.1.4.105": "1", + "10.1.4.106": "1", + "10.1.4.107": "1", + "10.1.4.108": "1", + "10.1.4.109": "1", + "10.1.4.110": "1", + "10.1.4.111": "2", + "10.1.4.112": "1", + "10.1.4.113": "1", + "10.1.4.114": "1", + "10.1.4.115": "1", + "10.1.4.116": "2", + "10.1.4.117": "1", + "10.1.4.118": "1", + "10.1.4.119": "1", + "10.1.4.120": "1", + "10.1.4.121": "1", + "10.1.4.122": "1", + "10.1.4.123": "1", + "10.1.4.124": "1", + "10.1.4.125": "1", + "10.1.4.126": "1", + "10.1.4.127": "1", + "10.1.4.128": "1", + "10.1.4.129": "1", + "10.1.4.130": "1", + "10.1.4.131": "1", + "10.1.4.132": "1", + "10.1.4.133": "1", + "10.1.4.134": "1", + "10.1.4.135": "1", + "10.1.4.136": "1", + "10.1.4.137": "1", + "10.1.4.138": "1", + "10.1.4.139": "1", + "10.1.4.140": "1", + "10.1.4.141": "1", + "10.1.4.142": "1", + "10.1.4.143": "1", + "10.1.4.144": "1", + "10.1.4.145": "1", + "10.1.4.146": "1", + "10.1.4.147": "1", + "10.1.4.148": "1", + "10.1.4.149": "1", + "10.1.4.150": "1", + "10.1.4.151": "1", + "10.1.4.152": "1", + "10.1.4.153": "1", + "10.1.4.154": "1", + "10.1.4.155": "1", + "10.1.4.156": "1", + "10.1.4.157": "1", + "10.1.4.158": "1", + "10.1.4.159": "1", + "10.1.4.160": "1", + "10.1.4.161": "1", + "10.1.4.162": "1", + "10.1.4.163": "1", + "10.1.4.164": "1", + "10.1.4.165": "1", + "10.1.4.166": "1", + "10.1.4.167": "1", + "10.1.4.168": "1", + "10.1.4.169": "1", + "10.1.4.170": "1", + "10.1.4.171": "1", + "10.1.4.172": "1", + "10.1.4.173": "1", + "10.1.4.174": "1", + "10.1.4.175": "1", + "10.1.4.176": "1", + "10.1.4.177": "1", + "10.1.4.178": "1", + "10.1.4.179": "1", + "10.1.4.180": "1", + "10.1.4.181": "1", + "10.1.4.182": "1", + "10.1.4.183": "1", + "10.1.4.184": "1", + "10.1.4.185": "1", + "10.1.4.186": "1", + "10.1.4.187": "1", + "10.1.4.188": "1", + "10.1.4.189": "1", + "10.1.4.190": "1", + "10.1.4.191": "1", + "10.1.4.192": "1", + "10.1.4.193": "1", + "10.1.4.194": "1", + "10.1.4.195": "1", + "10.1.4.196": "1", + "10.1.4.197": "1", + "10.1.4.198": "1", + "10.1.4.199": "1", + "10.1.4.200": "1", + "10.1.4.201": "1", + "10.1.4.202": "1", + "10.1.4.203": "1", + "10.1.4.204": "1", + "10.1.4.205": "1", + "10.1.4.206": "1", + "10.1.4.207": "1", + "10.1.4.208": "1", + "10.1.4.209": "1", + "10.1.4.210": "1", + "10.1.4.211": "1", + "10.1.4.212": "1", + "10.1.4.213": "1", + "10.1.4.214": "1", + "10.1.4.215": "1", + "10.1.4.216": "1", + "10.1.4.217": "1", + "10.1.4.218": "1", + "10.1.5.1": "2", + "10.1.5.2": "3", + "10.1.5.3": "2", + "10.1.5.4": "2", + "10.1.5.5": "2", + "10.1.5.6": "3", + "10.1.5.7": "2", + "10.1.5.8": "3", + "10.1.5.9": "2", + "10.1.5.10": "3", + "10.1.5.11": "2", + "10.1.5.12": "2", + "10.1.5.13": "0", + "10.1.5.14": "0", + "10.1.5.15": "2", + "10.1.5.16": "2", + "10.1.5.17": "0", + "10.1.5.18": "0", + "10.1.5.19": "2", + "10.1.5.20": "2", + "10.1.5.21": "0", + "10.1.5.22": "0", + "10.1.5.23": "2", + "10.1.5.24": "2", + "10.1.5.25": "0", + "10.1.5.26": "0", + "10.1.5.27": "2", + "10.1.5.28": "2", + "10.1.5.29": "0", + "10.1.5.30": "0", + "10.1.5.31": "2", + "10.1.5.32": "2", + "10.1.5.33": "2", + "10.1.5.34": "0", + "10.1.5.35": "0", + "10.1.5.36": "2", + "10.1.5.37": "2", + "10.1.5.38": "0", + "10.1.5.39": "0", + "10.1.5.40": "2", + "10.1.5.41": "2", + "10.1.5.42": "0", + "10.1.5.43": "0", + "10.1.5.44": "2", + "10.1.5.45": "2", + "10.1.5.46": "0", + "10.1.5.47": "0", + "10.1.5.48": "2", + "10.1.5.49": "2", + "10.1.5.50": "0", + "10.1.5.51": "0", + "10.1.5.52": "2", + "10.1.5.53": "2", + "10.1.5.54": "2", + "10.1.5.55": "0", + "10.1.5.56": "0", + "10.1.5.57": "2", + "10.1.5.58": "2", + "10.1.5.59": "0", + "10.1.5.60": "0", + "10.1.5.61": "2", + "10.1.5.62": "2", + "10.1.5.63": "0", + "10.1.5.64": "0", + "10.1.5.65": "2", + "10.1.5.66": "2", + "10.1.5.67": "0", + "10.1.5.68": "0", + "10.1.5.69": "2", + "10.1.5.70": "2", + "10.1.5.71": "0", + "10.1.5.72": "0", + "10.1.5.73": "2", + "10.1.5.74": "2", + "10.1.5.75": "2", + "10.1.5.76": "0", + "10.1.5.77": "0", + "10.1.5.78": "2", + "10.1.5.79": "2", + "10.1.5.80": "0", + "10.1.5.81": "0", + "10.1.5.82": "2", + "10.1.5.83": "2", + "10.1.5.84": "0", + "10.1.5.85": "0", + "10.1.5.86": "2", + "10.1.5.87": "2", + "10.1.5.88": "0", + "10.1.5.89": "0", + "10.1.5.90": "2", + "10.1.5.91": "2", + "10.1.5.92": "0", + "10.1.5.93": "0", + "10.1.5.94": "2", + "10.1.5.95": "2", + "10.1.5.96": "0", + "10.1.5.97": "2", + "10.1.5.98": "2", + "10.1.5.99": "2", + "10.1.5.100": "0", + "10.1.5.101": "2", + "10.1.5.102": "2", + "10.1.5.103": "2", + "10.1.5.104": "0", + "10.1.5.105": "2", + "10.1.5.106": "2", + "10.1.5.107": "2", + "10.1.5.108": "0", + "10.1.5.109": "2", + "10.1.5.110": "2", + "10.1.5.111": "2", + "10.1.5.112": "2", + "10.1.5.113": "0", + "10.1.5.114": "2", + "10.1.5.115": "2", + "10.1.5.116": "2", + "10.1.5.117": "0", + "10.1.5.118": "2", + "10.1.5.119": "2", + "10.1.5.120": "0", + "10.1.5.121": "0", + "10.1.5.122": "2", + "10.1.5.123": "2", + "10.1.5.124": "2", + "10.1.5.125": "2", + "10.1.5.126": "2", + "10.1.5.127": "2", + "10.1.5.128": "2", + "10.1.5.129": "2", + "10.1.5.130": "1", + "10.1.5.131": "2", + "10.1.5.132": "1", + "10.1.5.133": "1", + "10.1.5.134": "1", + "10.1.5.135": "1", + "10.1.5.136": "1", + "10.1.5.137": "1", + "10.1.5.138": "1", + "10.1.5.139": "1", + "10.1.5.140": "1", + "10.1.5.141": "1", + "10.1.5.142": "1", + "10.1.5.143": "1", + "10.1.5.144": "1", + "10.1.5.145": "1", + "10.1.5.146": "1", + "10.1.5.147": "1", + "10.1.5.148": "1", + "10.1.5.149": "1", + "10.1.5.150": "1", + "10.1.5.151": "1", + "10.1.5.152": "1", + "10.1.5.153": "1", + "10.1.5.154": "1", + "10.1.5.155": "1", + "10.1.5.156": "1", + "10.1.5.157": "1", + "10.1.5.158": "1", + "10.1.5.159": "1", + "10.1.5.160": "1", + "10.1.5.161": "1", + "10.1.5.162": "1", + "10.1.5.163": "1", + "10.1.5.164": "1", + "10.1.5.165": "1", + "10.1.5.166": "1", + "10.1.5.167": "1", + "10.1.5.168": "1", + "10.1.5.169": "1", + "10.1.5.170": "1", + "10.1.5.171": "1", + "10.1.5.172": "1", + "10.1.5.173": "1", + "10.1.5.174": "1", + "10.1.5.175": "1", + "10.1.5.176": "1", + "10.1.5.177": "1", + "10.1.5.178": "1", + "10.1.5.179": "1", + "10.1.5.180": "1", + "10.1.5.181": "1", + "10.1.5.182": "1", + "10.1.5.183": "1", + "10.1.5.184": "1", + "10.1.5.185": "1", + "10.1.5.186": "1", + "10.1.5.187": "1", + "10.1.5.188": "1", + "10.1.5.189": "1", + "10.1.5.190": "1", + "10.1.5.191": "1", + "10.1.5.192": "2", + "10.1.5.193": "2", + "10.1.5.194": "1", + "10.1.5.195": "2", + "10.1.5.196": "1", + "10.1.5.197": "2", + "10.1.5.198": "1", + "10.1.5.199": "2", + "10.1.5.200": "1", + "10.1.5.201": "2", + "10.1.5.202": "1", + "10.1.5.203": "2", + "10.1.5.204": "1", + "10.1.5.205": "2", + "10.1.5.206": "1", + "10.1.5.207": "2", + "10.1.5.208": "1", + "10.1.5.209": "2", + "10.1.5.210": "1", + "10.1.5.211": "2", + "10.1.5.212": "1", + "10.1.5.213": "2", + "10.1.5.214": "1", + "10.1.5.215": "2", + "10.1.5.216": "2", + "10.1.5.217": "1", + "10.1.5.218": "2", + "10.1.6.1": "2", + "10.1.6.2": "2", + "10.1.6.3": "2", + "10.1.6.4": "2", + "10.1.6.5": "2", + "10.1.6.6": "2", + "10.1.6.7": "2", + "10.1.6.8": "2", + "10.1.6.9": "2", + "10.1.6.10": "2", + "10.1.6.11": "2", + "10.1.6.12": "2", + "10.1.6.13": "2", + "10.1.6.14": "2", + "10.1.6.15": "2", + "10.1.6.16": "2", + "10.1.6.17": "2", + "10.1.6.18": "2", + "10.1.6.19": "2", + "10.1.6.20": "2", + "10.1.6.21": "2", + "10.1.6.22": "2", + "10.1.6.23": "2", + "10.1.6.24": "2", + "10.1.6.25": "2", + "10.1.6.26": "2", + "10.1.6.27": "2", + "10.1.6.28": "2", + "10.1.6.29": "2", + "10.1.6.30": "2", + "10.1.6.31": "2", + "10.1.6.32": "2", + "10.1.6.33": "2", + "10.1.6.34": "2", + "10.1.6.35": "2", + "10.1.6.36": "2", + "10.1.6.37": "2", + "10.1.6.38": "2", + "10.1.6.39": "2", + "10.1.6.40": "2", + "10.1.6.41": "2", + "10.1.6.42": "2", + "10.1.6.43": "2", + "10.1.6.44": "2", + "10.1.6.45": "2", + "10.1.6.46": "2", + "10.1.6.47": "2", + "10.1.6.48": "2", + "10.1.6.49": "2", + "10.1.6.50": "2", + "10.1.6.51": "2", + "10.1.6.52": "2", + "10.1.6.53": "2", + "10.1.6.54": "2", + "10.1.6.55": "2", + "10.1.6.56": "2", + "10.1.6.57": "2", + "10.1.6.58": "2", + "10.1.6.59": "2", + "10.1.6.60": "2", + "10.1.6.61": "2", + "10.1.6.62": "2", + "10.1.6.63": "2", + "10.1.6.64": "2", + "10.1.6.65": "2", + "10.1.6.66": "2", + "10.1.6.67": "2", + "10.1.6.68": "2", + "10.1.6.69": "2", + "10.1.6.70": "2", + "10.1.6.71": "2", + "10.1.6.72": "2", + "10.1.6.73": "2", + "10.1.6.74": "2", + "10.1.6.75": "2", + "10.1.6.76": "2", + "10.1.6.77": "2", + "10.1.6.78": "2", + "10.1.6.79": "2", + "10.1.6.80": "2", + "10.1.6.81": "2", + "10.1.6.82": "2", + "10.1.6.83": "2", + "10.1.6.84": "2", + "10.1.6.85": "2", + "10.1.6.86": "2", + "10.1.6.87": "2", + "10.1.6.88": "2", + "10.1.6.89": "2", + "10.1.6.90": "2", + "10.1.6.91": "2", + "10.1.6.92": "2", + "10.1.6.93": "2", + "10.1.6.94": "2", + "10.1.6.95": "2", + "10.1.6.96": "2", + "10.1.6.97": "1", + "10.1.6.98": "1", + "10.1.6.99": "2", + "10.1.6.100": "2", + "10.1.6.101": "1", + "10.1.6.102": "1", + "10.1.6.103": "2", + "10.1.6.104": "2", + "10.1.6.105": "1", + "10.1.6.106": "1", + "10.1.6.107": "2", + "10.1.6.108": "2", + "10.1.6.109": "1", + "10.1.6.110": "1", + "10.1.6.111": "2", + "10.1.6.112": "2", + "10.1.6.113": "2", + "10.1.6.114": "1", + "10.1.6.115": "2", + "10.1.6.116": "2", + "10.1.6.117": "2", + "10.1.6.118": "1", + "10.1.6.119": "2", + "10.1.6.120": "2", + "10.1.6.121": "2", + "10.1.6.122": "2", + "10.1.6.123": "2", + "10.1.6.124": "2", + "10.1.6.125": "2", + "10.1.6.126": "2", + "10.1.6.127": "2", + "10.1.6.128": "2", + "10.1.6.129": "2", + "10.1.6.130": "2", + "10.1.6.131": "2", + "10.1.6.132": "2", + "10.1.6.133": "2", + "10.1.6.134": "2", + "10.1.6.135": "2", + "10.1.6.136": "2", + "10.1.6.137": "2", + "10.1.6.138": "2", + "10.1.6.139": "2", + "10.1.6.140": "2", + "10.1.6.141": "2", + "10.1.6.142": "2", + "10.1.6.143": "2", + "10.1.6.144": "2", + "10.1.6.145": "2", + "10.1.6.146": "2", + "10.1.6.147": "2", + "10.1.6.148": "2", + "10.1.6.149": "2", + "10.1.6.150": "2", + "10.1.6.151": "2", + "10.1.6.152": "2", + "10.1.6.153": "2", + "10.1.6.154": "2", + "10.1.6.155": "2", + "10.1.6.156": "2", + "10.1.6.157": "2", + "10.1.6.158": "2", + "10.1.6.159": "2", + "10.1.6.160": "2", + "10.1.6.161": "2", + "10.1.6.162": "2", + "10.1.6.163": "2", + "10.1.6.164": "2", + "10.1.6.165": "2", + "10.1.6.166": "2", + "10.1.6.167": "2", + "10.1.6.168": "2", + "10.1.6.169": "2", + "10.1.6.170": "2", + "10.1.6.171": "2", + "10.1.6.172": "2", + "10.1.6.173": "2", + "10.1.6.174": "2", + "10.1.6.175": "2", + "10.1.6.176": "2", + "10.1.6.177": "2", + "10.1.6.178": "2", + "10.1.6.179": "2", + "10.1.6.180": "2", + "10.1.6.181": "2", + "10.1.6.182": "2", + "10.1.6.183": "2", + "10.1.6.184": "2", + "10.1.6.185": "2", + "10.1.6.186": "2", + "10.1.6.187": "2", + "10.1.6.188": "2", + "10.1.6.189": "2", + "10.1.6.190": "2", + "10.1.6.191": "2", + "10.1.6.192": "2", + "10.1.6.193": "2", + "10.1.6.194": "2", + "10.1.6.195": "2", + "10.1.6.196": "2", + "10.1.6.197": "2", + "10.1.6.198": "2", + "10.1.6.199": "2", + "10.1.6.200": "2", + "10.1.6.201": "2", + "10.1.6.202": "2", + "10.1.6.203": "2", + "10.1.6.204": "2", + "10.1.6.205": "2", + "10.1.6.206": "2", + "10.1.6.207": "2", + "10.1.6.208": "2", + "10.1.6.209": "2", + "10.1.6.210": "2", + "10.1.6.211": "2", + "10.1.6.212": "2", + "10.1.6.213": "2", + "10.1.6.214": "2", + "10.1.6.215": "2", + "10.1.6.216": "2", + "10.1.6.217": "2", + "10.1.6.218": "2", + "10.1.7.1": "8.0000.01", + "10.1.7.2": "8.0000.02", + "10.1.7.3": "8.0000.04", + "10.1.7.4": "8.0000.05", + "10.1.7.5": "8.0001.01", + "10.1.7.6": "8.0001.02", + "10.1.7.7": "8.0000.40", + "10.1.7.8": "8.0000.41", + "10.1.7.9": "8.0001.40", + "10.1.7.10": "8.0001.41", + "10.1.7.11": "2.0001.01", + "10.1.7.12": "2.0001.02", + "10.1.7.13": "2.0001.03", + "10.1.7.14": "2.0001.04", + "10.1.7.15": "2.0001.05", + "10.1.7.16": "2.0001.06", + "10.1.7.17": "2.0001.07", + "10.1.7.18": "2.0001.08", + "10.1.7.19": "2.0001.09", + "10.1.7.20": "2.0001.10", + "10.1.7.21": "2.0001.11", + "10.1.7.22": "2.0001.12", + "10.1.7.23": "2.0001.13", + "10.1.7.24": "2.0001.14", + "10.1.7.25": "2.0001.15", + "10.1.7.26": "2.0001.16", + "10.1.7.27": "2.0001.17", + "10.1.7.28": "2.0001.18", + "10.1.7.29": "2.0001.19", + "10.1.7.30": "2.0001.20", + "10.1.7.31": "2.0001.21", + "10.1.7.32": "2.0002.01", + "10.1.7.33": "2.0002.02", + "10.1.7.34": "2.0002.03", + "10.1.7.35": "2.0002.04", + "10.1.7.36": "2.0002.05", + "10.1.7.37": "2.0002.06", + "10.1.7.38": "2.0002.07", + "10.1.7.39": "2.0002.08", + "10.1.7.40": "2.0002.09", + "10.1.7.41": "2.0002.10", + "10.1.7.42": "2.0002.11", + "10.1.7.43": "2.0002.12", + "10.1.7.44": "2.0002.13", + "10.1.7.45": "2.0002.14", + "10.1.7.46": "2.0002.15", + "10.1.7.47": "2.0002.16", + "10.1.7.48": "2.0002.17", + "10.1.7.49": "2.0002.18", + "10.1.7.50": "2.0002.19", + "10.1.7.51": "2.0002.20", + "10.1.7.52": "2.0002.21", + "10.1.7.53": "2.0003.01", + "10.1.7.54": "2.0003.02", + "10.1.7.55": "2.0003.03", + "10.1.7.56": "2.0003.04", + "10.1.7.57": "2.0003.05", + "10.1.7.58": "2.0003.06", + "10.1.7.59": "2.0003.07", + "10.1.7.60": "2.0003.08", + "10.1.7.61": "2.0003.09", + "10.1.7.62": "2.0003.10", + "10.1.7.63": "2.0003.11", + "10.1.7.64": "2.0003.12", + "10.1.7.65": "2.0003.13", + "10.1.7.66": "2.0003.14", + "10.1.7.67": "2.0003.15", + "10.1.7.68": "2.0003.16", + "10.1.7.69": "2.0003.17", + "10.1.7.70": "2.0003.18", + "10.1.7.71": "2.0003.19", + "10.1.7.72": "2.0003.20", + "10.1.7.73": "2.0003.21", + "10.1.7.74": "2.0004.01", + "10.1.7.75": "2.0004.02", + "10.1.7.76": "2.0004.03", + "10.1.7.77": "2.0004.04", + "10.1.7.78": "2.0004.05", + "10.1.7.79": "2.0004.06", + "10.1.7.80": "2.0004.07", + "10.1.7.81": "2.0004.08", + "10.1.7.82": "2.0004.09", + "10.1.7.83": "2.0004.10", + "10.1.7.84": "2.0004.11", + "10.1.7.85": "2.0004.12", + "10.1.7.86": "2.0004.13", + "10.1.7.87": "2.0004.14", + "10.1.7.88": "2.0004.15", + "10.1.7.89": "2.0004.16", + "10.1.7.90": "2.0004.17", + "10.1.7.91": "2.0004.18", + "10.1.7.92": "2.0004.19", + "10.1.7.93": "2.0004.20", + "10.1.7.94": "2.0004.21", + "10.1.7.95": "1.0001.01", + "10.1.7.96": "1.0001.02", + "10.1.7.97": "1.0001.04", + "10.1.7.98": "1.0001.07", + "10.1.7.99": "1.0002.01", + "10.1.7.100": "1.0002.02", + "10.1.7.101": "1.0002.04", + "10.1.7.102": "1.0002.07", + "10.1.7.103": "1.0003.01", + "10.1.7.104": "1.0003.02", + "10.1.7.105": "1.0003.04", + "10.1.7.106": "1.0003.07", + "10.1.7.107": "1.0004.01", + "10.1.7.108": "1.0004.02", + "10.1.7.109": "1.0004.04", + "10.1.7.110": "1.0004.07", + "10.1.7.111": "1.0005.01", + "10.1.7.112": "1.0006.01", + "10.1.7.113": "1.0006.02", + "10.1.7.114": "1.0006.04", + "10.1.7.115": "1.0006.03", + "10.1.7.116": "1.0007.01", + "10.1.7.117": "1.0007.02", + "10.1.7.118": "1.0007.04", + "10.1.7.119": "1.0007.03", + "10.1.7.120": "8.0000.06", + "10.1.7.121": "8.0000.07", + "10.1.7.122": "8.0000.80", + "10.1.7.123": "7.0001.01", + "10.1.7.124": "7.0001.02", + "10.1.7.125": "7.0001.06", + "10.1.7.126": "7.0001.08", + "10.1.7.127": "7.0001.04", + "10.1.7.128": "7.0001.05", + "10.1.7.129": "7.0001.07", + "10.1.7.130": "18.0001.01", + "10.1.7.131": "18.0001.02", + "10.1.7.132": "3.0001.01", + "10.1.7.133": "3.0001.02", + "10.1.7.134": "3.0001.03", + "10.1.7.135": "3.0001.04", + "10.1.7.136": "3.0001.05", + "10.1.7.137": "3.0001.06", + "10.1.7.138": "3.0001.07", + "10.1.7.139": "3.0001.08", + "10.1.7.140": "3.0001.09", + "10.1.7.141": "3.0001.10", + "10.1.7.142": "3.0001.11", + "10.1.7.143": "3.0001.12", + "10.1.7.144": "3.0001.13", + "10.1.7.145": "3.0001.14", + "10.1.7.146": "3.0001.15", + "10.1.7.147": "3.0002.01", + "10.1.7.148": "3.0002.02", + "10.1.7.149": "3.0002.03", + "10.1.7.150": "3.0002.04", + "10.1.7.151": "3.0002.05", + "10.1.7.152": "3.0002.06", + "10.1.7.153": "3.0002.07", + "10.1.7.154": "3.0002.08", + "10.1.7.155": "3.0002.09", + "10.1.7.156": "3.0002.10", + "10.1.7.157": "3.0002.11", + "10.1.7.158": "3.0002.12", + "10.1.7.159": "3.0002.13", + "10.1.7.160": "3.0002.14", + "10.1.7.161": "3.0002.15", + "10.1.7.162": "3.0003.01", + "10.1.7.163": "3.0003.02", + "10.1.7.164": "3.0003.03", + "10.1.7.165": "3.0003.04", + "10.1.7.166": "3.0003.05", + "10.1.7.167": "3.0003.06", + "10.1.7.168": "3.0003.07", + "10.1.7.169": "3.0003.08", + "10.1.7.170": "3.0003.09", + "10.1.7.171": "3.0003.10", + "10.1.7.172": "3.0003.11", + "10.1.7.173": "3.0003.12", + "10.1.7.174": "3.0003.13", + "10.1.7.175": "3.0003.14", + "10.1.7.176": "3.0003.15", + "10.1.7.177": "3.0004.01", + "10.1.7.178": "3.0004.02", + "10.1.7.179": "3.0004.03", + "10.1.7.180": "3.0004.04", + "10.1.7.181": "3.0004.05", + "10.1.7.182": "3.0004.06", + "10.1.7.183": "3.0004.07", + "10.1.7.184": "3.0004.08", + "10.1.7.185": "3.0004.09", + "10.1.7.186": "3.0004.10", + "10.1.7.187": "3.0004.11", + "10.1.7.188": "3.0004.12", + "10.1.7.189": "3.0004.13", + "10.1.7.190": "3.0004.14", + "10.1.7.191": "3.0004.15", + "10.1.7.192": "7.0004.01", + "10.1.7.193": "7.0004.12", + "10.1.7.194": "7.0004.04", + "10.1.7.195": "7.0004.11", + "10.1.7.196": "7.0004.03", + "10.1.7.197": "7.0004.10", + "10.1.7.198": "7.0004.02", + "10.1.7.199": "7.0004.14", + "10.1.7.200": "7.0004.06", + "10.1.7.201": "7.0004.13", + "10.1.7.202": "7.0004.05", + "10.1.7.203": "7.0004.17", + "10.1.7.204": "7.0004.09", + "10.1.7.205": "7.0004.15", + "10.1.7.206": "7.0004.07", + "10.1.7.207": "7.0004.16", + "10.1.7.208": "7.0004.08", + "10.1.7.209": "7.0004.21", + "10.1.7.210": "7.0004.20", + "10.1.7.211": "7.0004.23", + "10.1.7.212": "7.0004.22", + "10.1.7.213": "7.0004.25", + "10.1.7.214": "7.0004.24", + "10.1.7.215": "7.0004.28", + "10.1.7.216": "7.0004.29", + "10.1.7.217": "19.0001.01", + "10.1.7.218": "19.0001.02", + "10.1.8.1": "TEMP-HIGH-WN", + "10.1.8.2": "TEMP-HIGH-ALM", + "10.1.8.3": "PWR-LOSS", + "10.1.8.4": "PWR-LOSS", + "10.1.8.5": "TEMP-HIGH-WN", + "10.1.8.6": "TEMP-HIGH-ALM", + "10.1.8.7": "FAN-SLOW", + "10.1.8.8": "FAN-FAILURE", + "10.1.8.9": "FAN-SLOW", + "10.1.8.10": "FAN-FAILURE", + "10.1.8.11": "TEMP-HIGH-ALM", + "10.1.8.12": "TEMP-LOW-ALM", + "10.1.8.13": "TEMP-HIGH-WN", + "10.1.8.14": "TEMP-LOW-WN", + "10.1.8.15": "VCC-HIGH-ALM", + "10.1.8.16": "VCC-LOW-ALM", + "10.1.8.17": "VCC-HIGH-WN", + "10.1.8.18": "VCC-LOW-WN", + "10.1.8.19": "LBC-HIGH-ALM", + "10.1.8.20": "LBC-LOW-ALM", + "10.1.8.21": "LBC-HIGH-WN", + "10.1.8.22": "LBC-LOW-WN", + "10.1.8.23": "TX-PWR-HIGH-ALM", + "10.1.8.24": "TX-PWR-LOW-ALM", + "10.1.8.25": "TX-PWR-HIGH-WN", + "10.1.8.26": "TX-PWR-LOW-WN", + "10.1.8.27": "RX-PWR-HIGH-ALM", + "10.1.8.28": "RX-PWR-LOW-ALM", + "10.1.8.29": "RX-PWR-HIGH-WN", + "10.1.8.30": "RX-PWR-LOW-WN", + "10.1.8.31": "MOD-NOT-PRESENT", + "10.1.8.32": "TEMP-HIGH-ALM", + "10.1.8.33": "TEMP-LOW-ALM", + "10.1.8.34": "TEMP-HIGH-WN", + "10.1.8.35": "TEMP-LOW-WN", + "10.1.8.36": "VCC-HIGH-ALM", + "10.1.8.37": "VCC-LOW-ALM", + "10.1.8.38": "VCC-HIGH-WN", + "10.1.8.39": "VCC-LOW-WN", + "10.1.8.40": "LBC-HIGH-ALM", + "10.1.8.41": "LBC-LOW-ALM", + "10.1.8.42": "LBC-HIGH-WN", + "10.1.8.43": "LBC-LOW-WN", + "10.1.8.44": "TX-PWR-HIGH-ALM", + "10.1.8.45": "TX-PWR-LOW-ALM", + "10.1.8.46": "TX-PWR-HIGH-WN", + "10.1.8.47": "TX-PWR-LOW-WN", + "10.1.8.48": "RX-PWR-HIGH-ALM", + "10.1.8.49": "RX-PWR-LOW-ALM", + "10.1.8.50": "RX-PWR-HIGH-WN", + "10.1.8.51": "RX-PWR-LOW-WN", + "10.1.8.52": "MOD-NOT-PRESENT", + "10.1.8.53": "TEMP-HIGH-ALM", + "10.1.8.54": "TEMP-LOW-ALM", + "10.1.8.55": "TEMP-HIGH-WN", + "10.1.8.56": "TEMP-LOW-WN", + "10.1.8.57": "VCC-HIGH-ALM", + "10.1.8.58": "VCC-LOW-ALM", + "10.1.8.59": "VCC-HIGH-WN", + "10.1.8.60": "VCC-LOW-WN", + "10.1.8.61": "LBC-HIGH-ALM", + "10.1.8.62": "LBC-LOW-ALM", + "10.1.8.63": "LBC-HIGH-WN", + "10.1.8.64": "LBC-LOW-WN", + "10.1.8.65": "TX-PWR-HIGH-ALM", + "10.1.8.66": "TX-PWR-LOW-ALM", + "10.1.8.67": "TX-PWR-HIGH-WN", + "10.1.8.68": "TX-PWR-LOW-WN", + "10.1.8.69": "RX-PWR-HIGH-ALM", + "10.1.8.70": "RX-PWR-LOW-ALM", + "10.1.8.71": "RX-PWR-HIGH-WN", + "10.1.8.72": "RX-PWR-LOW-WN", + "10.1.8.73": "MOD-NOT-PRESENT", + "10.1.8.74": "TEMP-HIGH-ALM", + "10.1.8.75": "TEMP-LOW-ALM", + "10.1.8.76": "TEMP-HIGH-WN", + "10.1.8.77": "TEMP-LOW-WN", + "10.1.8.78": "VCC-HIGH-ALM", + "10.1.8.79": "VCC-LOW-ALM", + "10.1.8.80": "VCC-HIGH-WN", + "10.1.8.81": "VCC-LOW-WN", + "10.1.8.82": "LBC-HIGH-ALM", + "10.1.8.83": "LBC-LOW-ALM", + "10.1.8.84": "LBC-HIGH-WN", + "10.1.8.85": "LBC-LOW-WN", + "10.1.8.86": "TX-PWR-HIGH-ALM", + "10.1.8.87": "TX-PWR-LOW-ALM", + "10.1.8.88": "TX-PWR-HIGH-WN", + "10.1.8.89": "TX-PWR-LOW-WN", + "10.1.8.90": "RX-PWR-HIGH-ALM", + "10.1.8.91": "RX-PWR-LOW-ALM", + "10.1.8.92": "RX-PWR-HIGH-WN", + "10.1.8.93": "RX-PWR-LOW-WN", + "10.1.8.94": "MOD-NOT-PRESENT", + "10.1.8.95": "LINK-DOWN", + "10.1.8.96": "OAM-LOOPBACK", + "10.1.8.97": "LINK-DOWN-FP", + "10.1.8.98": "LINK-DOWN-SA", + "10.1.8.99": "LINK-DOWN", + "10.1.8.100": "OAM-LOOPBACK", + "10.1.8.101": "LINK-DOWN-FP", + "10.1.8.102": "LINK-DOWN-SA", + "10.1.8.103": "LINK-DOWN", + "10.1.8.104": "OAM-LOOPBACK", + "10.1.8.105": "LINK-DOWN-FP", + "10.1.8.106": "LINK-DOWN-SA", + "10.1.8.107": "LINK-DOWN", + "10.1.8.108": "OAM-LOOPBACK", + "10.1.8.109": "LINK-DOWN-FP", + "10.1.8.110": "LINK-DOWN-SA", + "10.1.8.111": "LINK-DOWN", + "10.1.8.112": "LINK-DOWN", + "10.1.8.113": "OAM-LOOPBACK", + "10.1.8.114": "LINK-DOWN-FP", + "10.1.8.115": "SPEED-MISMATCH", + "10.1.8.116": "LINK-DOWN", + "10.1.8.117": "OAM-LOOPBACK", + "10.1.8.118": "LINK-DOWN-FP", + "10.1.8.119": "SPEED-MISMATCH", + "10.1.8.120": "DRYCONTACT-IN1", + "10.1.8.121": "DRYCONTACT-IN2", + "10.1.8.122": "TOOL-DIAG-RUNNING", + "10.1.8.123": "NTP-STATUS", + "10.1.8.124": "NTP-LOST-SYNCH", + "10.1.8.125": "NTP-CAPABILITY", + "10.1.8.126": "NTP-RMT-CAPABILITY", + "10.1.8.127": "PTP-STATUS", + "10.1.8.128": "PTP-LOST-SYNCH", + "10.1.8.129": "PTP-CAPABILITY", + "10.1.8.130": "INVENTORY-ALMOST-FULL", + "10.1.8.131": "INVENTORY-FULL", + "10.1.8.132": "CONNECT-LOSS", + "10.1.8.133": "PKT-LOSS", + "10.1.8.134": "OW-DELAY", + "10.1.8.135": "OW-AVG-DELAY", + "10.1.8.136": "OW-DV", + "10.1.8.137": "OW-AVG-DV", + "10.1.8.138": "TW-DELAY", + "10.1.8.139": "TW-AVG-DELAY", + "10.1.8.140": "TW-DV", + "10.1.8.141": "TW-AVG-DV", + "10.1.8.142": "VLAN1-ID", + "10.1.8.143": "VLAN2-ID", + "10.1.8.144": "VLAN1-PRIO", + "10.1.8.145": "VLAN2-PRIO", + "10.1.8.146": "DSCP", + "10.1.8.147": "CONNECT-LOSS", + "10.1.8.148": "PKT-LOSS", + "10.1.8.149": "OW-DELAY", + "10.1.8.150": "OW-AVG-DELAY", + "10.1.8.151": "OW-DV", + "10.1.8.152": "OW-AVG-DV", + "10.1.8.153": "TW-DELAY", + "10.1.8.154": "TW-AVG-DELAY", + "10.1.8.155": "TW-DV", + "10.1.8.156": "TW-AVG-DV", + "10.1.8.157": "VLAN1-ID", + "10.1.8.158": "VLAN2-ID", + "10.1.8.159": "VLAN1-PRIO", + "10.1.8.160": "VLAN2-PRIO", + "10.1.8.161": "DSCP", + "10.1.8.162": "CONNECT-LOSS", + "10.1.8.163": "PKT-LOSS", + "10.1.8.164": "OW-DELAY", + "10.1.8.165": "OW-AVG-DELAY", + "10.1.8.166": "OW-DV", + "10.1.8.167": "OW-AVG-DV", + "10.1.8.168": "TW-DELAY", + "10.1.8.169": "TW-AVG-DELAY", + "10.1.8.170": "TW-DV", + "10.1.8.171": "TW-AVG-DV", + "10.1.8.172": "VLAN1-ID", + "10.1.8.173": "VLAN2-ID", + "10.1.8.174": "VLAN1-PRIO", + "10.1.8.175": "VLAN2-PRIO", + "10.1.8.176": "DSCP", + "10.1.8.177": "CONNECT-LOSS", + "10.1.8.178": "PKT-LOSS", + "10.1.8.179": "OW-DELAY", + "10.1.8.180": "OW-AVG-DELAY", + "10.1.8.181": "OW-DV", + "10.1.8.182": "OW-AVG-DV", + "10.1.8.183": "TW-DELAY", + "10.1.8.184": "TW-AVG-DELAY", + "10.1.8.185": "TW-DV", + "10.1.8.186": "TW-AVG-DV", + "10.1.8.187": "VLAN1-ID", + "10.1.8.188": "VLAN2-ID", + "10.1.8.189": "VLAN1-PRIO", + "10.1.8.190": "VLAN2-PRIO", + "10.1.8.191": "DSCP", + "10.1.8.192": "VCA-LOST-COMM", + "10.1.8.193": "VCA-FULL-PAA", + "10.1.8.194": "VCA-MAX-PAA", + "10.1.8.195": "VCA-FULL-BWP", + "10.1.8.196": "VCA-MAX-BWP", + "10.1.8.197": "VCA-FULL-POL", + "10.1.8.198": "VCA-MAX-POL", + "10.1.8.199": "VCA-FULL-DMM", + "10.1.8.200": "VCA-MAX-DMM", + "10.1.8.201": "VCA-FULL-PL", + "10.1.8.202": "VCA-MAX-PL", + "10.1.8.203": "VCA-FULL-SLM", + "10.1.8.204": "VCA-MAX-SLM", + "10.1.8.205": "VCA-FULL-SA", + "10.1.8.206": "VCA-MAX-SA", + "10.1.8.207": "VCA-FULL-SA_M", + "10.1.8.208": "VCA-MAX-SA_M", + "10.1.8.209": "VCA-FULL-TWAMP", + "10.1.8.210": "VCA-MAX-TWAMP", + "10.1.8.211": "VCA-FULL-SHAPER-V2", + "10.1.8.212": "VCA-MAX-SHAPER-V2", + "10.1.8.213": "VCA-FULL-PORT", + "10.1.8.214": "VCA-MAX-PORT", + "10.1.8.215": "VCA-FULL-SFP", + "10.1.8.216": "VCA-FULL-SYSTEM-HEALTH", + "10.1.8.217": "EXPIRING", + "10.1.8.218": "EXPIRED", + "10.1.9.1": "ENV.TEMP", + "10.1.9.2": "ENV.TEMP", + "10.1.9.3": "ENV.PWR-FEEDA", + "10.1.9.4": "ENV.PWR-FEEDB", + "10.1.9.5": "ENV.TEMP", + "10.1.9.6": "ENV.TEMP", + "10.1.9.7": "ENV.FAN-SLOW", + "10.1.9.8": "ENV.FAN-FAILURE", + "10.1.9.9": "ENV.FAN-SLOW", + "10.1.9.10": "ENV.FAN-FAILURE", + "10.1.9.11": "SFP.1", + "10.1.9.12": "SFP.1", + "10.1.9.13": "SFP.1", + "10.1.9.14": "SFP.1", + "10.1.9.15": "SFP.1", + "10.1.9.16": "SFP.1", + "10.1.9.17": "SFP.1", + "10.1.9.18": "SFP.1", + "10.1.9.19": "SFP.1", + "10.1.9.20": "SFP.1", + "10.1.9.21": "SFP.1", + "10.1.9.22": "SFP.1", + "10.1.9.23": "SFP.1", + "10.1.9.24": "SFP.1", + "10.1.9.25": "SFP.1", + "10.1.9.26": "SFP.1", + "10.1.9.27": "SFP.1", + "10.1.9.28": "SFP.1", + "10.1.9.29": "SFP.1", + "10.1.9.30": "SFP.1", + "10.1.9.31": "SFP.1", + "10.1.9.32": "SFP.2", + "10.1.9.33": "SFP.2", + "10.1.9.34": "SFP.2", + "10.1.9.35": "SFP.2", + "10.1.9.36": "SFP.2", + "10.1.9.37": "SFP.2", + "10.1.9.38": "SFP.2", + "10.1.9.39": "SFP.2", + "10.1.9.40": "SFP.2", + "10.1.9.41": "SFP.2", + "10.1.9.42": "SFP.2", + "10.1.9.43": "SFP.2", + "10.1.9.44": "SFP.2", + "10.1.9.45": "SFP.2", + "10.1.9.46": "SFP.2", + "10.1.9.47": "SFP.2", + "10.1.9.48": "SFP.2", + "10.1.9.49": "SFP.2", + "10.1.9.50": "SFP.2", + "10.1.9.51": "SFP.2", + "10.1.9.52": "SFP.2", + "10.1.9.53": "SFP.3", + "10.1.9.54": "SFP.3", + "10.1.9.55": "SFP.3", + "10.1.9.56": "SFP.3", + "10.1.9.57": "SFP.3", + "10.1.9.58": "SFP.3", + "10.1.9.59": "SFP.3", + "10.1.9.60": "SFP.3", + "10.1.9.61": "SFP.3", + "10.1.9.62": "SFP.3", + "10.1.9.63": "SFP.3", + "10.1.9.64": "SFP.3", + "10.1.9.65": "SFP.3", + "10.1.9.66": "SFP.3", + "10.1.9.67": "SFP.3", + "10.1.9.68": "SFP.3", + "10.1.9.69": "SFP.3", + "10.1.9.70": "SFP.3", + "10.1.9.71": "SFP.3", + "10.1.9.72": "SFP.3", + "10.1.9.73": "SFP.3", + "10.1.9.74": "SFP.4", + "10.1.9.75": "SFP.4", + "10.1.9.76": "SFP.4", + "10.1.9.77": "SFP.4", + "10.1.9.78": "SFP.4", + "10.1.9.79": "SFP.4", + "10.1.9.80": "SFP.4", + "10.1.9.81": "SFP.4", + "10.1.9.82": "SFP.4", + "10.1.9.83": "SFP.4", + "10.1.9.84": "SFP.4", + "10.1.9.85": "SFP.4", + "10.1.9.86": "SFP.4", + "10.1.9.87": "SFP.4", + "10.1.9.88": "SFP.4", + "10.1.9.89": "SFP.4", + "10.1.9.90": "SFP.4", + "10.1.9.91": "SFP.4", + "10.1.9.92": "SFP.4", + "10.1.9.93": "SFP.4", + "10.1.9.94": "SFP.4", + "10.1.9.95": "PORT.EVEN_VLAN_UPLINK", + "10.1.9.96": "PORT.EVEN_VLAN_UPLINK", + "10.1.9.97": "PORT.EVEN_VLAN_UPLINK", + "10.1.9.98": "PORT.EVEN_VLAN_UPLINK", + "10.1.9.99": "PORT.ODD_VLAN_UPLINK", + "10.1.9.100": "PORT.ODD_VLAN_UPLINK", + "10.1.9.101": "PORT.ODD_VLAN_UPLINK", + "10.1.9.102": "PORT.ODD_VLAN_UPLINK", + "10.1.9.103": "PORT.EVEN_VLAN_DOWNLIN", + "10.1.9.104": "PORT.EVEN_VLAN_DOWNLIN", + "10.1.9.105": "PORT.EVEN_VLAN_DOWNLIN", + "10.1.9.106": "PORT.EVEN_VLAN_DOWNLIN", + "10.1.9.107": "PORT.ODD_VLAN_DOWNLINK", + "10.1.9.108": "PORT.ODD_VLAN_DOWNLINK", + "10.1.9.109": "PORT.ODD_VLAN_DOWNLINK", + "10.1.9.110": "PORT.ODD_VLAN_DOWNLINK", + "10.1.9.111": "PORT.Management", + "10.1.9.112": "PORT.LAG-1", + "10.1.9.113": "PORT.LAG-1", + "10.1.9.114": "PORT.LAG-1", + "10.1.9.115": "PORT.LAG-1", + "10.1.9.116": "PORT.LAG-2", + "10.1.9.117": "PORT.LAG-2", + "10.1.9.118": "PORT.LAG-2", + "10.1.9.119": "PORT.LAG-2", + "10.1.9.120": "ENV.DRYCONTACT-IN1", + "10.1.9.121": "ENV.DRYCONTACT-IN2", + "10.1.9.122": "NE", + "10.1.9.123": "PROTOCOL.NTP", + "10.1.9.124": "PROTOCOL.NTP", + "10.1.9.125": "PROTOCOL.NTP", + "10.1.9.126": "PROTOCOL.NTP", + "10.1.9.127": "PROTOCOL.PTP", + "10.1.9.128": "PROTOCOL.PTP", + "10.1.9.129": "PROTOCOL.PTP", + "10.1.9.130": "INVENTORY", + "10.1.9.131": "INVENTORY", + "10.1.9.132": "PAA.PAA_Site573_VL2216", + "10.1.9.133": "PAA.PAA_Site573_VL2216", + "10.1.9.134": "PAA.PAA_Site573_VL2216", + "10.1.9.135": "PAA.PAA_Site573_VL2216", + "10.1.9.136": "PAA.PAA_Site573_VL2216", + "10.1.9.137": "PAA.PAA_Site573_VL2216", + "10.1.9.138": "PAA.PAA_Site573_VL2216", + "10.1.9.139": "PAA.PAA_Site573_VL2216", + "10.1.9.140": "PAA.PAA_Site573_VL2216", + "10.1.9.141": "PAA.PAA_Site573_VL2216", + "10.1.9.142": "PAA.PAA_Site573_VL2216", + "10.1.9.143": "PAA.PAA_Site573_VL2216", + "10.1.9.144": "PAA.PAA_Site573_VL2216", + "10.1.9.145": "PAA.PAA_Site573_VL2216", + "10.1.9.146": "PAA.PAA_Site573_VL2216", + "10.1.9.147": "PAA.PAA_site573_2216_PNAP", + "10.1.9.148": "PAA.PAA_site573_2216_PNAP", + "10.1.9.149": "PAA.PAA_site573_2216_PNAP", + "10.1.9.150": "PAA.PAA_site573_2216_PNAP", + "10.1.9.151": "PAA.PAA_site573_2216_PNAP", + "10.1.9.152": "PAA.PAA_site573_2216_PNAP", + "10.1.9.153": "PAA.PAA_site573_2216_PNAP", + "10.1.9.154": "PAA.PAA_site573_2216_PNAP", + "10.1.9.155": "PAA.PAA_site573_2216_PNAP", + "10.1.9.156": "PAA.PAA_site573_2216_PNAP", + "10.1.9.157": "PAA.PAA_site573_2216_PNAP", + "10.1.9.158": "PAA.PAA_site573_2216_PNAP", + "10.1.9.159": "PAA.PAA_site573_2216_PNAP", + "10.1.9.160": "PAA.PAA_site573_2216_PNAP", + "10.1.9.161": "PAA.PAA_site573_2216_PNAP", + "10.1.9.162": "PAA.PAA_Site573_VL2217", + "10.1.9.163": "PAA.PAA_Site573_VL2217", + "10.1.9.164": "PAA.PAA_Site573_VL2217", + "10.1.9.165": "PAA.PAA_Site573_VL2217", + "10.1.9.166": "PAA.PAA_Site573_VL2217", + "10.1.9.167": "PAA.PAA_Site573_VL2217", + "10.1.9.168": "PAA.PAA_Site573_VL2217", + "10.1.9.169": "PAA.PAA_Site573_VL2217", + "10.1.9.170": "PAA.PAA_Site573_VL2217", + "10.1.9.171": "PAA.PAA_Site573_VL2217", + "10.1.9.172": "PAA.PAA_Site573_VL2217", + "10.1.9.173": "PAA.PAA_Site573_VL2217", + "10.1.9.174": "PAA.PAA_Site573_VL2217", + "10.1.9.175": "PAA.PAA_Site573_VL2217", + "10.1.9.176": "PAA.PAA_Site573_VL2217", + "10.1.9.177": "PAA.PAA_site573_2217_PNAP", + "10.1.9.178": "PAA.PAA_site573_2217_PNAP", + "10.1.9.179": "PAA.PAA_site573_2217_PNAP", + "10.1.9.180": "PAA.PAA_site573_2217_PNAP", + "10.1.9.181": "PAA.PAA_site573_2217_PNAP", + "10.1.9.182": "PAA.PAA_site573_2217_PNAP", + "10.1.9.183": "PAA.PAA_site573_2217_PNAP", + "10.1.9.184": "PAA.PAA_site573_2217_PNAP", + "10.1.9.185": "PAA.PAA_site573_2217_PNAP", + "10.1.9.186": "PAA.PAA_site573_2217_PNAP", + "10.1.9.187": "PAA.PAA_site573_2217_PNAP", + "10.1.9.188": "PAA.PAA_site573_2217_PNAP", + "10.1.9.189": "PAA.PAA_site573_2217_PNAP", + "10.1.9.190": "PAA.PAA_site573_2217_PNAP", + "10.1.9.191": "PAA.PAA_site573_2217_PNAP", + "10.1.9.192": "VCAGENT", + "10.1.9.193": "VCAGENT", + "10.1.9.194": "VCAGENT", + "10.1.9.195": "VCAGENT", + "10.1.9.196": "VCAGENT", + "10.1.9.197": "VCAGENT", + "10.1.9.198": "VCAGENT", + "10.1.9.199": "VCAGENT", + "10.1.9.200": "VCAGENT", + "10.1.9.201": "VCAGENT", + "10.1.9.202": "VCAGENT", + "10.1.9.203": "VCAGENT", + "10.1.9.204": "VCAGENT", + "10.1.9.205": "VCAGENT", + "10.1.9.206": "VCAGENT", + "10.1.9.207": "VCAGENT", + "10.1.9.208": "VCAGENT", + "10.1.9.209": "VCAGENT", + "10.1.9.210": "VCAGENT", + "10.1.9.211": "VCAGENT", + "10.1.9.212": "VCAGENT", + "10.1.9.213": "VCAGENT", + "10.1.9.214": "VCAGENT", + "10.1.9.215": "VCAGENT", + "10.1.9.216": "VCAGENT", + "10.1.9.217": "CERTIFICATE.EXPIRING", + "10.1.9.218": "CERTIFICATE.EXPIRED", + "10.1.10.1": "0", + "10.1.10.2": "0", + "10.1.10.3": "0", + "10.1.10.4": "0", + "10.1.10.5": "0", + "10.1.10.6": "0", + "10.1.10.7": "0", + "10.1.10.8": "0", + "10.1.10.9": "0", + "10.1.10.10": "0", + "10.1.10.11": "0", + "10.1.10.12": "0", + "10.1.10.13": "0", + "10.1.10.14": "0", + "10.1.10.15": "0", + "10.1.10.16": "0", + "10.1.10.17": "0", + "10.1.10.18": "0", + "10.1.10.19": "0", + "10.1.10.20": "0", + "10.1.10.21": "0", + "10.1.10.22": "0", + "10.1.10.23": "0", + "10.1.10.24": "0", + "10.1.10.25": "0", + "10.1.10.26": "0", + "10.1.10.27": "0", + "10.1.10.28": "0", + "10.1.10.29": "0", + "10.1.10.30": "0", + "10.1.10.31": "0", + "10.1.10.32": "0", + "10.1.10.33": "0", + "10.1.10.34": "0", + "10.1.10.35": "0", + "10.1.10.36": "0", + "10.1.10.37": "0", + "10.1.10.38": "0", + "10.1.10.39": "0", + "10.1.10.40": "0", + "10.1.10.41": "0", + "10.1.10.42": "0", + "10.1.10.43": "0", + "10.1.10.44": "0", + "10.1.10.45": "0", + "10.1.10.46": "0", + "10.1.10.47": "0", + "10.1.10.48": "0", + "10.1.10.49": "0", + "10.1.10.50": "0", + "10.1.10.51": "0", + "10.1.10.52": "0", + "10.1.10.53": "0", + "10.1.10.54": "0", + "10.1.10.55": "0", + "10.1.10.56": "0", + "10.1.10.57": "0", + "10.1.10.58": "0", + "10.1.10.59": "0", + "10.1.10.60": "0", + "10.1.10.61": "0", + "10.1.10.62": "0", + "10.1.10.63": "0", + "10.1.10.64": "0", + "10.1.10.65": "0", + "10.1.10.66": "0", + "10.1.10.67": "0", + "10.1.10.68": "0", + "10.1.10.69": "0", + "10.1.10.70": "0", + "10.1.10.71": "0", + "10.1.10.72": "0", + "10.1.10.73": "0", + "10.1.10.74": "0", + "10.1.10.75": "0", + "10.1.10.76": "0", + "10.1.10.77": "0", + "10.1.10.78": "0", + "10.1.10.79": "0", + "10.1.10.80": "0", + "10.1.10.81": "0", + "10.1.10.82": "0", + "10.1.10.83": "0", + "10.1.10.84": "0", + "10.1.10.85": "0", + "10.1.10.86": "0", + "10.1.10.87": "0", + "10.1.10.88": "0", + "10.1.10.89": "0", + "10.1.10.90": "0", + "10.1.10.91": "0", + "10.1.10.92": "0", + "10.1.10.93": "0", + "10.1.10.94": "0", + "10.1.10.95": "0", + "10.1.10.96": "0", + "10.1.10.97": "0", + "10.1.10.98": "0", + "10.1.10.99": "0", + "10.1.10.100": "0", + "10.1.10.101": "0", + "10.1.10.102": "0", + "10.1.10.103": "0", + "10.1.10.104": "0", + "10.1.10.105": "0", + "10.1.10.106": "0", + "10.1.10.107": "0", + "10.1.10.108": "0", + "10.1.10.109": "0", + "10.1.10.110": "0", + "10.1.10.111": "0", + "10.1.10.112": "0", + "10.1.10.113": "0", + "10.1.10.114": "0", + "10.1.10.115": "0", + "10.1.10.116": "0", + "10.1.10.117": "0", + "10.1.10.118": "0", + "10.1.10.119": "0", + "10.1.10.120": "0", + "10.1.10.121": "0", + "10.1.10.122": "0", + "10.1.10.123": "0", + "10.1.10.124": "0", + "10.1.10.125": "0", + "10.1.10.126": "0", + "10.1.10.127": "0", + "10.1.10.128": "0", + "10.1.10.129": "0", + "10.1.10.130": "0", + "10.1.10.131": "0", + "10.1.10.132": "0", + "10.1.10.133": "0", + "10.1.10.134": "0", + "10.1.10.135": "0", + "10.1.10.136": "0", + "10.1.10.137": "0", + "10.1.10.138": "0", + "10.1.10.139": "0", + "10.1.10.140": "0", + "10.1.10.141": "0", + "10.1.10.142": "0", + "10.1.10.143": "0", + "10.1.10.144": "0", + "10.1.10.145": "0", + "10.1.10.146": "0", + "10.1.10.147": "0", + "10.1.10.148": "0", + "10.1.10.149": "0", + "10.1.10.150": "0", + "10.1.10.151": "0", + "10.1.10.152": "0", + "10.1.10.153": "0", + "10.1.10.154": "0", + "10.1.10.155": "0", + "10.1.10.156": "0", + "10.1.10.157": "0", + "10.1.10.158": "0", + "10.1.10.159": "0", + "10.1.10.160": "0", + "10.1.10.161": "0", + "10.1.10.162": "0", + "10.1.10.163": "0", + "10.1.10.164": "0", + "10.1.10.165": "0", + "10.1.10.166": "0", + "10.1.10.167": "0", + "10.1.10.168": "0", + "10.1.10.169": "0", + "10.1.10.170": "0", + "10.1.10.171": "0", + "10.1.10.172": "0", + "10.1.10.173": "0", + "10.1.10.174": "0", + "10.1.10.175": "0", + "10.1.10.176": "0", + "10.1.10.177": "0", + "10.1.10.178": "0", + "10.1.10.179": "0", + "10.1.10.180": "0", + "10.1.10.181": "0", + "10.1.10.182": "0", + "10.1.10.183": "0", + "10.1.10.184": "0", + "10.1.10.185": "0", + "10.1.10.186": "0", + "10.1.10.187": "0", + "10.1.10.188": "0", + "10.1.10.189": "0", + "10.1.10.190": "0", + "10.1.10.191": "0", + "10.1.10.192": "0", + "10.1.10.193": "0", + "10.1.10.194": "0", + "10.1.10.195": "0", + "10.1.10.196": "0", + "10.1.10.197": "0", + "10.1.10.198": "0", + "10.1.10.199": "0", + "10.1.10.200": "0", + "10.1.10.201": "0", + "10.1.10.202": "0", + "10.1.10.203": "0", + "10.1.10.204": "0", + "10.1.10.205": "0", + "10.1.10.206": "0", + "10.1.10.207": "0", + "10.1.10.208": "0", + "10.1.10.209": "0", + "10.1.10.210": "0", + "10.1.10.211": "0", + "10.1.10.212": "0", + "10.1.10.213": "0", + "10.1.10.214": "0", + "10.1.10.215": "0", + "10.1.10.216": "0", + "10.1.10.217": "0", + "10.1.10.218": "0", + "11.1.1.1": "1", + "11.1.1.2": "2", + "11.1.1.3": "3", + "11.1.1.4": "4", + "11.1.1.5": "5", + "11.1.1.6": "6", + "11.1.1.7": "7", + "11.1.1.8": "8", + "11.1.1.9": "9", + "11.1.1.10": "10", + "11.1.1.11": "11", + "11.1.1.12": "12", + "11.1.1.13": "13", + "11.1.1.14": "14", + "11.1.1.15": "15", + "11.1.1.16": "16", + "11.1.1.17": "17", + "11.1.1.18": "18", + "11.1.1.19": "19", + "11.1.1.20": "20", + "11.1.1.21": "21", + "11.1.1.22": "22", + "11.1.1.23": "23", + "11.1.1.24": "24", + "11.1.1.25": "25", + "11.1.1.26": "26", + "11.1.1.27": "27", + "11.1.1.28": "28", + "11.1.1.29": "29", + "11.1.1.30": "30", + "11.1.1.31": "31", + "11.1.1.32": "32", + "11.1.1.33": "33", + "11.1.1.34": "34", + "11.1.1.35": "35", + "11.1.1.36": "36", + "11.1.1.37": "37", + "11.1.1.38": "38", + "11.1.1.39": "39", + "11.1.1.40": "40", + "11.1.1.41": "41", + "11.1.1.42": "42", + "11.1.1.43": "43", + "11.1.1.44": "44", + "11.1.1.45": "45", + "11.1.1.46": "46", + "11.1.1.47": "47", + "11.1.1.48": "48", + "11.1.1.49": "49", + "11.1.1.50": "50", + "11.1.1.51": "51", + "11.1.1.52": "52", + "11.1.1.53": "53", + "11.1.1.54": "54", + "11.1.1.55": "55", + "11.1.1.56": "56", + "11.1.1.57": "57", + "11.1.1.58": "58", + "11.1.1.59": "59", + "11.1.1.60": "60", + "11.1.1.61": "61", + "11.1.1.62": "62", + "11.1.1.63": "63", + "11.1.1.64": "64", + "11.1.1.65": "65", + "11.1.1.66": "66", + "11.1.1.67": "67", + "11.1.1.68": "68", + "11.1.1.69": "69", + "11.1.1.70": "70", + "11.1.1.71": "71", + "11.1.1.72": "72", + "11.1.1.73": "73", + "11.1.1.74": "74", + "11.1.1.75": "75", + "11.1.1.76": "76", + "11.1.1.77": "77", + "11.1.1.78": "78", + "11.1.1.79": "79", + "11.1.1.80": "80", + "11.1.1.81": "81", + "11.1.1.82": "82", + "11.1.1.83": "83", + "11.1.1.84": "84", + "11.1.1.85": "85", + "11.1.1.86": "86", + "11.1.1.87": "87", + "11.1.1.88": "88", + "11.1.1.89": "89", + "11.1.1.90": "90", + "11.1.1.91": "91", + "11.1.1.92": "92", + "11.1.1.93": "93", + "11.1.1.94": "94", + "11.1.1.95": "95", + "11.1.1.96": "96", + "11.1.1.97": "97", + "11.1.1.98": "98", + "11.1.1.99": "99", + "11.1.1.100": "100", + "11.1.1.101": "101", + "11.1.1.102": "102", + "11.1.1.103": "103", + "11.1.1.104": "104", + "11.1.1.105": "105", + "11.1.1.106": "106", + "11.1.1.107": "107", + "11.1.1.108": "108", + "11.1.1.109": "109", + "11.1.1.110": "110", + "11.1.1.111": "111", + "11.1.1.112": "112", + "11.1.1.113": "113", + "11.1.1.114": "114", + "11.1.1.115": "115", + "11.1.1.116": "116", + "11.1.1.117": "117", + "11.1.1.118": "118", + "11.1.1.119": "119", + "11.1.1.120": "120", + "11.1.1.121": "121", + "11.1.1.122": "122", + "11.1.1.123": "123", + "11.1.1.124": "124", + "11.1.1.125": "125", + "11.1.1.126": "126", + "11.1.1.127": "127", + "11.1.1.128": "128", + "11.1.1.129": "129", + "11.1.1.130": "130", + "11.1.1.131": "131", + "11.1.1.132": "132", + "11.1.1.133": "133", + "11.1.1.134": "134", + "11.1.1.135": "135", + "11.1.1.136": "136", + "11.1.1.137": "137", + "11.1.1.138": "138", + "11.1.1.139": "139", + "11.1.1.140": "140", + "11.1.1.141": "141", + "11.1.1.142": "142", + "11.1.1.143": "143", + "11.1.1.144": "144", + "11.1.1.145": "145", + "11.1.1.146": "146", + "11.1.1.147": "147", + "11.1.1.148": "148", + "11.1.1.149": "149", + "11.1.1.150": "150", + "11.1.1.151": "151", + "11.1.1.152": "152", + "11.1.1.153": "153", + "11.1.1.154": "154", + "11.1.1.155": "155", + "11.1.1.156": "156", + "11.1.1.157": "157", + "11.1.1.158": "158", + "11.1.1.159": "159", + "11.1.1.160": "160", + "11.1.1.161": "161", + "11.1.1.162": "162", + "11.1.1.163": "163", + "11.1.1.164": "164", + "11.1.1.165": "165", + "11.1.1.166": "166", + "11.1.1.167": "167", + "11.1.1.168": "168", + "11.1.1.169": "169", + "11.1.1.170": "170", + "11.1.1.171": "171", + "11.1.1.172": "172", + "11.1.1.173": "173", + "11.1.1.174": "174", + "11.1.1.175": "175", + "11.1.1.176": "176", + "11.1.1.177": "177", + "11.1.1.178": "178", + "11.1.1.179": "179", + "11.1.1.180": "180", + "11.1.1.181": "181", + "11.1.1.182": "182", + "11.1.1.183": "183", + "11.1.1.184": "184", + "11.1.1.185": "185", + "11.1.1.186": "186", + "11.1.1.187": "187", + "11.1.1.188": "188", + "11.1.1.189": "189", + "11.1.1.190": "190", + "11.1.1.191": "191", + "11.1.1.192": "192", + "11.1.1.193": "193", + "11.1.1.194": "194", + "11.1.1.195": "195", + "11.1.1.196": "196", + "11.1.1.197": "197", + "11.1.1.198": "198", + "11.1.1.199": "199", + "11.1.1.200": "200", + "11.1.1.201": "201", + "11.1.1.202": "202", + "11.1.1.203": "203", + "11.1.1.204": "204", + "11.1.1.205": "205", + "11.1.1.206": "206", + "11.1.1.207": "207", + "11.1.1.208": "208", + "11.1.1.209": "209", + "11.1.1.210": "210", + "11.1.1.211": "211", + "11.1.1.212": "212", + "11.1.1.213": "213", + "11.1.1.214": "214", + "11.1.1.215": "215", + "11.1.1.216": "216", + "11.1.1.217": "217", + "11.1.1.218": "218", + "11.1.2.1": "8000001", + "11.1.2.2": "8000002", + "11.1.2.3": "8000004", + "11.1.2.4": "8000005", + "11.1.2.5": "8000101", + "11.1.2.6": "8000102", + "11.1.2.7": "8000040", + "11.1.2.8": "8000041", + "11.1.2.9": "8000140", + "11.1.2.10": "8000141", + "11.1.2.11": "2000101", + "11.1.2.12": "2000102", + "11.1.2.13": "2000103", + "11.1.2.14": "2000104", + "11.1.2.15": "2000105", + "11.1.2.16": "2000106", + "11.1.2.17": "2000107", + "11.1.2.18": "2000108", + "11.1.2.19": "2000109", + "11.1.2.20": "2000110", + "11.1.2.21": "2000111", + "11.1.2.22": "2000112", + "11.1.2.23": "2000113", + "11.1.2.24": "2000114", + "11.1.2.25": "2000115", + "11.1.2.26": "2000116", + "11.1.2.27": "2000117", + "11.1.2.28": "2000118", + "11.1.2.29": "2000119", + "11.1.2.30": "2000120", + "11.1.2.31": "2000121", + "11.1.2.32": "2000201", + "11.1.2.33": "2000202", + "11.1.2.34": "2000203", + "11.1.2.35": "2000204", + "11.1.2.36": "2000205", + "11.1.2.37": "2000206", + "11.1.2.38": "2000207", + "11.1.2.39": "2000208", + "11.1.2.40": "2000209", + "11.1.2.41": "2000210", + "11.1.2.42": "2000211", + "11.1.2.43": "2000212", + "11.1.2.44": "2000213", + "11.1.2.45": "2000214", + "11.1.2.46": "2000215", + "11.1.2.47": "2000216", + "11.1.2.48": "2000217", + "11.1.2.49": "2000218", + "11.1.2.50": "2000219", + "11.1.2.51": "2000220", + "11.1.2.52": "2000221", + "11.1.2.53": "2000301", + "11.1.2.54": "2000302", + "11.1.2.55": "2000303", + "11.1.2.56": "2000304", + "11.1.2.57": "2000305", + "11.1.2.58": "2000306", + "11.1.2.59": "2000307", + "11.1.2.60": "2000308", + "11.1.2.61": "2000309", + "11.1.2.62": "2000310", + "11.1.2.63": "2000311", + "11.1.2.64": "2000312", + "11.1.2.65": "2000313", + "11.1.2.66": "2000314", + "11.1.2.67": "2000315", + "11.1.2.68": "2000316", + "11.1.2.69": "2000317", + "11.1.2.70": "2000318", + "11.1.2.71": "2000319", + "11.1.2.72": "2000320", + "11.1.2.73": "2000321", + "11.1.2.74": "2000401", + "11.1.2.75": "2000402", + "11.1.2.76": "2000403", + "11.1.2.77": "2000404", + "11.1.2.78": "2000405", + "11.1.2.79": "2000406", + "11.1.2.80": "2000407", + "11.1.2.81": "2000408", + "11.1.2.82": "2000409", + "11.1.2.83": "2000410", + "11.1.2.84": "2000411", + "11.1.2.85": "2000412", + "11.1.2.86": "2000413", + "11.1.2.87": "2000414", + "11.1.2.88": "2000415", + "11.1.2.89": "2000416", + "11.1.2.90": "2000417", + "11.1.2.91": "2000418", + "11.1.2.92": "2000419", + "11.1.2.93": "2000420", + "11.1.2.94": "2000421", + "11.1.2.95": "1000101", + "11.1.2.96": "1000102", + "11.1.2.97": "1000104", + "11.1.2.98": "1000107", + "11.1.2.99": "1000201", + "11.1.2.100": "1000202", + "11.1.2.101": "1000204", + "11.1.2.102": "1000207", + "11.1.2.103": "1000301", + "11.1.2.104": "1000302", + "11.1.2.105": "1000304", + "11.1.2.106": "1000307", + "11.1.2.107": "1000401", + "11.1.2.108": "1000402", + "11.1.2.109": "1000404", + "11.1.2.110": "1000407", + "11.1.2.111": "1000501", + "11.1.2.112": "1000601", + "11.1.2.113": "1000602", + "11.1.2.114": "1000604", + "11.1.2.115": "1000603", + "11.1.2.116": "1000701", + "11.1.2.117": "1000702", + "11.1.2.118": "1000704", + "11.1.2.119": "1000703", + "11.1.2.120": "8000006", + "11.1.2.121": "8000007", + "11.1.2.122": "8000080", + "11.1.2.123": "7000101", + "11.1.2.124": "7000102", + "11.1.2.125": "7000106", + "11.1.2.126": "7000108", + "11.1.2.127": "7000104", + "11.1.2.128": "7000105", + "11.1.2.129": "7000107", + "11.1.2.130": "18000101", + "11.1.2.131": "18000102", + "11.1.2.132": "3000101", + "11.1.2.133": "3000102", + "11.1.2.134": "3000103", + "11.1.2.135": "3000104", + "11.1.2.136": "3000105", + "11.1.2.137": "3000106", + "11.1.2.138": "3000107", + "11.1.2.139": "3000108", + "11.1.2.140": "3000109", + "11.1.2.141": "3000110", + "11.1.2.142": "3000111", + "11.1.2.143": "3000112", + "11.1.2.144": "3000113", + "11.1.2.145": "3000114", + "11.1.2.146": "3000115", + "11.1.2.147": "3000201", + "11.1.2.148": "3000202", + "11.1.2.149": "3000203", + "11.1.2.150": "3000204", + "11.1.2.151": "3000205", + "11.1.2.152": "3000206", + "11.1.2.153": "3000207", + "11.1.2.154": "3000208", + "11.1.2.155": "3000209", + "11.1.2.156": "3000210", + "11.1.2.157": "3000211", + "11.1.2.158": "3000212", + "11.1.2.159": "3000213", + "11.1.2.160": "3000214", + "11.1.2.161": "3000215", + "11.1.2.162": "3000301", + "11.1.2.163": "3000302", + "11.1.2.164": "3000303", + "11.1.2.165": "3000304", + "11.1.2.166": "3000305", + "11.1.2.167": "3000306", + "11.1.2.168": "3000307", + "11.1.2.169": "3000308", + "11.1.2.170": "3000309", + "11.1.2.171": "3000310", + "11.1.2.172": "3000311", + "11.1.2.173": "3000312", + "11.1.2.174": "3000313", + "11.1.2.175": "3000314", + "11.1.2.176": "3000315", + "11.1.2.177": "3000401", + "11.1.2.178": "3000402", + "11.1.2.179": "3000403", + "11.1.2.180": "3000404", + "11.1.2.181": "3000405", + "11.1.2.182": "3000406", + "11.1.2.183": "3000407", + "11.1.2.184": "3000408", + "11.1.2.185": "3000409", + "11.1.2.186": "3000410", + "11.1.2.187": "3000411", + "11.1.2.188": "3000412", + "11.1.2.189": "3000413", + "11.1.2.190": "3000414", + "11.1.2.191": "3000415", + "11.1.2.192": "7000401", + "11.1.2.193": "7000412", + "11.1.2.194": "7000404", + "11.1.2.195": "7000411", + "11.1.2.196": "7000403", + "11.1.2.197": "7000410", + "11.1.2.198": "7000402", + "11.1.2.199": "7000414", + "11.1.2.200": "7000406", + "11.1.2.201": "7000413", + "11.1.2.202": "7000405", + "11.1.2.203": "7000417", + "11.1.2.204": "7000409", + "11.1.2.205": "7000415", + "11.1.2.206": "7000407", + "11.1.2.207": "7000416", + "11.1.2.208": "7000408", + "11.1.2.209": "7000421", + "11.1.2.210": "7000420", + "11.1.2.211": "7000423", + "11.1.2.212": "7000422", + "11.1.2.213": "7000425", + "11.1.2.214": "7000424", + "11.1.2.215": "7000428", + "11.1.2.216": "7000429", + "11.1.2.217": "19000101", + "11.1.2.218": "19000102", + "11.1.3.1": "2", + "11.1.3.2": "2", + "11.1.3.3": "2", + "11.1.3.4": "1", + "11.1.3.5": "2", + "11.1.3.6": "2", + "11.1.3.7": "2", + "11.1.3.8": "2", + "11.1.3.9": "2", + "11.1.3.10": "2", + "11.1.3.11": "2", + "11.1.3.12": "2", + "11.1.3.13": "2", + "11.1.3.14": "2", + "11.1.3.15": "2", + "11.1.3.16": "2", + "11.1.3.17": "2", + "11.1.3.18": "2", + "11.1.3.19": "2", + "11.1.3.20": "2", + "11.1.3.21": "2", + "11.1.3.22": "2", + "11.1.3.23": "2", + "11.1.3.24": "2", + "11.1.3.25": "2", + "11.1.3.26": "2", + "11.1.3.27": "2", + "11.1.3.28": "2", + "11.1.3.29": "2", + "11.1.3.30": "2", + "11.1.3.31": "2", + "11.1.3.32": "2", + "11.1.3.33": "2", + "11.1.3.34": "2", + "11.1.3.35": "2", + "11.1.3.36": "2", + "11.1.3.37": "2", + "11.1.3.38": "2", + "11.1.3.39": "2", + "11.1.3.40": "2", + "11.1.3.41": "2", + "11.1.3.42": "2", + "11.1.3.43": "2", + "11.1.3.44": "2", + "11.1.3.45": "2", + "11.1.3.46": "2", + "11.1.3.47": "2", + "11.1.3.48": "2", + "11.1.3.49": "2", + "11.1.3.50": "2", + "11.1.3.51": "2", + "11.1.3.52": "1", + "11.1.3.53": "2", + "11.1.3.54": "2", + "11.1.3.55": "2", + "11.1.3.56": "2", + "11.1.3.57": "2", + "11.1.3.58": "2", + "11.1.3.59": "2", + "11.1.3.60": "2", + "11.1.3.61": "2", + "11.1.3.62": "2", + "11.1.3.63": "2", + "11.1.3.64": "2", + "11.1.3.65": "2", + "11.1.3.66": "2", + "11.1.3.67": "2", + "11.1.3.68": "2", + "11.1.3.69": "2", + "11.1.3.70": "2", + "11.1.3.71": "2", + "11.1.3.72": "2", + "11.1.3.73": "2", + "11.1.3.74": "2", + "11.1.3.75": "2", + "11.1.3.76": "2", + "11.1.3.77": "2", + "11.1.3.78": "2", + "11.1.3.79": "2", + "11.1.3.80": "2", + "11.1.3.81": "2", + "11.1.3.82": "2", + "11.1.3.83": "2", + "11.1.3.84": "2", + "11.1.3.85": "2", + "11.1.3.86": "2", + "11.1.3.87": "2", + "11.1.3.88": "2", + "11.1.3.89": "2", + "11.1.3.90": "2", + "11.1.3.91": "2", + "11.1.3.92": "2", + "11.1.3.93": "2", + "11.1.3.94": "1", + "11.1.3.95": "2", + "11.1.3.96": "2", + "11.1.3.97": "2", + "11.1.3.98": "2", + "11.1.3.99": "1", + "11.1.3.100": "2", + "11.1.3.101": "2", + "11.1.3.102": "2", + "11.1.3.103": "1", + "11.1.3.104": "2", + "11.1.3.105": "2", + "11.1.3.106": "2", + "11.1.3.107": "1", + "11.1.3.108": "2", + "11.1.3.109": "2", + "11.1.3.110": "2", + "11.1.3.111": "2", + "11.1.3.112": "1", + "11.1.3.113": "2", + "11.1.3.114": "2", + "11.1.3.115": "2", + "11.1.3.116": "1", + "11.1.3.117": "2", + "11.1.3.118": "2", + "11.1.3.119": "2", + "11.1.3.120": "2", + "11.1.3.121": "2", + "11.1.3.122": "2", + "11.1.3.123": "1", + "11.1.3.124": "1", + "11.1.3.125": "2", + "11.1.3.126": "2", + "11.1.3.127": "2", + "11.1.3.128": "2", + "11.1.3.129": "2", + "11.1.3.130": "2", + "11.1.3.131": "2", + "11.1.3.132": "1", + "11.1.3.133": "1", + "11.1.3.134": "2", + "11.1.3.135": "2", + "11.1.3.136": "2", + "11.1.3.137": "2", + "11.1.3.138": "2", + "11.1.3.139": "2", + "11.1.3.140": "2", + "11.1.3.141": "2", + "11.1.3.142": "2", + "11.1.3.143": "2", + "11.1.3.144": "2", + "11.1.3.145": "2", + "11.1.3.146": "2", + "11.1.3.147": "2", + "11.1.3.148": "2", + "11.1.3.149": "2", + "11.1.3.150": "2", + "11.1.3.151": "2", + "11.1.3.152": "2", + "11.1.3.153": "2", + "11.1.3.154": "2", + "11.1.3.155": "2", + "11.1.3.156": "2", + "11.1.3.157": "2", + "11.1.3.158": "2", + "11.1.3.159": "2", + "11.1.3.160": "2", + "11.1.3.161": "2", + "11.1.3.162": "1", + "11.1.3.163": "1", + "11.1.3.164": "2", + "11.1.3.165": "2", + "11.1.3.166": "2", + "11.1.3.167": "2", + "11.1.3.168": "2", + "11.1.3.169": "2", + "11.1.3.170": "2", + "11.1.3.171": "2", + "11.1.3.172": "2", + "11.1.3.173": "2", + "11.1.3.174": "2", + "11.1.3.175": "2", + "11.1.3.176": "2", + "11.1.3.177": "2", + "11.1.3.178": "2", + "11.1.3.179": "2", + "11.1.3.180": "2", + "11.1.3.181": "2", + "11.1.3.182": "2", + "11.1.3.183": "2", + "11.1.3.184": "2", + "11.1.3.185": "2", + "11.1.3.186": "2", + "11.1.3.187": "2", + "11.1.3.188": "2", + "11.1.3.189": "2", + "11.1.3.190": "2", + "11.1.3.191": "2", + "11.1.3.192": "2", + "11.1.3.193": "2", + "11.1.3.194": "2", + "11.1.3.195": "2", + "11.1.3.196": "2", + "11.1.3.197": "2", + "11.1.3.198": "2", + "11.1.3.199": "2", + "11.1.3.200": "2", + "11.1.3.201": "2", + "11.1.3.202": "2", + "11.1.3.203": "2", + "11.1.3.204": "2", + "11.1.3.205": "2", + "11.1.3.206": "2", + "11.1.3.207": "2", + "11.1.3.208": "2", + "11.1.3.209": "2", + "11.1.3.210": "2", + "11.1.3.211": "2", + "11.1.3.212": "2", + "11.1.3.213": "2", + "11.1.3.214": "2", + "11.1.3.215": "2", + "11.1.3.216": "2", + "11.1.3.217": "2", + "11.1.3.218": "2", + "11.1.4.1": "00 00 01 01 00 00 00 00", + "11.1.4.2": "00 00 01 01 00 00 00 00", + "11.1.4.3": "00 00 01 01 00 00 00 00", + "11.1.4.4": "07 B2 06 16 16 1D 07 00 2D 07 00", + "11.1.4.5": "00 00 01 01 00 00 00 00", + "11.1.4.6": "00 00 01 01 00 00 00 00", + "11.1.4.7": "00 00 01 01 00 00 00 00", + "11.1.4.8": "00 00 01 01 00 00 00 00", + "11.1.4.9": "00 00 01 01 00 00 00 00", + "11.1.4.10": "00 00 01 01 00 00 00 00", + "11.1.4.11": "00 00 01 01 00 00 00 00", + "11.1.4.12": "00 00 01 01 00 00 00 00", + "11.1.4.13": "00 00 01 01 00 00 00 00", + "11.1.4.14": "00 00 01 01 00 00 00 00", + "11.1.4.15": "00 00 01 01 00 00 00 00", + "11.1.4.16": "00 00 01 01 00 00 00 00", + "11.1.4.17": "00 00 01 01 00 00 00 00", + "11.1.4.18": "00 00 01 01 00 00 00 00", + "11.1.4.19": "00 00 01 01 00 00 00 00", + "11.1.4.20": "00 00 01 01 00 00 00 00", + "11.1.4.21": "00 00 01 01 00 00 00 00", + "11.1.4.22": "00 00 01 01 00 00 00 00", + "11.1.4.23": "00 00 01 01 00 00 00 00", + "11.1.4.24": "00 00 01 01 00 00 00 00", + "11.1.4.25": "00 00 01 01 00 00 00 00", + "11.1.4.26": "00 00 01 01 00 00 00 00", + "11.1.4.27": "00 00 01 01 00 00 00 00", + "11.1.4.28": "00 00 01 01 00 00 00 00", + "11.1.4.29": "00 00 01 01 00 00 00 00", + "11.1.4.30": "00 00 01 01 00 00 00 00", + "11.1.4.31": "07 B4 0A 0F 11 35 3A 00 2D 07 00", + "11.1.4.32": "00 00 01 01 00 00 00 00", + "11.1.4.33": "00 00 01 01 00 00 00 00", + "11.1.4.34": "00 00 01 01 00 00 00 00", + "11.1.4.35": "00 00 01 01 00 00 00 00", + "11.1.4.36": "00 00 01 01 00 00 00 00", + "11.1.4.37": "00 00 01 01 00 00 00 00", + "11.1.4.38": "00 00 01 01 00 00 00 00", + "11.1.4.39": "00 00 01 01 00 00 00 00", + "11.1.4.40": "00 00 01 01 00 00 00 00", + "11.1.4.41": "00 00 01 01 00 00 00 00", + "11.1.4.42": "00 00 01 01 00 00 00 00", + "11.1.4.43": "00 00 01 01 00 00 00 00", + "11.1.4.44": "00 00 01 01 00 00 00 00", + "11.1.4.45": "00 00 01 01 00 00 00 00", + "11.1.4.46": "00 00 01 01 00 00 00 00", + "11.1.4.47": "00 00 01 01 00 00 00 00", + "11.1.4.48": "00 00 01 01 00 00 00 00", + "11.1.4.49": "00 00 01 01 00 00 00 00", + "11.1.4.50": "00 00 01 01 00 00 00 00", + "11.1.4.51": "00 00 01 01 00 00 00 00", + "11.1.4.52": "07 B4 0A 0F 13 03 07 00 2D 07 00", + "11.1.4.53": "00 00 01 01 00 00 00 00", + "11.1.4.54": "00 00 01 01 00 00 00 00", + "11.1.4.55": "00 00 01 01 00 00 00 00", + "11.1.4.56": "00 00 01 01 00 00 00 00", + "11.1.4.57": "00 00 01 01 00 00 00 00", + "11.1.4.58": "00 00 01 01 00 00 00 00", + "11.1.4.59": "00 00 01 01 00 00 00 00", + "11.1.4.60": "00 00 01 01 00 00 00 00", + "11.1.4.61": "00 00 01 01 00 00 00 00", + "11.1.4.62": "00 00 01 01 00 00 00 00", + "11.1.4.63": "00 00 01 01 00 00 00 00", + "11.1.4.64": "00 00 01 01 00 00 00 00", + "11.1.4.65": "00 00 01 01 00 00 00 00", + "11.1.4.66": "00 00 01 01 00 00 00 00", + "11.1.4.67": "00 00 01 01 00 00 00 00", + "11.1.4.68": "00 00 01 01 00 00 00 00", + "11.1.4.69": "00 00 01 01 00 00 00 00", + "11.1.4.70": "00 00 01 01 00 00 00 00", + "11.1.4.71": "00 00 01 01 00 00 00 00", + "11.1.4.72": "00 00 01 01 00 00 00 00", + "11.1.4.73": "07 B4 0A 0F 13 03 0B 00 2D 07 00", + "11.1.4.74": "00 00 01 01 00 00 00 00", + "11.1.4.75": "00 00 01 01 00 00 00 00", + "11.1.4.76": "00 00 01 01 00 00 00 00", + "11.1.4.77": "00 00 01 01 00 00 00 00", + "11.1.4.78": "00 00 01 01 00 00 00 00", + "11.1.4.79": "00 00 01 01 00 00 00 00", + "11.1.4.80": "00 00 01 01 00 00 00 00", + "11.1.4.81": "00 00 01 01 00 00 00 00", + "11.1.4.82": "00 00 01 01 00 00 00 00", + "11.1.4.83": "00 00 01 01 00 00 00 00", + "11.1.4.84": "00 00 01 01 00 00 00 00", + "11.1.4.85": "00 00 01 01 00 00 00 00", + "11.1.4.86": "00 00 01 01 00 00 00 00", + "11.1.4.87": "00 00 01 01 00 00 00 00", + "11.1.4.88": "00 00 01 01 00 00 00 00", + "11.1.4.89": "00 00 01 01 00 00 00 00", + "11.1.4.90": "00 00 01 01 00 00 00 00", + "11.1.4.91": "00 00 01 01 00 00 00 00", + "11.1.4.92": "00 00 01 01 00 00 00 00", + "11.1.4.93": "00 00 01 01 00 00 00 00", + "11.1.4.94": "07 B4 09 1A 13 0F 06 00 2D 07 00", + "11.1.4.95": "07 B5 01 18 12 07 19 00 2D 07 00", + "11.1.4.96": "00 00 01 01 00 00 00 00", + "11.1.4.97": "00 00 01 01 00 00 00 00", + "11.1.4.98": "00 00 01 01 00 00 00 00", + "11.1.4.99": "07 B3 0C 1D 0D 1C 33 00 2D 07 00", + "11.1.4.100": "00 00 01 01 00 00 00 00", + "11.1.4.101": "00 00 01 01 00 00 00 00", + "11.1.4.102": "00 00 01 01 00 00 00 00", + "11.1.4.103": "07 B4 0B 15 14 0A 2F 00 2D 07 00", + "11.1.4.104": "00 00 01 01 00 00 00 00", + "11.1.4.105": "00 00 01 01 00 00 00 00", + "11.1.4.106": "00 00 01 01 00 00 00 00", + "11.1.4.107": "07 B4 09 1A 13 0E 23 00 2D 07 00", + "11.1.4.108": "00 00 01 01 00 00 00 00", + "11.1.4.109": "00 00 01 01 00 00 00 00", + "11.1.4.110": "00 00 01 01 00 00 00 00", + "11.1.4.111": "07 B5 03 07 14 36 0F 00 2D 07 00", + "11.1.4.112": "07 B2 06 16 16 1D 0F 00 2D 07 00", + "11.1.4.113": "00 00 01 01 00 00 00 00", + "11.1.4.114": "00 00 01 01 00 00 00 00", + "11.1.4.115": "00 00 01 01 00 00 00 00", + "11.1.4.116": "07 B2 06 16 16 1D 0F 00 2D 07 00", + "11.1.4.117": "00 00 01 01 00 00 00 00", + "11.1.4.118": "00 00 01 01 00 00 00 00", + "11.1.4.119": "00 00 01 01 00 00 00 00", + "11.1.4.120": "00 00 01 01 00 00 00 00", + "11.1.4.121": "00 00 01 01 00 00 00 00", + "11.1.4.122": "00 00 01 01 00 00 00 00", + "11.1.4.123": "07 B2 06 16 16 1F 23 00 2D 07 00", + "11.1.4.124": "07 B2 06 16 16 1D 15 00 2D 07 00", + "11.1.4.125": "00 00 01 01 00 00 00 00", + "11.1.4.126": "00 00 01 01 00 00 00 00", + "11.1.4.127": "00 00 01 01 00 00 00 00", + "11.1.4.128": "00 00 01 01 00 00 00 00", + "11.1.4.129": "00 00 01 01 00 00 00 00", + "11.1.4.130": "00 00 01 01 00 00 00 00", + "11.1.4.131": "00 00 01 01 00 00 00 00", + "11.1.4.132": "07 B2 06 16 16 1D 25 00 2D 07 00", + "11.1.4.133": "07 B2 06 16 16 1D 26 00 2D 07 00", + "11.1.4.134": "00 00 01 01 00 00 00 00", + "11.1.4.135": "00 00 01 01 00 00 00 00", + "11.1.4.136": "00 00 01 01 00 00 00 00", + "11.1.4.137": "00 00 01 01 00 00 00 00", + "11.1.4.138": "00 00 01 01 00 00 00 00", + "11.1.4.139": "00 00 01 01 00 00 00 00", + "11.1.4.140": "00 00 01 01 00 00 00 00", + "11.1.4.141": "00 00 01 01 00 00 00 00", + "11.1.4.142": "00 00 01 01 00 00 00 00", + "11.1.4.143": "00 00 01 01 00 00 00 00", + "11.1.4.144": "00 00 01 01 00 00 00 00", + "11.1.4.145": "00 00 01 01 00 00 00 00", + "11.1.4.146": "00 00 01 01 00 00 00 00", + "11.1.4.147": "00 00 01 01 00 00 00 00", + "11.1.4.148": "00 00 01 01 00 00 00 00", + "11.1.4.149": "00 00 01 01 00 00 00 00", + "11.1.4.150": "00 00 01 01 00 00 00 00", + "11.1.4.151": "00 00 01 01 00 00 00 00", + "11.1.4.152": "00 00 01 01 00 00 00 00", + "11.1.4.153": "00 00 01 01 00 00 00 00", + "11.1.4.154": "00 00 01 01 00 00 00 00", + "11.1.4.155": "00 00 01 01 00 00 00 00", + "11.1.4.156": "00 00 01 01 00 00 00 00", + "11.1.4.157": "00 00 01 01 00 00 00 00", + "11.1.4.158": "00 00 01 01 00 00 00 00", + "11.1.4.159": "00 00 01 01 00 00 00 00", + "11.1.4.160": "00 00 01 01 00 00 00 00", + "11.1.4.161": "00 00 01 01 00 00 00 00", + "11.1.4.162": "07 B2 06 16 16 1D 25 00 2D 07 00", + "11.1.4.163": "07 B2 06 16 16 1D 26 00 2D 07 00", + "11.1.4.164": "00 00 01 01 00 00 00 00", + "11.1.4.165": "00 00 01 01 00 00 00 00", + "11.1.4.166": "00 00 01 01 00 00 00 00", + "11.1.4.167": "00 00 01 01 00 00 00 00", + "11.1.4.168": "00 00 01 01 00 00 00 00", + "11.1.4.169": "00 00 01 01 00 00 00 00", + "11.1.4.170": "00 00 01 01 00 00 00 00", + "11.1.4.171": "00 00 01 01 00 00 00 00", + "11.1.4.172": "00 00 01 01 00 00 00 00", + "11.1.4.173": "00 00 01 01 00 00 00 00", + "11.1.4.174": "00 00 01 01 00 00 00 00", + "11.1.4.175": "00 00 01 01 00 00 00 00", + "11.1.4.176": "00 00 01 01 00 00 00 00", + "11.1.4.177": "00 00 01 01 00 00 00 00", + "11.1.4.178": "00 00 01 01 00 00 00 00", + "11.1.4.179": "00 00 01 01 00 00 00 00", + "11.1.4.180": "00 00 01 01 00 00 00 00", + "11.1.4.181": "00 00 01 01 00 00 00 00", + "11.1.4.182": "00 00 01 01 00 00 00 00", + "11.1.4.183": "00 00 01 01 00 00 00 00", + "11.1.4.184": "00 00 01 01 00 00 00 00", + "11.1.4.185": "00 00 01 01 00 00 00 00", + "11.1.4.186": "00 00 01 01 00 00 00 00", + "11.1.4.187": "00 00 01 01 00 00 00 00", + "11.1.4.188": "00 00 01 01 00 00 00 00", + "11.1.4.189": "00 00 01 01 00 00 00 00", + "11.1.4.190": "00 00 01 01 00 00 00 00", + "11.1.4.191": "00 00 01 01 00 00 00 00", + "11.1.4.192": "00 00 01 01 00 00 00 00", + "11.1.4.193": "00 00 01 01 00 00 00 00", + "11.1.4.194": "00 00 01 01 00 00 00 00", + "11.1.4.195": "00 00 01 01 00 00 00 00", + "11.1.4.196": "00 00 01 01 00 00 00 00", + "11.1.4.197": "00 00 01 01 00 00 00 00", + "11.1.4.198": "00 00 01 01 00 00 00 00", + "11.1.4.199": "00 00 01 01 00 00 00 00", + "11.1.4.200": "00 00 01 01 00 00 00 00", + "11.1.4.201": "00 00 01 01 00 00 00 00", + "11.1.4.202": "00 00 01 01 00 00 00 00", + "11.1.4.203": "00 00 01 01 00 00 00 00", + "11.1.4.204": "00 00 01 01 00 00 00 00", + "11.1.4.205": "00 00 01 01 00 00 00 00", + "11.1.4.206": "00 00 01 01 00 00 00 00", + "11.1.4.207": "00 00 01 01 00 00 00 00", + "11.1.4.208": "00 00 01 01 00 00 00 00", + "11.1.4.209": "00 00 01 01 00 00 00 00", + "11.1.4.210": "00 00 01 01 00 00 00 00", + "11.1.4.211": "00 00 01 01 00 00 00 00", + "11.1.4.212": "00 00 01 01 00 00 00 00", + "11.1.4.213": "00 00 01 01 00 00 00 00", + "11.1.4.214": "00 00 01 01 00 00 00 00", + "11.1.4.215": "00 00 01 01 00 00 00 00", + "11.1.4.216": "00 00 01 01 00 00 00 00", + "11.1.4.217": "00 00 01 01 00 00 00 00", + "11.1.4.218": "00 00 01 01 00 00 00 00", + "11.1.5.1": "", + "11.1.5.2": "", + "11.1.5.3": "", + "11.1.5.4": "", + "11.1.5.5": "", + "11.1.5.6": "", + "11.1.5.7": "", + "11.1.5.8": "", + "11.1.5.9": "", + "11.1.5.10": "", + "11.1.5.11": "", + "11.1.5.12": "", + "11.1.5.13": "", + "11.1.5.14": "", + "11.1.5.15": "", + "11.1.5.16": "", + "11.1.5.17": "", + "11.1.5.18": "", + "11.1.5.19": "", + "11.1.5.20": "", + "11.1.5.21": "", + "11.1.5.22": "", + "11.1.5.23": "", + "11.1.5.24": "", + "11.1.5.25": "", + "11.1.5.26": "", + "11.1.5.27": "", + "11.1.5.28": "", + "11.1.5.29": "", + "11.1.5.30": "", + "11.1.5.31": "was inserted.", + "11.1.5.32": "", + "11.1.5.33": "", + "11.1.5.34": "", + "11.1.5.35": "", + "11.1.5.36": "", + "11.1.5.37": "", + "11.1.5.38": "", + "11.1.5.39": "", + "11.1.5.40": "", + "11.1.5.41": "", + "11.1.5.42": "", + "11.1.5.43": "", + "11.1.5.44": "", + "11.1.5.45": "", + "11.1.5.46": "", + "11.1.5.47": "", + "11.1.5.48": "", + "11.1.5.49": "", + "11.1.5.50": "", + "11.1.5.51": "", + "11.1.5.52": "was removed.", + "11.1.5.53": "", + "11.1.5.54": "", + "11.1.5.55": "", + "11.1.5.56": "", + "11.1.5.57": "", + "11.1.5.58": "", + "11.1.5.59": "", + "11.1.5.60": "", + "11.1.5.61": "", + "11.1.5.62": "", + "11.1.5.63": "", + "11.1.5.64": "", + "11.1.5.65": "", + "11.1.5.66": "", + "11.1.5.67": "", + "11.1.5.68": "", + "11.1.5.69": "", + "11.1.5.70": "", + "11.1.5.71": "", + "11.1.5.72": "", + "11.1.5.73": "was inserted.", + "11.1.5.74": "", + "11.1.5.75": "", + "11.1.5.76": "", + "11.1.5.77": "", + "11.1.5.78": "", + "11.1.5.79": "", + "11.1.5.80": "", + "11.1.5.81": "", + "11.1.5.82": "", + "11.1.5.83": "", + "11.1.5.84": "", + "11.1.5.85": "", + "11.1.5.86": "", + "11.1.5.87": "", + "11.1.5.88": "", + "11.1.5.89": "", + "11.1.5.90": "", + "11.1.5.91": "", + "11.1.5.92": "", + "11.1.5.93": "", + "11.1.5.94": "was removed.", + "11.1.5.95": "went up", + "11.1.5.96": "", + "11.1.5.97": "went up", + "11.1.5.98": "", + "11.1.5.99": "went down", + "11.1.5.100": "", + "11.1.5.101": "went up", + "11.1.5.102": "", + "11.1.5.103": "went down", + "11.1.5.104": "", + "11.1.5.105": "went up", + "11.1.5.106": "", + "11.1.5.107": "went down", + "11.1.5.108": "", + "11.1.5.109": "went up", + "11.1.5.110": "", + "11.1.5.111": "went up", + "11.1.5.112": "went down", + "11.1.5.113": "", + "11.1.5.114": "went up", + "11.1.5.115": "", + "11.1.5.116": "went down", + "11.1.5.117": "", + "11.1.5.118": "went up", + "11.1.5.119": "", + "11.1.5.120": "", + "11.1.5.121": "", + "11.1.5.122": "", + "11.1.5.123": "Lost contact, server 10.10.20.", + "11.1.5.124": "NTP lost time-of-day sync", + "11.1.5.125": "Use intf with HW timestamp", + "11.1.5.126": "Use intf with HW timestamp", + "11.1.5.127": "", + "11.1.5.128": "", + "11.1.5.129": "", + "11.1.5.130": "", + "11.1.5.131": "", + "11.1.5.132": "", + "11.1.5.133": "", + "11.1.5.134": "", + "11.1.5.135": "", + "11.1.5.136": "", + "11.1.5.137": "", + "11.1.5.138": "", + "11.1.5.139": "", + "11.1.5.140": "", + "11.1.5.141": "", + "11.1.5.142": "", + "11.1.5.143": "", + "11.1.5.144": "", + "11.1.5.145": "", + "11.1.5.146": "", + "11.1.5.147": "", + "11.1.5.148": "", + "11.1.5.149": "", + "11.1.5.150": "", + "11.1.5.151": "", + "11.1.5.152": "", + "11.1.5.153": "", + "11.1.5.154": "", + "11.1.5.155": "", + "11.1.5.156": "", + "11.1.5.157": "", + "11.1.5.158": "", + "11.1.5.159": "", + "11.1.5.160": "", + "11.1.5.161": "", + "11.1.5.162": "", + "11.1.5.163": "", + "11.1.5.164": "", + "11.1.5.165": "", + "11.1.5.166": "", + "11.1.5.167": "", + "11.1.5.168": "", + "11.1.5.169": "", + "11.1.5.170": "", + "11.1.5.171": "", + "11.1.5.172": "", + "11.1.5.173": "", + "11.1.5.174": "", + "11.1.5.175": "", + "11.1.5.176": "", + "11.1.5.177": "", + "11.1.5.178": "", + "11.1.5.179": "", + "11.1.5.180": "", + "11.1.5.181": "", + "11.1.5.182": "", + "11.1.5.183": "", + "11.1.5.184": "", + "11.1.5.185": "", + "11.1.5.186": "", + "11.1.5.187": "", + "11.1.5.188": "", + "11.1.5.189": "", + "11.1.5.190": "", + "11.1.5.191": "", + "11.1.5.192": "", + "11.1.5.193": "Buffer not full for PAA", + "11.1.5.194": "All instances are collected", + "11.1.5.195": "", + "11.1.5.196": "All instances are collected", + "11.1.5.197": "", + "11.1.5.198": "All instances are collected", + "11.1.5.199": "", + "11.1.5.200": "All instances are collected", + "11.1.5.201": "", + "11.1.5.202": "All instances are collected", + "11.1.5.203": "", + "11.1.5.204": "All instances are collected", + "11.1.5.205": "", + "11.1.5.206": "All instances are collected", + "11.1.5.207": "", + "11.1.5.208": "All instances are collected", + "11.1.5.209": "", + "11.1.5.210": "All instances are collected", + "11.1.5.211": "", + "11.1.5.212": "All instances are collected", + "11.1.5.213": "", + "11.1.5.214": "All instances are collected", + "11.1.5.215": "", + "11.1.5.216": "", + "11.1.5.217": "", + "11.1.5.218": "", + "11.1.6.1": "0", + "11.1.6.2": "0", + "11.1.6.3": "0", + "11.1.6.4": "0", + "11.1.6.5": "0", + "11.1.6.6": "0", + "11.1.6.7": "0", + "11.1.6.8": "0", + "11.1.6.9": "0", + "11.1.6.10": "0", + "11.1.6.11": "0", + "11.1.6.12": "0", + "11.1.6.13": "0", + "11.1.6.14": "0", + "11.1.6.15": "0", + "11.1.6.16": "0", + "11.1.6.17": "0", + "11.1.6.18": "0", + "11.1.6.19": "0", + "11.1.6.20": "0", + "11.1.6.21": "0", + "11.1.6.22": "0", + "11.1.6.23": "0", + "11.1.6.24": "0", + "11.1.6.25": "0", + "11.1.6.26": "0", + "11.1.6.27": "0", + "11.1.6.28": "0", + "11.1.6.29": "0", + "11.1.6.30": "0", + "11.1.6.31": "0", + "11.1.6.32": "0", + "11.1.6.33": "0", + "11.1.6.34": "0", + "11.1.6.35": "0", + "11.1.6.36": "0", + "11.1.6.37": "0", + "11.1.6.38": "0", + "11.1.6.39": "0", + "11.1.6.40": "0", + "11.1.6.41": "0", + "11.1.6.42": "0", + "11.1.6.43": "0", + "11.1.6.44": "0", + "11.1.6.45": "0", + "11.1.6.46": "0", + "11.1.6.47": "0", + "11.1.6.48": "0", + "11.1.6.49": "0", + "11.1.6.50": "0", + "11.1.6.51": "0", + "11.1.6.52": "0", + "11.1.6.53": "0", + "11.1.6.54": "0", + "11.1.6.55": "0", + "11.1.6.56": "0", + "11.1.6.57": "0", + "11.1.6.58": "0", + "11.1.6.59": "0", + "11.1.6.60": "0", + "11.1.6.61": "0", + "11.1.6.62": "0", + "11.1.6.63": "0", + "11.1.6.64": "0", + "11.1.6.65": "0", + "11.1.6.66": "0", + "11.1.6.67": "0", + "11.1.6.68": "0", + "11.1.6.69": "0", + "11.1.6.70": "0", + "11.1.6.71": "0", + "11.1.6.72": "0", + "11.1.6.73": "0", + "11.1.6.74": "0", + "11.1.6.75": "0", + "11.1.6.76": "0", + "11.1.6.77": "0", + "11.1.6.78": "0", + "11.1.6.79": "0", + "11.1.6.80": "0", + "11.1.6.81": "0", + "11.1.6.82": "0", + "11.1.6.83": "0", + "11.1.6.84": "0", + "11.1.6.85": "0", + "11.1.6.86": "0", + "11.1.6.87": "0", + "11.1.6.88": "0", + "11.1.6.89": "0", + "11.1.6.90": "0", + "11.1.6.91": "0", + "11.1.6.92": "0", + "11.1.6.93": "0", + "11.1.6.94": "0", + "11.1.6.95": "0", + "11.1.6.96": "0", + "11.1.6.97": "0", + "11.1.6.98": "0", + "11.1.6.99": "0", + "11.1.6.100": "0", + "11.1.6.101": "0", + "11.1.6.102": "0", + "11.1.6.103": "0", + "11.1.6.104": "0", + "11.1.6.105": "0", + "11.1.6.106": "0", + "11.1.6.107": "0", + "11.1.6.108": "0", + "11.1.6.109": "0", + "11.1.6.110": "0", + "11.1.6.111": "0", + "11.1.6.112": "0", + "11.1.6.113": "0", + "11.1.6.114": "0", + "11.1.6.115": "0", + "11.1.6.116": "0", + "11.1.6.117": "0", + "11.1.6.118": "0", + "11.1.6.119": "0", + "11.1.6.120": "0", + "11.1.6.121": "0", + "11.1.6.122": "0", + "11.1.6.123": "0", + "11.1.6.124": "0", + "11.1.6.125": "0", + "11.1.6.126": "0", + "11.1.6.127": "0", + "11.1.6.128": "0", + "11.1.6.129": "0", + "11.1.6.130": "0", + "11.1.6.131": "0", + "11.1.6.132": "0", + "11.1.6.133": "0", + "11.1.6.134": "0", + "11.1.6.135": "0", + "11.1.6.136": "0", + "11.1.6.137": "0", + "11.1.6.138": "0", + "11.1.6.139": "0", + "11.1.6.140": "0", + "11.1.6.141": "0", + "11.1.6.142": "0", + "11.1.6.143": "0", + "11.1.6.144": "0", + "11.1.6.145": "0", + "11.1.6.146": "0", + "11.1.6.147": "0", + "11.1.6.148": "0", + "11.1.6.149": "0", + "11.1.6.150": "0", + "11.1.6.151": "0", + "11.1.6.152": "0", + "11.1.6.153": "0", + "11.1.6.154": "0", + "11.1.6.155": "0", + "11.1.6.156": "0", + "11.1.6.157": "0", + "11.1.6.158": "0", + "11.1.6.159": "0", + "11.1.6.160": "0", + "11.1.6.161": "0", + "11.1.6.162": "0", + "11.1.6.163": "0", + "11.1.6.164": "0", + "11.1.6.165": "0", + "11.1.6.166": "0", + "11.1.6.167": "0", + "11.1.6.168": "0", + "11.1.6.169": "0", + "11.1.6.170": "0", + "11.1.6.171": "0", + "11.1.6.172": "0", + "11.1.6.173": "0", + "11.1.6.174": "0", + "11.1.6.175": "0", + "11.1.6.176": "0", + "11.1.6.177": "0", + "11.1.6.178": "0", + "11.1.6.179": "0", + "11.1.6.180": "0", + "11.1.6.181": "0", + "11.1.6.182": "0", + "11.1.6.183": "0", + "11.1.6.184": "0", + "11.1.6.185": "0", + "11.1.6.186": "0", + "11.1.6.187": "0", + "11.1.6.188": "0", + "11.1.6.189": "0", + "11.1.6.190": "0", + "11.1.6.191": "0", + "11.1.6.192": "0", + "11.1.6.193": "0", + "11.1.6.194": "0", + "11.1.6.195": "0", + "11.1.6.196": "0", + "11.1.6.197": "0", + "11.1.6.198": "0", + "11.1.6.199": "0", + "11.1.6.200": "0", + "11.1.6.201": "0", + "11.1.6.202": "0", + "11.1.6.203": "0", + "11.1.6.204": "0", + "11.1.6.205": "0", + "11.1.6.206": "0", + "11.1.6.207": "0", + "11.1.6.208": "0", + "11.1.6.209": "0", + "11.1.6.210": "0", + "11.1.6.211": "0", + "11.1.6.212": "0", + "11.1.6.213": "0", + "11.1.6.214": "0", + "11.1.6.215": "0", + "11.1.6.216": "0", + "11.1.6.217": "0", + "11.1.6.218": "0" + }, + "acdAlarmTableTid": { + "1.0": "247", + "2.0": "101" + } + } + }, + "ACD-DESC-MIB": { + "tables": { + "acdDesc": { + "1.0": "AMN-1000-GT-S", + "2.0": "00:15:AD:47:3E:60", + "3.0": "NID12-DC-MTSO-Pri", + "4.0": "AMT_7.9.1_23673", + "5.0": "619-2179:20:23:14", + "6.0": "G419-2495", + "7.0": "Dry-contact Input", + "10.1.1.1": "1", + "10.1.1.2": "2", + "10.1.1.3": "3", + "10.1.1.4": "4", + "10.1.1.5": "5", + "10.1.2.1": "SFP-1", + "10.1.2.2": "SFP-2", + "10.1.2.3": "SFP-3", + "10.1.2.4": "SFP-4", + "10.1.2.5": "Management", + "10.1.3.1": "14", + "10.1.3.2": "14", + "10.1.3.3": "14", + "10.1.3.4": "14", + "10.1.3.5": "2", + "10.1.4.1": "2", + "10.1.4.2": "2", + "10.1.4.3": "2", + "10.1.4.4": "2", + "10.1.4.5": "2", + "11.1.1.2": "2", + "11.1.1.3": "3", + "11.1.2.2": "Feed A", + "11.1.2.3": "Feed B", + "11.1.3.2": "2", + "11.1.3.3": "2", + "11.1.4.2": "1", + "11.1.4.3": "2", + "12.1.2.1": "44", + "12.1.2.2": "34", + "12.1.3.1": "85", + "12.1.3.2": "85", + "12.1.4.1": "2", + "12.1.4.2": "2", + "12.1.5.1": "90", + "12.1.5.2": "90", + "12.1.6.1": "2", + "12.1.6.2": "2", + "12.1.7.1": "Sensor 1", + "12.1.7.2": "Sensor 2", + "20.0": "12", + "21.0": "14", + "22.0": "15", + "23.0": "15", + "24.0": "5", + "25.0": "90350370" + } + } + }, + "ACD-DISCOVERY-MIB": { + "tables": { + "acdDiscoveryInventory": { + "4.0": "0", + "5.0": "0" + } + } + }, + "ACD-FILTER-MIB": { + "tables": { + "acdFilter": { + "1.1.1.1": "1", + "1.1.1.2": "2", + "1.1.1.3": "3", + "1.1.1.4": "4", + "1.1.1.5": "5", + "1.1.1.6": "6", + "1.1.1.7": "7", + "1.1.1.8": "8", + "1.1.1.9": "9", + "1.1.1.10": "10", + "1.1.1.11": "11", + "1.1.1.12": "12", + "1.1.1.13": "13", + "1.1.1.14": "14", + "1.1.1.15": "15", + "1.1.1.16": "16", + "1.1.1.17": "17", + "1.1.1.18": "18", + "1.1.1.19": "19", + "1.1.1.20": "20", + "1.1.1.21": "21", + "1.1.1.22": "22", + "1.1.1.23": "23", + "1.1.1.24": "24", + "1.1.1.25": "25", + "1.1.1.26": "26", + "1.1.1.27": "27", + "1.1.2.1": "*default", + "1.1.2.2": "PAA-Discovery", + "1.1.2.3": "MTSOMAC_SRC", + "1.1.2.4": "MTSOMAC_DST", + "1.1.2.5": "SVLAN_2216", + "1.1.2.6": "catchAll", + "1.1.2.7": "ieeeBPDU", + "1.1.2.8": "ciscoBPDU", + "1.1.2.9": "macDst", + "1.1.2.10": "macSrc", + "1.1.2.11": "frameType", + "1.1.2.12": "firstVlanId", + "1.1.2.13": "firstVlanPrior", + "1.1.2.14": "firstVlanCfi", + "1.1.2.15": "secondVlanId", + "1.1.2.16": "secondVlanPrior", + "1.1.2.17": "secondVlanCfi", + "1.1.2.18": "SVLAN_2217", + "1.1.2.19": "VLAN_2573", + "1.1.2.20": "VLAN_3573", + "1.1.2.21": "rvResortMAC_DST", + "1.1.2.22": "rvResortMAC_SRC", + "1.1.2.23": "SVLAN_2218", + "1.1.2.24": "SVLAN_2219", + "1.1.2.25": "SVLAN_2220", + "1.1.2.26": "SVLAN_2221", + "1.1.2.27": "CVLAN_3999", + "1.1.3.1": "2", + "1.1.3.2": "1", + "1.1.3.3": "2", + "1.1.3.4": "1", + "1.1.3.5": "2", + "1.1.3.6": "2", + "1.1.3.7": "1", + "1.1.3.8": "1", + "1.1.3.9": "1", + "1.1.3.10": "2", + "1.1.3.11": "2", + "1.1.3.12": "2", + "1.1.3.13": "2", + "1.1.3.14": "2", + "1.1.3.15": "2", + "1.1.3.16": "2", + "1.1.3.17": "2", + "1.1.3.18": "2", + "1.1.3.19": "2", + "1.1.3.20": "2", + "1.1.3.21": "1", + "1.1.3.22": "2", + "1.1.3.23": "2", + "1.1.3.24": "2", + "1.1.3.25": "2", + "1.1.3.26": "2", + "1.1.3.27": "2", + "1.1.4.1": "00 00 00 00 00 00", + "1.1.4.2": "FF FF FF FF FF FF", + "1.1.4.3": "00 00 00 00 00 00", + "1.1.4.4": "00 23 3E 82 15 73", + "1.1.4.5": "00 00 00 00 00 00", + "1.1.4.6": "00 00 00 00 00 00", + "1.1.4.7": "01 80 C2 00 00 00", + "1.1.4.8": "01 00 0C CC CC CD", + "1.1.4.9": "00 15 AD 01 01 01", + "1.1.4.10": "00 00 00 00 00 00", + "1.1.4.11": "00 00 00 00 00 00", + "1.1.4.12": "00 00 00 00 00 00", + "1.1.4.13": "00 00 00 00 00 00", + "1.1.4.14": "00 00 00 00 00 00", + "1.1.4.15": "00 00 00 00 00 00", + "1.1.4.16": "00 00 00 00 00 00", + "1.1.4.17": "00 00 00 00 00 00", + "1.1.4.18": "00 00 00 00 00 00", + "1.1.4.19": "00 00 00 00 00 00", + "1.1.4.20": "00 00 00 00 00 00", + "1.1.4.21": "50 40 61 85 DE 68", + "1.1.4.22": "00 00 00 00 00 00", + "1.1.4.23": "00 00 00 00 00 00", + "1.1.4.24": "00 00 00 00 00 00", + "1.1.4.25": "00 00 00 00 00 00", + "1.1.4.26": "00 00 00 00 00 00", + "1.1.4.27": "00 00 00 00 00 00", + "1.1.5.1": "48", + "1.1.5.2": "48", + "1.1.5.3": "48", + "1.1.5.4": "48", + "1.1.5.5": "48", + "1.1.5.6": "48", + "1.1.5.7": "48", + "1.1.5.8": "48", + "1.1.5.9": "48", + "1.1.5.10": "48", + "1.1.5.11": "48", + "1.1.5.12": "48", + "1.1.5.13": "48", + "1.1.5.14": "48", + "1.1.5.15": "48", + "1.1.5.16": "48", + "1.1.5.17": "48", + "1.1.5.18": "48", + "1.1.5.19": "48", + "1.1.5.20": "48", + "1.1.5.21": "48", + "1.1.5.22": "48", + "1.1.5.23": "48", + "1.1.5.24": "48", + "1.1.5.25": "48", + "1.1.5.26": "48", + "1.1.5.27": "48", + "1.1.6.1": "2", + "1.1.6.2": "2", + "1.1.6.3": "1", + "1.1.6.4": "2", + "1.1.6.5": "2", + "1.1.6.6": "2", + "1.1.6.7": "2", + "1.1.6.8": "2", + "1.1.6.9": "2", + "1.1.6.10": "1", + "1.1.6.11": "2", + "1.1.6.12": "2", + "1.1.6.13": "2", + "1.1.6.14": "2", + "1.1.6.15": "2", + "1.1.6.16": "2", + "1.1.6.17": "2", + "1.1.6.18": "2", + "1.1.6.19": "2", + "1.1.6.20": "2", + "1.1.6.21": "2", + "1.1.6.22": "1", + "1.1.6.23": "2", + "1.1.6.24": "2", + "1.1.6.25": "2", + "1.1.6.26": "2", + "1.1.6.27": "2", + "1.1.7.1": "00 00 00 00 00 00", + "1.1.7.2": "00 00 00 00 00 00", + "1.1.7.3": "00 23 3E 82 15 73", + "1.1.7.4": "00 00 00 00 00 00", + "1.1.7.5": "00 00 00 00 00 00", + "1.1.7.6": "00 00 00 00 00 00", + "1.1.7.7": "00 00 00 00 00 00", + "1.1.7.8": "00 00 00 00 00 00", + "1.1.7.9": "00 00 00 00 00 00", + "1.1.7.10": "00 15 AD 01 01 01", + "1.1.7.11": "00 00 00 00 00 00", + "1.1.7.12": "00 00 00 00 00 00", + "1.1.7.13": "00 00 00 00 00 00", + "1.1.7.14": "00 00 00 00 00 00", + "1.1.7.15": "00 00 00 00 00 00", + "1.1.7.16": "00 00 00 00 00 00", + "1.1.7.17": "00 00 00 00 00 00", + "1.1.7.18": "00 00 00 00 00 00", + "1.1.7.19": "00 00 00 00 00 00", + "1.1.7.20": "00 00 00 00 00 00", + "1.1.7.21": "00 00 00 00 00 00", + "1.1.7.22": "50 40 61 85 DE 68", + "1.1.7.23": "00 00 00 00 00 00", + "1.1.7.24": "00 00 00 00 00 00", + "1.1.7.25": "00 00 00 00 00 00", + "1.1.7.26": "00 00 00 00 00 00", + "1.1.7.27": "00 00 00 00 00 00", + "1.1.8.1": "48", + "1.1.8.2": "48", + "1.1.8.3": "48", + "1.1.8.4": "48", + "1.1.8.5": "48", + "1.1.8.6": "48", + "1.1.8.7": "48", + "1.1.8.8": "48", + "1.1.8.9": "48", + "1.1.8.10": "48", + "1.1.8.11": "48", + "1.1.8.12": "48", + "1.1.8.13": "48", + "1.1.8.14": "48", + "1.1.8.15": "48", + "1.1.8.16": "48", + "1.1.8.17": "48", + "1.1.8.18": "48", + "1.1.8.19": "48", + "1.1.8.20": "48", + "1.1.8.21": "48", + "1.1.8.22": "48", + "1.1.8.23": "48", + "1.1.8.24": "48", + "1.1.8.25": "48", + "1.1.8.26": "48", + "1.1.8.27": "48", + "1.1.9.1": "2", + "1.1.9.2": "1", + "1.1.9.3": "2", + "1.1.9.4": "2", + "1.1.9.5": "2", + "1.1.9.6": "2", + "1.1.9.7": "2", + "1.1.9.8": "2", + "1.1.9.9": "2", + "1.1.9.10": "2", + "1.1.9.11": "1", + "1.1.9.12": "2", + "1.1.9.13": "2", + "1.1.9.14": "2", + "1.1.9.15": "2", + "1.1.9.16": "2", + "1.1.9.17": "2", + "1.1.9.18": "2", + "1.1.9.19": "2", + "1.1.9.20": "2", + "1.1.9.21": "2", + "1.1.9.22": "2", + "1.1.9.23": "2", + "1.1.9.24": "2", + "1.1.9.25": "2", + "1.1.9.26": "2", + "1.1.9.27": "2", + "1.1.10.1": "0", + "1.1.10.2": "35068", + "1.1.10.3": "2048", + "1.1.10.4": "2048", + "1.1.10.5": "2048", + "1.1.10.6": "0", + "1.1.10.7": "0", + "1.1.10.8": "0", + "1.1.10.9": "0", + "1.1.10.10": "0", + "1.1.10.11": "36864", + "1.1.10.12": "0", + "1.1.10.13": "0", + "1.1.10.14": "0", + "1.1.10.15": "0", + "1.1.10.16": "0", + "1.1.10.17": "0", + "1.1.10.18": "2048", + "1.1.10.19": "2048", + "1.1.10.20": "2048", + "1.1.10.21": "2048", + "1.1.10.22": "2048", + "1.1.10.23": "2048", + "1.1.10.24": "2048", + "1.1.10.25": "2048", + "1.1.10.26": "2048", + "1.1.10.27": "2048", + "1.1.11.1": "2", + "1.1.11.2": "2", + "1.1.11.3": "2", + "1.1.11.4": "2", + "1.1.11.5": "2", + "1.1.11.6": "2", + "1.1.11.7": "2", + "1.1.11.8": "2", + "1.1.11.9": "2", + "1.1.11.10": "2", + "1.1.11.11": "2", + "1.1.11.12": "2", + "1.1.11.13": "1", + "1.1.11.14": "2", + "1.1.11.15": "2", + "1.1.11.16": "2", + "1.1.11.17": "2", + "1.1.11.18": "2", + "1.1.11.19": "2", + "1.1.11.20": "2", + "1.1.11.21": "2", + "1.1.11.22": "2", + "1.1.11.23": "2", + "1.1.11.24": "2", + "1.1.11.25": "2", + "1.1.11.26": "2", + "1.1.11.27": "2", + "1.1.12.1": "0", + "1.1.12.2": "0", + "1.1.12.3": "0", + "1.1.12.4": "0", + "1.1.12.5": "0", + "1.1.12.6": "0", + "1.1.12.7": "0", + "1.1.12.8": "0", + "1.1.12.9": "0", + "1.1.12.10": "0", + "1.1.12.11": "0", + "1.1.12.12": "0", + "1.1.12.13": "5", + "1.1.12.14": "1", + "1.1.12.15": "0", + "1.1.12.16": "0", + "1.1.12.17": "0", + "1.1.12.18": "0", + "1.1.12.19": "0", + "1.1.12.20": "0", + "1.1.12.21": "0", + "1.1.12.22": "0", + "1.1.12.23": "0", + "1.1.12.24": "0", + "1.1.12.25": "0", + "1.1.12.26": "0", + "1.1.12.27": "0", + "1.1.13.1": "2", + "1.1.13.2": "2", + "1.1.13.3": "2", + "1.1.13.4": "2", + "1.1.13.5": "2", + "1.1.13.6": "2", + "1.1.13.7": "2", + "1.1.13.8": "2", + "1.1.13.9": "2", + "1.1.13.10": "2", + "1.1.13.11": "2", + "1.1.13.12": "2", + "1.1.13.13": "2", + "1.1.13.14": "1", + "1.1.13.15": "2", + "1.1.13.16": "2", + "1.1.13.17": "2", + "1.1.13.18": "2", + "1.1.13.19": "2", + "1.1.13.20": "2", + "1.1.13.21": "2", + "1.1.13.22": "2", + "1.1.13.23": "2", + "1.1.13.24": "2", + "1.1.13.25": "2", + "1.1.13.26": "2", + "1.1.13.27": "2", + "1.1.14.1": "0", + "1.1.14.2": "0", + "1.1.14.3": "0", + "1.1.14.4": "0", + "1.1.14.5": "0", + "1.1.14.6": "0", + "1.1.14.7": "0", + "1.1.14.8": "0", + "1.1.14.9": "0", + "1.1.14.10": "0", + "1.1.14.11": "0", + "1.1.14.12": "0", + "1.1.14.13": "0", + "1.1.14.14": "1", + "1.1.14.15": "0", + "1.1.14.16": "0", + "1.1.14.17": "0", + "1.1.14.18": "0", + "1.1.14.19": "0", + "1.1.14.20": "0", + "1.1.14.21": "0", + "1.1.14.22": "0", + "1.1.14.23": "0", + "1.1.14.24": "0", + "1.1.14.25": "0", + "1.1.14.26": "0", + "1.1.14.27": "0", + "1.1.15.1": "2", + "1.1.15.2": "2", + "1.1.15.3": "2", + "1.1.15.4": "2", + "1.1.15.5": "1", + "1.1.15.6": "2", + "1.1.15.7": "2", + "1.1.15.8": "2", + "1.1.15.9": "2", + "1.1.15.10": "2", + "1.1.15.11": "2", + "1.1.15.12": "1", + "1.1.15.13": "2", + "1.1.15.14": "2", + "1.1.15.15": "2", + "1.1.15.16": "2", + "1.1.15.17": "2", + "1.1.15.18": "1", + "1.1.15.19": "1", + "1.1.15.20": "1", + "1.1.15.21": "2", + "1.1.15.22": "2", + "1.1.15.23": "1", + "1.1.15.24": "1", + "1.1.15.25": "1", + "1.1.15.26": "1", + "1.1.15.27": "1", + "1.1.16.1": "0", + "1.1.16.2": "0", + "1.1.16.3": "0", + "1.1.16.4": "0", + "1.1.16.5": "2216", + "1.1.16.6": "0", + "1.1.16.7": "0", + "1.1.16.8": "0", + "1.1.16.9": "0", + "1.1.16.10": "0", + "1.1.16.11": "0", + "1.1.16.12": "100", + "1.1.16.13": "0", + "1.1.16.14": "0", + "1.1.16.15": "0", + "1.1.16.16": "1", + "1.1.16.17": "0", + "1.1.16.18": "2217", + "1.1.16.19": "2573", + "1.1.16.20": "3573", + "1.1.16.21": "0", + "1.1.16.22": "0", + "1.1.16.23": "2218", + "1.1.16.24": "2219", + "1.1.16.25": "2220", + "1.1.16.26": "2221", + "1.1.16.27": "3999", + "1.1.17.1": "2", + "1.1.17.2": "2", + "1.1.17.3": "2", + "1.1.17.4": "2", + "1.1.17.5": "2", + "1.1.17.6": "2", + "1.1.17.7": "2", + "1.1.17.8": "2", + "1.1.17.9": "2", + "1.1.17.10": "2", + "1.1.17.11": "2", + "1.1.17.12": "2", + "1.1.17.13": "2", + "1.1.17.14": "2", + "1.1.17.15": "2", + "1.1.17.16": "1", + "1.1.17.17": "2", + "1.1.17.18": "2", + "1.1.17.19": "2", + "1.1.17.20": "2", + "1.1.17.21": "2", + "1.1.17.22": "2", + "1.1.17.23": "2", + "1.1.17.24": "2", + "1.1.17.25": "2", + "1.1.17.26": "2", + "1.1.17.27": "2", + "1.1.18.1": "0", + "1.1.18.2": "0", + "1.1.18.3": "0", + "1.1.18.4": "0", + "1.1.18.5": "0", + "1.1.18.6": "0", + "1.1.18.7": "0", + "1.1.18.8": "0", + "1.1.18.9": "0", + "1.1.18.10": "0", + "1.1.18.11": "0", + "1.1.18.12": "0", + "1.1.18.13": "0", + "1.1.18.14": "0", + "1.1.18.15": "0", + "1.1.18.16": "5", + "1.1.18.17": "1", + "1.1.18.18": "0", + "1.1.18.19": "0", + "1.1.18.20": "0", + "1.1.18.21": "0", + "1.1.18.22": "0", + "1.1.18.23": "0", + "1.1.18.24": "0", + "1.1.18.25": "0", + "1.1.18.26": "0", + "1.1.18.27": "0", + "1.1.19.1": "2", + "1.1.19.2": "2", + "1.1.19.3": "2", + "1.1.19.4": "2", + "1.1.19.5": "2", + "1.1.19.6": "2", + "1.1.19.7": "2", + "1.1.19.8": "2", + "1.1.19.9": "2", + "1.1.19.10": "2", + "1.1.19.11": "2", + "1.1.19.12": "2", + "1.1.19.13": "2", + "1.1.19.14": "2", + "1.1.19.15": "2", + "1.1.19.16": "2", + "1.1.19.17": "1", + "1.1.19.18": "2", + "1.1.19.19": "2", + "1.1.19.20": "2", + "1.1.19.21": "2", + "1.1.19.22": "2", + "1.1.19.23": "2", + "1.1.19.24": "2", + "1.1.19.25": "2", + "1.1.19.26": "2", + "1.1.19.27": "2", + "1.1.20.1": "0", + "1.1.20.2": "0", + "1.1.20.3": "0", + "1.1.20.4": "0", + "1.1.20.5": "0", + "1.1.20.6": "0", + "1.1.20.7": "0", + "1.1.20.8": "0", + "1.1.20.9": "0", + "1.1.20.10": "0", + "1.1.20.11": "0", + "1.1.20.12": "0", + "1.1.20.13": "0", + "1.1.20.14": "0", + "1.1.20.15": "0", + "1.1.20.16": "0", + "1.1.20.17": "1", + "1.1.20.18": "0", + "1.1.20.19": "0", + "1.1.20.20": "0", + "1.1.20.21": "0", + "1.1.20.22": "0", + "1.1.20.23": "0", + "1.1.20.24": "0", + "1.1.20.25": "0", + "1.1.20.26": "0", + "1.1.20.27": "0", + "1.1.21.1": "2", + "1.1.21.2": "2", + "1.1.21.3": "2", + "1.1.21.4": "2", + "1.1.21.5": "2", + "1.1.21.6": "2", + "1.1.21.7": "2", + "1.1.21.8": "2", + "1.1.21.9": "2", + "1.1.21.10": "2", + "1.1.21.11": "2", + "1.1.21.12": "2", + "1.1.21.13": "2", + "1.1.21.14": "2", + "1.1.21.15": "1", + "1.1.21.16": "2", + "1.1.21.17": "2", + "1.1.21.18": "2", + "1.1.21.19": "2", + "1.1.21.20": "2", + "1.1.21.21": "2", + "1.1.21.22": "2", + "1.1.21.23": "2", + "1.1.21.24": "2", + "1.1.21.25": "2", + "1.1.21.26": "2", + "1.1.21.27": "2", + "1.1.22.1": "0", + "1.1.22.2": "0", + "1.1.22.3": "0", + "1.1.22.4": "0", + "1.1.22.5": "2573", + "1.1.22.6": "0", + "1.1.22.7": "0", + "1.1.22.8": "0", + "1.1.22.9": "0", + "1.1.22.10": "0", + "1.1.22.11": "0", + "1.1.22.12": "0", + "1.1.22.13": "0", + "1.1.22.14": "0", + "1.1.22.15": "200", + "1.1.22.16": "0", + "1.1.22.17": "0", + "1.1.22.18": "3573", + "1.1.22.19": "0", + "1.1.22.20": "0", + "1.1.22.21": "0", + "1.1.22.22": "0", + "1.1.22.23": "2166", + "1.1.22.24": "3166", + "1.1.22.25": "2347", + "1.1.22.26": "3347", + "1.1.22.27": "0", + "1.1.23.1": "1", + "1.1.23.2": "1", + "1.1.23.3": "1", + "1.1.23.4": "1", + "1.1.23.5": "1", + "1.1.23.6": "1", + "1.1.23.7": "1", + "1.1.23.8": "1", + "1.1.23.9": "1", + "1.1.23.10": "1", + "1.1.23.11": "1", + "1.1.23.12": "1", + "1.1.23.13": "1", + "1.1.23.14": "1", + "1.1.23.15": "1", + "1.1.23.16": "1", + "1.1.23.17": "1", + "1.1.23.18": "1", + "1.1.23.19": "1", + "1.1.23.20": "1", + "1.1.23.21": "1", + "1.1.23.22": "1", + "1.1.23.23": "1", + "1.1.23.24": "1", + "1.1.23.25": "1", + "1.1.23.26": "1", + "1.1.23.27": "1", + "2.1.2.6": "ipSrc", + "2.1.2.7": "ipDst", + "2.1.2.8": "ipTTL", + "2.1.2.9": "ipProto", + "2.1.2.10": "ipHL", + "2.1.2.11": "ipDscp", + "2.1.2.12": "ipECN", + "2.1.2.13": "udpSrcPort", + "2.1.2.14": "udpDstPort", + "2.1.2.15": "icmpType", + "2.1.2.16": "icmpCode", + "2.1.3.6": "1", + "2.1.3.7": "2", + "2.1.3.8": "2", + "2.1.3.9": "2", + "2.1.3.10": "2", + "2.1.3.11": "2", + "2.1.3.12": "2", + "2.1.3.13": "2", + "2.1.3.14": "2", + "2.1.3.15": "2", + "2.1.3.16": "2", + "2.1.4.6": "192.168.1.1", + "2.1.4.7": "0.0.0.0", + "2.1.4.8": "0.0.0.0", + "2.1.4.9": "0.0.0.0", + "2.1.4.10": "0.0.0.0", + "2.1.4.11": "0.0.0.0", + "2.1.4.12": "0.0.0.0", + "2.1.4.13": "0.0.0.0", + "2.1.4.14": "0.0.0.0", + "2.1.4.15": "0.0.0.0", + "2.1.4.16": "0.0.0.0", + "2.1.5.6": "255.255.255.255", + "2.1.5.7": "255.255.255.255", + "2.1.5.8": "255.255.255.255", + "2.1.5.9": "255.255.255.255", + "2.1.5.10": "255.255.255.255", + "2.1.5.11": "255.255.255.255", + "2.1.5.12": "255.255.255.255", + "2.1.5.13": "255.255.255.255", + "2.1.5.14": "255.255.255.255", + "2.1.5.15": "255.255.255.255", + "2.1.5.16": "255.255.255.255", + "2.1.6.6": "2", + "2.1.6.7": "1", + "2.1.6.8": "2", + "2.1.6.9": "2", + "2.1.6.10": "2", + "2.1.6.11": "2", + "2.1.6.12": "2", + "2.1.6.13": "2", + "2.1.6.14": "2", + "2.1.6.15": "2", + "2.1.6.16": "2", + "2.1.7.6": "0.0.0.0", + "2.1.7.7": "192.168.1.1", + "2.1.7.8": "0.0.0.0", + "2.1.7.9": "0.0.0.0", + "2.1.7.10": "0.0.0.0", + "2.1.7.11": "0.0.0.0", + "2.1.7.12": "0.0.0.0", + "2.1.7.13": "0.0.0.0", + "2.1.7.14": "0.0.0.0", + "2.1.7.15": "0.0.0.0", + "2.1.7.16": "0.0.0.0", + "2.1.8.6": "255.255.255.255", + "2.1.8.7": "255.255.255.255", + "2.1.8.8": "255.255.255.255", + "2.1.8.9": "255.255.255.255", + "2.1.8.10": "255.255.255.255", + "2.1.8.11": "255.255.255.255", + "2.1.8.12": "255.255.255.255", + "2.1.8.13": "255.255.255.255", + "2.1.8.14": "255.255.255.255", + "2.1.8.15": "255.255.255.255", + "2.1.8.16": "255.255.255.255", + "2.1.9.6": "2", + "2.1.9.7": "2", + "2.1.9.8": "2", + "2.1.9.9": "1", + "2.1.9.10": "2", + "2.1.9.11": "2", + "2.1.9.12": "2", + "2.1.9.13": "1", + "2.1.9.14": "1", + "2.1.9.15": "1", + "2.1.9.16": "1", + "2.1.10.6": "0", + "2.1.10.7": "17", + "2.1.10.8": "17", + "2.1.10.9": "89", + "2.1.10.10": "17", + "2.1.10.11": "17", + "2.1.10.12": "17", + "2.1.10.13": "17", + "2.1.10.14": "17", + "2.1.10.15": "1", + "2.1.10.16": "1", + "2.1.11.6": "2", + "2.1.11.7": "2", + "2.1.11.8": "1", + "2.1.11.9": "2", + "2.1.11.10": "2", + "2.1.11.11": "2", + "2.1.11.12": "2", + "2.1.11.13": "2", + "2.1.11.14": "2", + "2.1.11.15": "2", + "2.1.11.16": "2", + "2.1.12.6": "0", + "2.1.12.7": "0", + "2.1.12.8": "255", + "2.1.12.9": "0", + "2.1.12.10": "0", + "2.1.12.11": "0", + "2.1.12.12": "0", + "2.1.12.13": "0", + "2.1.12.14": "0", + "2.1.12.15": "0", + "2.1.12.16": "0", + "2.1.13.6": "2", + "2.1.13.7": "2", + "2.1.13.8": "2", + "2.1.13.9": "2", + "2.1.13.10": "1", + "2.1.13.11": "2", + "2.1.13.12": "2", + "2.1.13.13": "2", + "2.1.13.14": "2", + "2.1.13.15": "2", + "2.1.13.16": "2", + "2.1.14.6": "5", + "2.1.14.7": "5", + "2.1.14.8": "5", + "2.1.14.9": "5", + "2.1.14.10": "6", + "2.1.14.11": "5", + "2.1.14.12": "5", + "2.1.14.13": "5", + "2.1.14.14": "5", + "2.1.14.15": "5", + "2.1.14.16": "5", + "2.1.15.6": "2", + "2.1.15.7": "2", + "2.1.15.8": "2", + "2.1.15.9": "2", + "2.1.15.10": "2", + "2.1.15.11": "1", + "2.1.15.12": "2", + "2.1.15.13": "2", + "2.1.15.14": "2", + "2.1.15.15": "2", + "2.1.15.16": "2", + "2.1.16.6": "0", + "2.1.16.7": "0", + "2.1.16.8": "0", + "2.1.16.9": "0", + "2.1.16.10": "0", + "2.1.16.11": "32", + "2.1.16.12": "0", + "2.1.16.13": "0", + "2.1.16.14": "0", + "2.1.16.15": "0", + "2.1.16.16": "0", + "2.1.17.6": "2", + "2.1.17.7": "2", + "2.1.17.8": "2", + "2.1.17.9": "2", + "2.1.17.10": "2", + "2.1.17.11": "2", + "2.1.17.12": "1", + "2.1.17.13": "2", + "2.1.17.14": "2", + "2.1.17.15": "2", + "2.1.17.16": "2", + "2.1.18.6": "0", + "2.1.18.7": "0", + "2.1.18.8": "0", + "2.1.18.9": "0", + "2.1.18.10": "0", + "2.1.18.11": "0", + "2.1.18.12": "2", + "2.1.18.13": "0", + "2.1.18.14": "0", + "2.1.18.15": "0", + "2.1.18.16": "0", + "2.1.19.6": "2", + "2.1.19.7": "2", + "2.1.19.8": "2", + "2.1.19.9": "2", + "2.1.19.10": "2", + "2.1.19.11": "2", + "2.1.19.12": "2", + "2.1.19.13": "1", + "2.1.19.14": "2", + "2.1.19.15": "2", + "2.1.19.16": "2", + "2.1.20.6": "0", + "2.1.20.7": "0", + "2.1.20.8": "0", + "2.1.20.9": "0", + "2.1.20.10": "0", + "2.1.20.11": "0", + "2.1.20.12": "0", + "2.1.20.13": "69", + "2.1.20.14": "0", + "2.1.20.15": "0", + "2.1.20.16": "0", + "2.1.21.6": "2", + "2.1.21.7": "2", + "2.1.21.8": "2", + "2.1.21.9": "2", + "2.1.21.10": "2", + "2.1.21.11": "2", + "2.1.21.12": "2", + "2.1.21.13": "2", + "2.1.21.14": "1", + "2.1.21.15": "2", + "2.1.21.16": "2", + "2.1.22.6": "0", + "2.1.22.7": "0", + "2.1.22.8": "0", + "2.1.22.9": "0", + "2.1.22.10": "0", + "2.1.22.11": "0", + "2.1.22.12": "0", + "2.1.22.13": "0", + "2.1.22.14": "68", + "2.1.22.15": "0", + "2.1.22.16": "0", + "2.1.23.6": "2", + "2.1.23.7": "2", + "2.1.23.8": "2", + "2.1.23.9": "2", + "2.1.23.10": "2", + "2.1.23.11": "2", + "2.1.23.12": "2", + "2.1.23.13": "2", + "2.1.23.14": "2", + "2.1.23.15": "1", + "2.1.23.16": "2", + "2.1.24.6": "0", + "2.1.24.7": "0", + "2.1.24.8": "0", + "2.1.24.9": "0", + "2.1.24.10": "0", + "2.1.24.11": "0", + "2.1.24.12": "0", + "2.1.24.13": "0", + "2.1.24.14": "0", + "2.1.24.15": "5", + "2.1.24.16": "0", + "2.1.25.6": "2", + "2.1.25.7": "2", + "2.1.25.8": "2", + "2.1.25.9": "2", + "2.1.25.10": "2", + "2.1.25.11": "2", + "2.1.25.12": "2", + "2.1.25.13": "2", + "2.1.25.14": "2", + "2.1.25.15": "2", + "2.1.25.16": "1", + "2.1.26.6": "0", + "2.1.26.7": "0", + "2.1.26.8": "0", + "2.1.26.9": "0", + "2.1.26.10": "0", + "2.1.26.11": "0", + "2.1.26.12": "0", + "2.1.26.13": "0", + "2.1.26.14": "0", + "2.1.26.15": "0", + "2.1.26.16": "3", + "2.1.27.6": "1", + "2.1.27.7": "1", + "2.1.27.8": "1", + "2.1.27.9": "1", + "2.1.27.10": "1", + "2.1.27.11": "1", + "2.1.27.12": "1", + "2.1.27.13": "1", + "2.1.27.14": "1", + "2.1.27.15": "1", + "2.1.27.16": "1", + "3.1.2.1": "*default", + "3.1.2.2": "PAA-Discovery", + "3.1.2.3": "MTSOMAC_SRC", + "3.1.2.4": "MTSOMAC_DST", + "3.1.2.5": "SVLAN_2216", + "3.1.2.6": "catchAll", + "3.1.2.7": "ieeeBPDU", + "3.1.2.8": "ciscoBPDU", + "3.1.2.9": "macDst", + "3.1.2.10": "macSrc", + "3.1.2.11": "frameType", + "3.1.2.12": "firstVlanId", + "3.1.2.13": "firstVlanPrior", + "3.1.2.14": "firstVlanCfi", + "3.1.2.15": "secondVlanId", + "3.1.2.16": "secondVlanPrior", + "3.1.2.17": "secondVlanCfi", + "3.1.2.18": "SVLAN_2217", + "3.1.2.19": "VLAN_2573", + "3.1.2.20": "VLAN_3573", + "3.1.2.21": "rvResortMAC_DST", + "3.1.2.22": "rvResortMAC_SRC", + "3.1.2.23": "SVLAN_2218", + "3.1.2.24": "SVLAN_2219", + "3.1.2.25": "SVLAN_2220", + "3.1.2.26": "SVLAN_2221", + "3.1.2.27": "CVLAN_3999", + "3.1.3.1": "1", + "3.1.3.2": "1", + "3.1.3.3": "1", + "3.1.3.4": "1", + "3.1.3.5": "1", + "3.1.3.6": "1", + "3.1.3.7": "1", + "3.1.3.8": "1", + "3.1.3.9": "1", + "3.1.3.10": "1", + "3.1.3.11": "1", + "3.1.3.12": "1", + "3.1.3.13": "1", + "3.1.3.14": "1", + "3.1.3.15": "1", + "3.1.3.16": "1", + "3.1.3.17": "1", + "3.1.3.18": "1", + "3.1.3.19": "1", + "3.1.3.20": "1", + "3.1.3.21": "1", + "3.1.3.22": "1", + "3.1.3.23": "1", + "3.1.3.24": "1", + "3.1.3.25": "1", + "3.1.3.26": "1", + "3.1.3.27": "1", + "3.1.4.1": "2", + "3.1.4.2": "2", + "3.1.4.3": "2", + "3.1.4.4": "2", + "3.1.4.5": "2", + "3.1.4.6": "2", + "3.1.4.7": "2", + "3.1.4.8": "2", + "3.1.4.9": "2", + "3.1.4.10": "2", + "3.1.4.11": "2", + "3.1.4.12": "2", + "3.1.4.13": "1", + "3.1.4.14": "2", + "3.1.4.15": "2", + "3.1.4.16": "2", + "3.1.4.17": "2", + "3.1.4.18": "2", + "3.1.4.19": "2", + "3.1.4.20": "2", + "3.1.4.21": "2", + "3.1.4.22": "2", + "3.1.4.23": "2", + "3.1.4.24": "2", + "3.1.4.25": "2", + "3.1.4.26": "2", + "3.1.4.27": "2", + "3.1.5.1": "0", + "3.1.5.2": "0", + "3.1.5.3": "0", + "3.1.5.4": "0", + "3.1.5.5": "0", + "3.1.5.6": "0", + "3.1.5.7": "0", + "3.1.5.8": "0", + "3.1.5.9": "0", + "3.1.5.10": "0", + "3.1.5.11": "0", + "3.1.5.12": "0", + "3.1.5.13": "5", + "3.1.5.14": "1", + "3.1.5.15": "0", + "3.1.5.16": "0", + "3.1.5.17": "0", + "3.1.5.18": "0", + "3.1.5.19": "0", + "3.1.5.20": "0", + "3.1.5.21": "0", + "3.1.5.22": "0", + "3.1.5.23": "0", + "3.1.5.24": "0", + "3.1.5.25": "0", + "3.1.5.26": "0", + "3.1.5.27": "0", + "3.1.6.1": "0", + "3.1.6.2": "0", + "3.1.6.3": "0", + "3.1.6.4": "0", + "3.1.6.5": "0", + "3.1.6.6": "0", + "3.1.6.7": "0", + "3.1.6.8": "0", + "3.1.6.9": "0", + "3.1.6.10": "0", + "3.1.6.11": "0", + "3.1.6.12": "0", + "3.1.6.13": "0", + "3.1.6.14": "0", + "3.1.6.15": "0", + "3.1.6.16": "0", + "3.1.6.17": "0", + "3.1.6.18": "0", + "3.1.6.19": "0", + "3.1.6.20": "0", + "3.1.6.21": "0", + "3.1.6.22": "0", + "3.1.6.23": "0", + "3.1.6.24": "0", + "3.1.6.25": "0", + "3.1.6.26": "0", + "3.1.6.27": "0", + "3.1.7.1": "3", + "3.1.7.2": "3", + "3.1.7.3": "3", + "3.1.7.4": "3", + "3.1.7.5": "3", + "3.1.7.6": "3", + "3.1.7.7": "3", + "3.1.7.8": "3", + "3.1.7.9": "3", + "3.1.7.10": "3", + "3.1.7.11": "3", + "3.1.7.12": "3", + "3.1.7.13": "3", + "3.1.7.14": "3", + "3.1.7.15": "3", + "3.1.7.16": "3", + "3.1.7.17": "3", + "3.1.7.18": "3", + "3.1.7.19": "3", + "3.1.7.20": "3", + "3.1.7.21": "3", + "3.1.7.22": "3", + "3.1.7.23": "3", + "3.1.7.24": "3", + "3.1.7.25": "3", + "3.1.7.26": "3", + "3.1.7.27": "3", + "3.1.8.1": "2", + "3.1.8.2": "2", + "3.1.8.3": "2", + "3.1.8.4": "2", + "3.1.8.5": "1", + "3.1.8.6": "2", + "3.1.8.7": "2", + "3.1.8.8": "2", + "3.1.8.9": "2", + "3.1.8.10": "2", + "3.1.8.11": "2", + "3.1.8.12": "1", + "3.1.8.13": "2", + "3.1.8.14": "2", + "3.1.8.15": "2", + "3.1.8.16": "2", + "3.1.8.17": "2", + "3.1.8.18": "1", + "3.1.8.19": "1", + "3.1.8.20": "1", + "3.1.8.21": "2", + "3.1.8.22": "2", + "3.1.8.23": "1", + "3.1.8.24": "1", + "3.1.8.25": "1", + "3.1.8.26": "1", + "3.1.8.27": "1", + "3.1.9.1": "0", + "3.1.9.2": "0", + "3.1.9.3": "0", + "3.1.9.4": "0", + "3.1.9.5": "2216", + "3.1.9.6": "0", + "3.1.9.7": "0", + "3.1.9.8": "0", + "3.1.9.9": "0", + "3.1.9.10": "0", + "3.1.9.11": "0", + "3.1.9.12": "100", + "3.1.9.13": "0", + "3.1.9.14": "0", + "3.1.9.15": "0", + "3.1.9.16": "1", + "3.1.9.17": "0", + "3.1.9.18": "2217", + "3.1.9.19": "2573", + "3.1.9.20": "3573", + "3.1.9.21": "0", + "3.1.9.22": "0", + "3.1.9.23": "2218", + "3.1.9.24": "2219", + "3.1.9.25": "2220", + "3.1.9.26": "2221", + "3.1.9.27": "3999", + "3.1.10.1": "0", + "3.1.10.2": "0", + "3.1.10.3": "0", + "3.1.10.4": "0", + "3.1.10.5": "0", + "3.1.10.6": "0", + "3.1.10.7": "0", + "3.1.10.8": "0", + "3.1.10.9": "0", + "3.1.10.10": "0", + "3.1.10.11": "0", + "3.1.10.12": "0", + "3.1.10.13": "0", + "3.1.10.14": "0", + "3.1.10.15": "0", + "3.1.10.16": "0", + "3.1.10.17": "0", + "3.1.10.18": "0", + "3.1.10.19": "0", + "3.1.10.20": "0", + "3.1.10.21": "0", + "3.1.10.22": "0", + "3.1.10.23": "0", + "3.1.10.24": "0", + "3.1.10.25": "0", + "3.1.10.26": "0", + "3.1.10.27": "0", + "3.1.11.1": "3", + "3.1.11.2": "3", + "3.1.11.3": "3", + "3.1.11.4": "3", + "3.1.11.5": "3", + "3.1.11.6": "3", + "3.1.11.7": "3", + "3.1.11.8": "3", + "3.1.11.9": "3", + "3.1.11.10": "3", + "3.1.11.11": "3", + "3.1.11.12": "3", + "3.1.11.13": "3", + "3.1.11.14": "3", + "3.1.11.15": "3", + "3.1.11.16": "3", + "3.1.11.17": "3", + "3.1.11.18": "3", + "3.1.11.19": "3", + "3.1.11.20": "3", + "3.1.11.21": "3", + "3.1.11.22": "3", + "3.1.11.23": "3", + "3.1.11.24": "3", + "3.1.11.25": "3", + "3.1.11.26": "3", + "3.1.11.27": "3", + "3.1.12.1": "2", + "3.1.12.2": "2", + "3.1.12.3": "2", + "3.1.12.4": "2", + "3.1.12.5": "2", + "3.1.12.6": "2", + "3.1.12.7": "2", + "3.1.12.8": "2", + "3.1.12.9": "2", + "3.1.12.10": "2", + "3.1.12.11": "2", + "3.1.12.12": "2", + "3.1.12.13": "2", + "3.1.12.14": "1", + "3.1.12.15": "2", + "3.1.12.16": "2", + "3.1.12.17": "2", + "3.1.12.18": "2", + "3.1.12.19": "2", + "3.1.12.20": "2", + "3.1.12.21": "2", + "3.1.12.22": "2", + "3.1.12.23": "2", + "3.1.12.24": "2", + "3.1.12.25": "2", + "3.1.12.26": "2", + "3.1.12.27": "2", + "3.1.13.1": "0", + "3.1.13.2": "0", + "3.1.13.3": "0", + "3.1.13.4": "0", + "3.1.13.5": "0", + "3.1.13.6": "0", + "3.1.13.7": "0", + "3.1.13.8": "0", + "3.1.13.9": "0", + "3.1.13.10": "0", + "3.1.13.11": "0", + "3.1.13.12": "0", + "3.1.13.13": "0", + "3.1.13.14": "1", + "3.1.13.15": "0", + "3.1.13.16": "0", + "3.1.13.17": "0", + "3.1.13.18": "0", + "3.1.13.19": "0", + "3.1.13.20": "0", + "3.1.13.21": "0", + "3.1.13.22": "0", + "3.1.13.23": "0", + "3.1.13.24": "0", + "3.1.13.25": "0", + "3.1.13.26": "0", + "3.1.13.27": "0", + "3.1.14.1": "2", + "3.1.14.2": "2", + "3.1.14.3": "2", + "3.1.14.4": "2", + "3.1.14.5": "1", + "3.1.14.6": "2", + "3.1.14.7": "2", + "3.1.14.8": "2", + "3.1.14.9": "2", + "3.1.14.10": "2", + "3.1.14.11": "2", + "3.1.14.12": "2", + "3.1.14.13": "2", + "3.1.14.14": "2", + "3.1.14.15": "2", + "3.1.14.16": "2", + "3.1.14.17": "2", + "3.1.14.18": "1", + "3.1.14.19": "1", + "3.1.14.20": "1", + "3.1.14.21": "2", + "3.1.14.22": "2", + "3.1.14.23": "1", + "3.1.14.24": "1", + "3.1.14.25": "1", + "3.1.14.26": "1", + "3.1.14.27": "1", + "3.1.15.1": "5", + "3.1.15.2": "5", + "3.1.15.3": "5", + "3.1.15.4": "5", + "3.1.15.5": "2", + "3.1.15.6": "5", + "3.1.15.7": "5", + "3.1.15.8": "5", + "3.1.15.9": "5", + "3.1.15.10": "5", + "3.1.15.11": "5", + "3.1.15.12": "5", + "3.1.15.13": "5", + "3.1.15.14": "5", + "3.1.15.15": "5", + "3.1.15.16": "5", + "3.1.15.17": "5", + "3.1.15.18": "2", + "3.1.15.19": "1", + "3.1.15.20": "1", + "3.1.15.21": "5", + "3.1.15.22": "5", + "3.1.15.23": "2", + "3.1.15.24": "2", + "3.1.15.25": "2", + "3.1.15.26": "2", + "3.1.15.27": "1", + "3.1.16.1": "2", + "3.1.16.2": "2", + "3.1.16.3": "2", + "3.1.16.4": "2", + "3.1.16.5": "2", + "3.1.16.6": "2", + "3.1.16.7": "2", + "3.1.16.8": "2", + "3.1.16.9": "2", + "3.1.16.10": "2", + "3.1.16.11": "2", + "3.1.16.12": "2", + "3.1.16.13": "2", + "3.1.16.14": "2", + "3.1.16.15": "2", + "3.1.16.16": "1", + "3.1.16.17": "2", + "3.1.16.18": "2", + "3.1.16.19": "2", + "3.1.16.20": "2", + "3.1.16.21": "2", + "3.1.16.22": "2", + "3.1.16.23": "2", + "3.1.16.24": "2", + "3.1.16.25": "2", + "3.1.16.26": "2", + "3.1.16.27": "2", + "3.1.17.1": "0", + "3.1.17.2": "0", + "3.1.17.3": "0", + "3.1.17.4": "0", + "3.1.17.5": "0", + "3.1.17.6": "0", + "3.1.17.7": "0", + "3.1.17.8": "0", + "3.1.17.9": "0", + "3.1.17.10": "0", + "3.1.17.11": "0", + "3.1.17.12": "0", + "3.1.17.13": "0", + "3.1.17.14": "0", + "3.1.17.15": "0", + "3.1.17.16": "5", + "3.1.17.17": "1", + "3.1.17.18": "0", + "3.1.17.19": "0", + "3.1.17.20": "0", + "3.1.17.21": "0", + "3.1.17.22": "0", + "3.1.17.23": "0", + "3.1.17.24": "0", + "3.1.17.25": "0", + "3.1.17.26": "0", + "3.1.17.27": "0", + "3.1.18.1": "0", + "3.1.18.2": "0", + "3.1.18.3": "0", + "3.1.18.4": "0", + "3.1.18.5": "0", + "3.1.18.6": "0", + "3.1.18.7": "0", + "3.1.18.8": "0", + "3.1.18.9": "0", + "3.1.18.10": "0", + "3.1.18.11": "0", + "3.1.18.12": "0", + "3.1.18.13": "0", + "3.1.18.14": "0", + "3.1.18.15": "0", + "3.1.18.16": "0", + "3.1.18.17": "0", + "3.1.18.18": "0", + "3.1.18.19": "0", + "3.1.18.20": "0", + "3.1.18.21": "0", + "3.1.18.22": "0", + "3.1.18.23": "0", + "3.1.18.24": "0", + "3.1.18.25": "0", + "3.1.18.26": "0", + "3.1.18.27": "0", + "3.1.19.1": "3", + "3.1.19.2": "3", + "3.1.19.3": "3", + "3.1.19.4": "3", + "3.1.19.5": "3", + "3.1.19.6": "3", + "3.1.19.7": "3", + "3.1.19.8": "3", + "3.1.19.9": "3", + "3.1.19.10": "3", + "3.1.19.11": "3", + "3.1.19.12": "3", + "3.1.19.13": "3", + "3.1.19.14": "3", + "3.1.19.15": "3", + "3.1.19.16": "3", + "3.1.19.17": "3", + "3.1.19.18": "3", + "3.1.19.19": "3", + "3.1.19.20": "3", + "3.1.19.21": "3", + "3.1.19.22": "3", + "3.1.19.23": "3", + "3.1.19.24": "3", + "3.1.19.25": "3", + "3.1.19.26": "3", + "3.1.19.27": "3", + "3.1.20.1": "2", + "3.1.20.2": "2", + "3.1.20.3": "2", + "3.1.20.4": "2", + "3.1.20.5": "2", + "3.1.20.6": "2", + "3.1.20.7": "2", + "3.1.20.8": "2", + "3.1.20.9": "2", + "3.1.20.10": "2", + "3.1.20.11": "2", + "3.1.20.12": "2", + "3.1.20.13": "2", + "3.1.20.14": "2", + "3.1.20.15": "1", + "3.1.20.16": "2", + "3.1.20.17": "2", + "3.1.20.18": "2", + "3.1.20.19": "2", + "3.1.20.20": "2", + "3.1.20.21": "2", + "3.1.20.22": "2", + "3.1.20.23": "2", + "3.1.20.24": "2", + "3.1.20.25": "2", + "3.1.20.26": "2", + "3.1.20.27": "2", + "3.1.21.1": "0", + "3.1.21.2": "0", + "3.1.21.3": "0", + "3.1.21.4": "0", + "3.1.21.5": "2573", + "3.1.21.6": "0", + "3.1.21.7": "0", + "3.1.21.8": "0", + "3.1.21.9": "0", + "3.1.21.10": "0", + "3.1.21.11": "0", + "3.1.21.12": "0", + "3.1.21.13": "0", + "3.1.21.14": "0", + "3.1.21.15": "200", + "3.1.21.16": "0", + "3.1.21.17": "0", + "3.1.21.18": "3573", + "3.1.21.19": "0", + "3.1.21.20": "0", + "3.1.21.21": "0", + "3.1.21.22": "0", + "3.1.21.23": "2166", + "3.1.21.24": "3166", + "3.1.21.25": "2347", + "3.1.21.26": "3347", + "3.1.21.27": "0", + "3.1.22.1": "0", + "3.1.22.2": "0", + "3.1.22.3": "0", + "3.1.22.4": "0", + "3.1.22.5": "0", + "3.1.22.6": "0", + "3.1.22.7": "0", + "3.1.22.8": "0", + "3.1.22.9": "0", + "3.1.22.10": "0", + "3.1.22.11": "0", + "3.1.22.12": "0", + "3.1.22.13": "0", + "3.1.22.14": "0", + "3.1.22.15": "0", + "3.1.22.16": "0", + "3.1.22.17": "0", + "3.1.22.18": "0", + "3.1.22.19": "0", + "3.1.22.20": "0", + "3.1.22.21": "0", + "3.1.22.22": "0", + "3.1.22.23": "0", + "3.1.22.24": "0", + "3.1.22.25": "0", + "3.1.22.26": "0", + "3.1.22.27": "0", + "3.1.23.1": "3", + "3.1.23.2": "3", + "3.1.23.3": "3", + "3.1.23.4": "3", + "3.1.23.5": "3", + "3.1.23.6": "3", + "3.1.23.7": "3", + "3.1.23.8": "3", + "3.1.23.9": "3", + "3.1.23.10": "3", + "3.1.23.11": "3", + "3.1.23.12": "3", + "3.1.23.13": "3", + "3.1.23.14": "3", + "3.1.23.15": "3", + "3.1.23.16": "3", + "3.1.23.17": "3", + "3.1.23.18": "3", + "3.1.23.19": "3", + "3.1.23.20": "3", + "3.1.23.21": "3", + "3.1.23.22": "3", + "3.1.23.23": "3", + "3.1.23.24": "3", + "3.1.23.25": "3", + "3.1.23.26": "3", + "3.1.23.27": "3", + "3.1.24.1": "2", + "3.1.24.2": "2", + "3.1.24.3": "2", + "3.1.24.4": "2", + "3.1.24.5": "2", + "3.1.24.6": "2", + "3.1.24.7": "2", + "3.1.24.8": "2", + "3.1.24.9": "2", + "3.1.24.10": "2", + "3.1.24.11": "2", + "3.1.24.12": "2", + "3.1.24.13": "2", + "3.1.24.14": "2", + "3.1.24.15": "2", + "3.1.24.16": "2", + "3.1.24.17": "1", + "3.1.24.18": "2", + "3.1.24.19": "2", + "3.1.24.20": "2", + "3.1.24.21": "2", + "3.1.24.22": "2", + "3.1.24.23": "2", + "3.1.24.24": "2", + "3.1.24.25": "2", + "3.1.24.26": "2", + "3.1.24.27": "2", + "3.1.25.1": "0", + "3.1.25.2": "0", + "3.1.25.3": "0", + "3.1.25.4": "0", + "3.1.25.5": "0", + "3.1.25.6": "0", + "3.1.25.7": "0", + "3.1.25.8": "0", + "3.1.25.9": "0", + "3.1.25.10": "0", + "3.1.25.11": "0", + "3.1.25.12": "0", + "3.1.25.13": "0", + "3.1.25.14": "0", + "3.1.25.15": "0", + "3.1.25.16": "0", + "3.1.25.17": "1", + "3.1.25.18": "0", + "3.1.25.19": "0", + "3.1.25.20": "0", + "3.1.25.21": "0", + "3.1.25.22": "0", + "3.1.25.23": "0", + "3.1.25.24": "0", + "3.1.25.25": "0", + "3.1.25.26": "0", + "3.1.25.27": "0", + "3.1.26.1": "2", + "3.1.26.2": "2", + "3.1.26.3": "2", + "3.1.26.4": "2", + "3.1.26.5": "2", + "3.1.26.6": "2", + "3.1.26.7": "2", + "3.1.26.8": "2", + "3.1.26.9": "2", + "3.1.26.10": "2", + "3.1.26.11": "2", + "3.1.26.12": "2", + "3.1.26.13": "2", + "3.1.26.14": "2", + "3.1.26.15": "2", + "3.1.26.16": "2", + "3.1.26.17": "2", + "3.1.26.18": "2", + "3.1.26.19": "2", + "3.1.26.20": "2", + "3.1.26.21": "2", + "3.1.26.22": "2", + "3.1.26.23": "2", + "3.1.26.24": "2", + "3.1.26.25": "2", + "3.1.26.26": "2", + "3.1.26.27": "2", + "3.1.27.1": "5", + "3.1.27.2": "5", + "3.1.27.3": "5", + "3.1.27.4": "5", + "3.1.27.5": "1", + "3.1.27.6": "5", + "3.1.27.7": "5", + "3.1.27.8": "5", + "3.1.27.9": "5", + "3.1.27.10": "5", + "3.1.27.11": "5", + "3.1.27.12": "5", + "3.1.27.13": "5", + "3.1.27.14": "5", + "3.1.27.15": "5", + "3.1.27.16": "5", + "3.1.27.17": "5", + "3.1.27.18": "1", + "3.1.27.19": "5", + "3.1.27.20": "5", + "3.1.27.21": "5", + "3.1.27.22": "5", + "3.1.27.23": "1", + "3.1.27.24": "1", + "3.1.27.25": "1", + "3.1.27.26": "1", + "3.1.27.27": "5", + "3.1.28.1": "2", + "3.1.28.2": "1", + "3.1.28.3": "2", + "3.1.28.4": "1", + "3.1.28.5": "2", + "3.1.28.6": "2", + "3.1.28.7": "1", + "3.1.28.8": "1", + "3.1.28.9": "1", + "3.1.28.10": "2", + "3.1.28.11": "2", + "3.1.28.12": "2", + "3.1.28.13": "2", + "3.1.28.14": "2", + "3.1.28.15": "2", + "3.1.28.16": "2", + "3.1.28.17": "2", + "3.1.28.18": "2", + "3.1.28.19": "2", + "3.1.28.20": "2", + "3.1.28.21": "1", + "3.1.28.22": "2", + "3.1.28.23": "2", + "3.1.28.24": "2", + "3.1.28.25": "2", + "3.1.28.26": "2", + "3.1.28.27": "2", + "3.1.29.1": "00 00 00 00 00 00", + "3.1.29.2": "FF FF FF FF FF FF", + "3.1.29.3": "00 00 00 00 00 00", + "3.1.29.4": "00 23 3E 82 15 73", + "3.1.29.5": "00 00 00 00 00 00", + "3.1.29.6": "00 00 00 00 00 00", + "3.1.29.7": "01 80 C2 00 00 00", + "3.1.29.8": "01 00 0C CC CC CD", + "3.1.29.9": "00 15 AD 01 01 01", + "3.1.29.10": "00 00 00 00 00 00", + "3.1.29.11": "00 00 00 00 00 00", + "3.1.29.12": "00 00 00 00 00 00", + "3.1.29.13": "00 00 00 00 00 00", + "3.1.29.14": "00 00 00 00 00 00", + "3.1.29.15": "00 00 00 00 00 00", + "3.1.29.16": "00 00 00 00 00 00", + "3.1.29.17": "00 00 00 00 00 00", + "3.1.29.18": "00 00 00 00 00 00", + "3.1.29.19": "00 00 00 00 00 00", + "3.1.29.20": "00 00 00 00 00 00", + "3.1.29.21": "50 40 61 85 DE 68", + "3.1.29.22": "00 00 00 00 00 00", + "3.1.29.23": "00 00 00 00 00 00", + "3.1.29.24": "00 00 00 00 00 00", + "3.1.29.25": "00 00 00 00 00 00", + "3.1.29.26": "00 00 00 00 00 00", + "3.1.29.27": "00 00 00 00 00 00", + "3.1.30.1": "48", + "3.1.30.2": "48", + "3.1.30.3": "48", + "3.1.30.4": "48", + "3.1.30.5": "48", + "3.1.30.6": "48", + "3.1.30.7": "48", + "3.1.30.8": "48", + "3.1.30.9": "48", + "3.1.30.10": "48", + "3.1.30.11": "48", + "3.1.30.12": "48", + "3.1.30.13": "48", + "3.1.30.14": "48", + "3.1.30.15": "48", + "3.1.30.16": "48", + "3.1.30.17": "48", + "3.1.30.18": "48", + "3.1.30.19": "48", + "3.1.30.20": "48", + "3.1.30.21": "48", + "3.1.30.22": "48", + "3.1.30.23": "48", + "3.1.30.24": "48", + "3.1.30.25": "48", + "3.1.30.26": "48", + "3.1.30.27": "48", + "3.1.31.1": "2", + "3.1.31.2": "2", + "3.1.31.3": "1", + "3.1.31.4": "2", + "3.1.31.5": "2", + "3.1.31.6": "2", + "3.1.31.7": "2", + "3.1.31.8": "2", + "3.1.31.9": "2", + "3.1.31.10": "1", + "3.1.31.11": "2", + "3.1.31.12": "2", + "3.1.31.13": "2", + "3.1.31.14": "2", + "3.1.31.15": "2", + "3.1.31.16": "2", + "3.1.31.17": "2", + "3.1.31.18": "2", + "3.1.31.19": "2", + "3.1.31.20": "2", + "3.1.31.21": "2", + "3.1.31.22": "1", + "3.1.31.23": "2", + "3.1.31.24": "2", + "3.1.31.25": "2", + "3.1.31.26": "2", + "3.1.31.27": "2", + "3.1.32.1": "00 00 00 00 00 00", + "3.1.32.2": "00 00 00 00 00 00", + "3.1.32.3": "00 23 3E 82 15 73", + "3.1.32.4": "00 00 00 00 00 00", + "3.1.32.5": "00 00 00 00 00 00", + "3.1.32.6": "00 00 00 00 00 00", + "3.1.32.7": "00 00 00 00 00 00", + "3.1.32.8": "00 00 00 00 00 00", + "3.1.32.9": "00 00 00 00 00 00", + "3.1.32.10": "00 15 AD 01 01 01", + "3.1.32.11": "00 00 00 00 00 00", + "3.1.32.12": "00 00 00 00 00 00", + "3.1.32.13": "00 00 00 00 00 00", + "3.1.32.14": "00 00 00 00 00 00", + "3.1.32.15": "00 00 00 00 00 00", + "3.1.32.16": "00 00 00 00 00 00", + "3.1.32.17": "00 00 00 00 00 00", + "3.1.32.18": "00 00 00 00 00 00", + "3.1.32.19": "00 00 00 00 00 00", + "3.1.32.20": "00 00 00 00 00 00", + "3.1.32.21": "00 00 00 00 00 00", + "3.1.32.22": "50 40 61 85 DE 68", + "3.1.32.23": "00 00 00 00 00 00", + "3.1.32.24": "00 00 00 00 00 00", + "3.1.32.25": "00 00 00 00 00 00", + "3.1.32.26": "00 00 00 00 00 00", + "3.1.32.27": "00 00 00 00 00 00", + "3.1.33.1": "48", + "3.1.33.2": "48", + "3.1.33.3": "48", + "3.1.33.4": "48", + "3.1.33.5": "48", + "3.1.33.6": "48", + "3.1.33.7": "48", + "3.1.33.8": "48", + "3.1.33.9": "48", + "3.1.33.10": "48", + "3.1.33.11": "48", + "3.1.33.12": "48", + "3.1.33.13": "48", + "3.1.33.14": "48", + "3.1.33.15": "48", + "3.1.33.16": "48", + "3.1.33.17": "48", + "3.1.33.18": "48", + "3.1.33.19": "48", + "3.1.33.20": "48", + "3.1.33.21": "48", + "3.1.33.22": "48", + "3.1.33.23": "48", + "3.1.33.24": "48", + "3.1.33.25": "48", + "3.1.33.26": "48", + "3.1.33.27": "48", + "3.1.34.1": "2", + "3.1.34.2": "1", + "3.1.34.3": "2", + "3.1.34.4": "2", + "3.1.34.5": "2", + "3.1.34.6": "2", + "3.1.34.7": "2", + "3.1.34.8": "2", + "3.1.34.9": "2", + "3.1.34.10": "2", + "3.1.34.11": "1", + "3.1.34.12": "2", + "3.1.34.13": "2", + "3.1.34.14": "2", + "3.1.34.15": "2", + "3.1.34.16": "2", + "3.1.34.17": "2", + "3.1.34.18": "2", + "3.1.34.19": "2", + "3.1.34.20": "2", + "3.1.34.21": "2", + "3.1.34.22": "2", + "3.1.34.23": "2", + "3.1.34.24": "2", + "3.1.34.25": "2", + "3.1.34.26": "2", + "3.1.34.27": "2", + "3.1.35.1": "0", + "3.1.35.2": "35068", + "3.1.35.3": "2048", + "3.1.35.4": "2048", + "3.1.35.5": "2048", + "3.1.35.6": "0", + "3.1.35.7": "0", + "3.1.35.8": "0", + "3.1.35.9": "0", + "3.1.35.10": "0", + "3.1.35.11": "36864", + "3.1.35.12": "0", + "3.1.35.13": "0", + "3.1.35.14": "0", + "3.1.35.15": "0", + "3.1.35.16": "0", + "3.1.35.17": "0", + "3.1.35.18": "2048", + "3.1.35.19": "2048", + "3.1.35.20": "2048", + "3.1.35.21": "2048", + "3.1.35.22": "2048", + "3.1.35.23": "2048", + "3.1.35.24": "2048", + "3.1.35.25": "2048", + "3.1.35.26": "2048", + "3.1.35.27": "2048", + "3.1.36.1": "2", + "3.1.36.2": "2", + "3.1.36.3": "2", + "3.1.36.4": "2", + "3.1.36.5": "2", + "3.1.36.6": "2", + "3.1.36.7": "2", + "3.1.36.8": "2", + "3.1.36.9": "2", + "3.1.36.10": "2", + "3.1.36.11": "2", + "3.1.36.12": "2", + "3.1.36.13": "2", + "3.1.36.14": "2", + "3.1.36.15": "2", + "3.1.36.16": "2", + "3.1.36.17": "2", + "3.1.36.18": "2", + "3.1.36.19": "2", + "3.1.36.20": "2", + "3.1.36.21": "2", + "3.1.36.22": "2", + "3.1.36.23": "2", + "3.1.36.24": "2", + "3.1.36.25": "2", + "3.1.36.26": "2", + "3.1.36.27": "2", + "3.1.37.1": "1", + "3.1.37.2": "1", + "3.1.37.3": "1", + "3.1.37.4": "1", + "3.1.37.5": "1", + "3.1.37.6": "1", + "3.1.37.7": "1", + "3.1.37.8": "1", + "3.1.37.9": "1", + "3.1.37.10": "1", + "3.1.37.11": "1", + "3.1.37.12": "1", + "3.1.37.13": "1", + "3.1.37.14": "1", + "3.1.37.15": "1", + "3.1.37.16": "1", + "3.1.37.17": "1", + "3.1.37.18": "1", + "3.1.37.19": "1", + "3.1.37.20": "1", + "3.1.37.21": "1", + "3.1.37.22": "1", + "3.1.37.23": "1", + "3.1.37.24": "1", + "3.1.37.25": "1", + "3.1.37.26": "1", + "3.1.37.27": "1", + "3.1.38.1": "0", + "3.1.38.2": "0", + "3.1.38.3": "0", + "3.1.38.4": "0", + "3.1.38.5": "0", + "3.1.38.6": "0", + "3.1.38.7": "0", + "3.1.38.8": "0", + "3.1.38.9": "0", + "3.1.38.10": "0", + "3.1.38.11": "0", + "3.1.38.12": "0", + "3.1.38.13": "0", + "3.1.38.14": "0", + "3.1.38.15": "0", + "3.1.38.16": "0", + "3.1.38.17": "0", + "3.1.38.18": "0", + "3.1.38.19": "0", + "3.1.38.20": "0", + "3.1.38.21": "0", + "3.1.38.22": "0", + "3.1.38.23": "0", + "3.1.38.24": "0", + "3.1.38.25": "0", + "3.1.38.26": "0", + "3.1.38.27": "0", + "3.1.39.1": "0", + "3.1.39.2": "0", + "3.1.39.3": "0", + "3.1.39.4": "0", + "3.1.39.5": "0", + "3.1.39.6": "0", + "3.1.39.7": "0", + "3.1.39.8": "0", + "3.1.39.9": "0", + "3.1.39.10": "0", + "3.1.39.11": "0", + "3.1.39.12": "0", + "3.1.39.13": "0", + "3.1.39.14": "0", + "3.1.39.15": "0", + "3.1.39.16": "0", + "3.1.39.17": "0", + "3.1.39.18": "0", + "3.1.39.19": "0", + "3.1.39.20": "0", + "3.1.39.21": "0", + "3.1.39.22": "0", + "3.1.39.23": "0", + "3.1.39.24": "0", + "3.1.39.25": "0", + "3.1.39.26": "0", + "3.1.39.27": "0", + "3.1.40.1": "3", + "3.1.40.2": "3", + "3.1.40.3": "3", + "3.1.40.4": "3", + "3.1.40.5": "3", + "3.1.40.6": "3", + "3.1.40.7": "3", + "3.1.40.8": "3", + "3.1.40.9": "3", + "3.1.40.10": "3", + "3.1.40.11": "3", + "3.1.40.12": "3", + "3.1.40.13": "3", + "3.1.40.14": "3", + "3.1.40.15": "3", + "3.1.40.16": "3", + "3.1.40.17": "3", + "3.1.40.18": "3", + "3.1.40.19": "3", + "3.1.40.20": "3", + "3.1.40.21": "3", + "3.1.40.22": "3", + "3.1.40.23": "3", + "3.1.40.24": "3", + "3.1.40.25": "3", + "3.1.40.26": "3", + "3.1.40.27": "3", + "3.1.41.1": "0", + "3.1.41.2": "0", + "3.1.41.3": "0", + "3.1.41.4": "0", + "3.1.41.5": "0", + "3.1.41.6": "0", + "3.1.41.7": "0", + "3.1.41.8": "0", + "3.1.41.9": "0", + "3.1.41.10": "0", + "3.1.41.11": "0", + "3.1.41.12": "0", + "3.1.41.13": "0", + "3.1.41.14": "0", + "3.1.41.15": "0", + "3.1.41.16": "0", + "3.1.41.17": "0", + "3.1.41.18": "0", + "3.1.41.19": "0", + "3.1.41.20": "0", + "3.1.41.21": "0", + "3.1.41.22": "0", + "3.1.41.23": "0", + "3.1.41.24": "0", + "3.1.41.25": "0", + "3.1.41.26": "0", + "3.1.41.27": "0", + "3.1.42.1": "0", + "3.1.42.2": "0", + "3.1.42.3": "0", + "3.1.42.4": "0", + "3.1.42.5": "0", + "3.1.42.6": "0", + "3.1.42.7": "0", + "3.1.42.8": "0", + "3.1.42.9": "0", + "3.1.42.10": "0", + "3.1.42.11": "0", + "3.1.42.12": "0", + "3.1.42.13": "0", + "3.1.42.14": "0", + "3.1.42.15": "0", + "3.1.42.16": "0", + "3.1.42.17": "0", + "3.1.42.18": "0", + "3.1.42.19": "0", + "3.1.42.20": "0", + "3.1.42.21": "0", + "3.1.42.22": "0", + "3.1.42.23": "0", + "3.1.42.24": "0", + "3.1.42.25": "0", + "3.1.42.26": "0", + "3.1.42.27": "0", + "3.1.43.1": "3", + "3.1.43.2": "3", + "3.1.43.3": "3", + "3.1.43.4": "3", + "3.1.43.5": "3", + "3.1.43.6": "3", + "3.1.43.7": "3", + "3.1.43.8": "3", + "3.1.43.9": "3", + "3.1.43.10": "3", + "3.1.43.11": "3", + "3.1.43.12": "3", + "3.1.43.13": "3", + "3.1.43.14": "3", + "3.1.43.15": "3", + "3.1.43.16": "3", + "3.1.43.17": "3", + "3.1.43.18": "3", + "3.1.43.19": "3", + "3.1.43.20": "3", + "3.1.43.21": "3", + "3.1.43.22": "3", + "3.1.43.23": "3", + "3.1.43.24": "3", + "3.1.43.25": "3", + "3.1.43.26": "3", + "3.1.43.27": "3", + "4.1.2.6": "ipSrc", + "4.1.2.7": "ipDst", + "4.1.2.8": "ipTTL", + "4.1.2.9": "ipProto", + "4.1.2.10": "ipHL", + "4.1.2.11": "ipDscp", + "4.1.2.12": "ipECN", + "4.1.2.13": "udpSrcPort", + "4.1.2.14": "udpDstPort", + "4.1.2.15": "icmpType", + "4.1.2.16": "icmpCode", + "4.1.3.6": "1", + "4.1.3.7": "1", + "4.1.3.8": "1", + "4.1.3.9": "1", + "4.1.3.10": "1", + "4.1.3.11": "1", + "4.1.3.12": "1", + "4.1.3.13": "1", + "4.1.3.14": "1", + "4.1.3.15": "1", + "4.1.3.16": "1", + "4.1.4.6": "2", + "4.1.4.7": "2", + "4.1.4.8": "2", + "4.1.4.9": "2", + "4.1.4.10": "2", + "4.1.4.11": "2", + "4.1.4.12": "2", + "4.1.4.13": "2", + "4.1.4.14": "2", + "4.1.4.15": "2", + "4.1.4.16": "2", + "4.1.5.6": "0", + "4.1.5.7": "0", + "4.1.5.8": "0", + "4.1.5.9": "0", + "4.1.5.10": "0", + "4.1.5.11": "0", + "4.1.5.12": "0", + "4.1.5.13": "0", + "4.1.5.14": "0", + "4.1.5.15": "0", + "4.1.5.16": "0", + "4.1.6.6": "0", + "4.1.6.7": "0", + "4.1.6.8": "0", + "4.1.6.9": "0", + "4.1.6.10": "0", + "4.1.6.11": "0", + "4.1.6.12": "0", + "4.1.6.13": "0", + "4.1.6.14": "0", + "4.1.6.15": "0", + "4.1.6.16": "0", + "4.1.7.6": "3", + "4.1.7.7": "3", + "4.1.7.8": "3", + "4.1.7.9": "3", + "4.1.7.10": "3", + "4.1.7.11": "3", + "4.1.7.12": "3", + "4.1.7.13": "3", + "4.1.7.14": "3", + "4.1.7.15": "3", + "4.1.7.16": "3", + "4.1.8.6": "2", + "4.1.8.7": "2", + "4.1.8.8": "2", + "4.1.8.9": "2", + "4.1.8.10": "2", + "4.1.8.11": "2", + "4.1.8.12": "2", + "4.1.8.13": "2", + "4.1.8.14": "2", + "4.1.8.15": "2", + "4.1.8.16": "2", + "4.1.9.6": "0", + "4.1.9.7": "0", + "4.1.9.8": "0", + "4.1.9.9": "0", + "4.1.9.10": "0", + "4.1.9.11": "0", + "4.1.9.12": "0", + "4.1.9.13": "0", + "4.1.9.14": "0", + "4.1.9.15": "0", + "4.1.9.16": "0", + "4.1.10.6": "0", + "4.1.10.7": "0", + "4.1.10.8": "0", + "4.1.10.9": "0", + "4.1.10.10": "0", + "4.1.10.11": "0", + "4.1.10.12": "0", + "4.1.10.13": "0", + "4.1.10.14": "0", + "4.1.10.15": "0", + "4.1.10.16": "0", + "4.1.11.6": "3", + "4.1.11.7": "3", + "4.1.11.8": "3", + "4.1.11.9": "3", + "4.1.11.10": "3", + "4.1.11.11": "3", + "4.1.11.12": "3", + "4.1.11.13": "3", + "4.1.11.14": "3", + "4.1.11.15": "3", + "4.1.11.16": "3", + "4.1.12.6": "2", + "4.1.12.7": "2", + "4.1.12.8": "2", + "4.1.12.9": "2", + "4.1.12.10": "2", + "4.1.12.11": "2", + "4.1.12.12": "2", + "4.1.12.13": "2", + "4.1.12.14": "2", + "4.1.12.15": "2", + "4.1.12.16": "2", + "4.1.13.6": "0", + "4.1.13.7": "0", + "4.1.13.8": "0", + "4.1.13.9": "0", + "4.1.13.10": "0", + "4.1.13.11": "0", + "4.1.13.12": "0", + "4.1.13.13": "0", + "4.1.13.14": "0", + "4.1.13.15": "0", + "4.1.13.16": "0", + "4.1.14.6": "2", + "4.1.14.7": "2", + "4.1.14.8": "2", + "4.1.14.9": "2", + "4.1.14.10": "2", + "4.1.14.11": "2", + "4.1.14.12": "2", + "4.1.14.13": "2", + "4.1.14.14": "2", + "4.1.14.15": "2", + "4.1.14.16": "2", + "4.1.15.6": "5", + "4.1.15.7": "5", + "4.1.15.8": "5", + "4.1.15.9": "5", + "4.1.15.10": "5", + "4.1.15.11": "5", + "4.1.15.12": "5", + "4.1.15.13": "5", + "4.1.15.14": "5", + "4.1.15.15": "5", + "4.1.15.16": "5", + "4.1.16.6": "2", + "4.1.16.7": "2", + "4.1.16.8": "2", + "4.1.16.9": "2", + "4.1.16.10": "2", + "4.1.16.11": "2", + "4.1.16.12": "2", + "4.1.16.13": "2", + "4.1.16.14": "2", + "4.1.16.15": "2", + "4.1.16.16": "2", + "4.1.17.6": "0", + "4.1.17.7": "0", + "4.1.17.8": "0", + "4.1.17.9": "0", + "4.1.17.10": "0", + "4.1.17.11": "0", + "4.1.17.12": "0", + "4.1.17.13": "0", + "4.1.17.14": "0", + "4.1.17.15": "0", + "4.1.17.16": "0", + "4.1.18.6": "0", + "4.1.18.7": "0", + "4.1.18.8": "0", + "4.1.18.9": "0", + "4.1.18.10": "0", + "4.1.18.11": "0", + "4.1.18.12": "0", + "4.1.18.13": "0", + "4.1.18.14": "0", + "4.1.18.15": "0", + "4.1.18.16": "0", + "4.1.19.6": "3", + "4.1.19.7": "3", + "4.1.19.8": "3", + "4.1.19.9": "3", + "4.1.19.10": "3", + "4.1.19.11": "3", + "4.1.19.12": "3", + "4.1.19.13": "3", + "4.1.19.14": "3", + "4.1.19.15": "3", + "4.1.19.16": "3", + "4.1.20.6": "2", + "4.1.20.7": "2", + "4.1.20.8": "2", + "4.1.20.9": "2", + "4.1.20.10": "2", + "4.1.20.11": "2", + "4.1.20.12": "2", + "4.1.20.13": "2", + "4.1.20.14": "2", + "4.1.20.15": "2", + "4.1.20.16": "2", + "4.1.21.6": "0", + "4.1.21.7": "0", + "4.1.21.8": "0", + "4.1.21.9": "0", + "4.1.21.10": "0", + "4.1.21.11": "0", + "4.1.21.12": "0", + "4.1.21.13": "0", + "4.1.21.14": "0", + "4.1.21.15": "0", + "4.1.21.16": "0", + "4.1.22.6": "0", + "4.1.22.7": "0", + "4.1.22.8": "0", + "4.1.22.9": "0", + "4.1.22.10": "0", + "4.1.22.11": "0", + "4.1.22.12": "0", + "4.1.22.13": "0", + "4.1.22.14": "0", + "4.1.22.15": "0", + "4.1.22.16": "0", + "4.1.23.6": "3", + "4.1.23.7": "3", + "4.1.23.8": "3", + "4.1.23.9": "3", + "4.1.23.10": "3", + "4.1.23.11": "3", + "4.1.23.12": "3", + "4.1.23.13": "3", + "4.1.23.14": "3", + "4.1.23.15": "3", + "4.1.23.16": "3", + "4.1.24.6": "2", + "4.1.24.7": "2", + "4.1.24.8": "2", + "4.1.24.9": "2", + "4.1.24.10": "2", + "4.1.24.11": "2", + "4.1.24.12": "2", + "4.1.24.13": "2", + "4.1.24.14": "2", + "4.1.24.15": "2", + "4.1.24.16": "2", + "4.1.25.6": "0", + "4.1.25.7": "0", + "4.1.25.8": "0", + "4.1.25.9": "0", + "4.1.25.10": "0", + "4.1.25.11": "0", + "4.1.25.12": "0", + "4.1.25.13": "0", + "4.1.25.14": "0", + "4.1.25.15": "0", + "4.1.25.16": "0", + "4.1.26.6": "2", + "4.1.26.7": "2", + "4.1.26.8": "2", + "4.1.26.9": "2", + "4.1.26.10": "2", + "4.1.26.11": "2", + "4.1.26.12": "2", + "4.1.26.13": "2", + "4.1.26.14": "2", + "4.1.26.15": "2", + "4.1.26.16": "2", + "4.1.27.6": "5", + "4.1.27.7": "5", + "4.1.27.8": "5", + "4.1.27.9": "5", + "4.1.27.10": "5", + "4.1.27.11": "5", + "4.1.27.12": "5", + "4.1.27.13": "5", + "4.1.27.14": "5", + "4.1.27.15": "5", + "4.1.27.16": "5", + "4.1.28.6": "1", + "4.1.28.7": "2", + "4.1.28.8": "2", + "4.1.28.9": "2", + "4.1.28.10": "2", + "4.1.28.11": "2", + "4.1.28.12": "2", + "4.1.28.13": "2", + "4.1.28.14": "2", + "4.1.28.15": "2", + "4.1.28.16": "2", + "4.1.29.6": "192.168.1.1", + "4.1.29.7": "0.0.0.0", + "4.1.29.8": "0.0.0.0", + "4.1.29.9": "0.0.0.0", + "4.1.29.10": "0.0.0.0", + "4.1.29.11": "0.0.0.0", + "4.1.29.12": "0.0.0.0", + "4.1.29.13": "0.0.0.0", + "4.1.29.14": "0.0.0.0", + "4.1.29.15": "0.0.0.0", + "4.1.29.16": "0.0.0.0", + "4.1.30.6": "255.255.255.255", + "4.1.30.7": "255.255.255.255", + "4.1.30.8": "255.255.255.255", + "4.1.30.9": "255.255.255.255", + "4.1.30.10": "255.255.255.255", + "4.1.30.11": "255.255.255.255", + "4.1.30.12": "255.255.255.255", + "4.1.30.13": "255.255.255.255", + "4.1.30.14": "255.255.255.255", + "4.1.30.15": "255.255.255.255", + "4.1.30.16": "255.255.255.255", + "4.1.31.6": "2", + "4.1.31.7": "1", + "4.1.31.8": "2", + "4.1.31.9": "2", + "4.1.31.10": "2", + "4.1.31.11": "2", + "4.1.31.12": "2", + "4.1.31.13": "2", + "4.1.31.14": "2", + "4.1.31.15": "2", + "4.1.31.16": "2", + "4.1.32.6": "0.0.0.0", + "4.1.32.7": "192.168.1.1", + "4.1.32.8": "0.0.0.0", + "4.1.32.9": "0.0.0.0", + "4.1.32.10": "0.0.0.0", + "4.1.32.11": "0.0.0.0", + "4.1.32.12": "0.0.0.0", + "4.1.32.13": "0.0.0.0", + "4.1.32.14": "0.0.0.0", + "4.1.32.15": "0.0.0.0", + "4.1.32.16": "0.0.0.0", + "4.1.33.6": "255.255.255.255", + "4.1.33.7": "255.255.255.255", + "4.1.33.8": "255.255.255.255", + "4.1.33.9": "255.255.255.255", + "4.1.33.10": "255.255.255.255", + "4.1.33.11": "255.255.255.255", + "4.1.33.12": "255.255.255.255", + "4.1.33.13": "255.255.255.255", + "4.1.33.14": "255.255.255.255", + "4.1.33.15": "255.255.255.255", + "4.1.33.16": "255.255.255.255", + "4.1.34.6": "2", + "4.1.34.7": "2", + "4.1.34.8": "2", + "4.1.34.9": "1", + "4.1.34.10": "2", + "4.1.34.11": "2", + "4.1.34.12": "2", + "4.1.34.13": "1", + "4.1.34.14": "1", + "4.1.34.15": "1", + "4.1.34.16": "1", + "4.1.35.6": "0", + "4.1.35.7": "17", + "4.1.35.8": "17", + "4.1.35.9": "89", + "4.1.35.10": "17", + "4.1.35.11": "17", + "4.1.35.12": "17", + "4.1.35.13": "17", + "4.1.35.14": "17", + "4.1.35.15": "1", + "4.1.35.16": "1", + "4.1.36.6": "2", + "4.1.36.7": "2", + "4.1.36.8": "1", + "4.1.36.9": "2", + "4.1.36.10": "2", + "4.1.36.11": "2", + "4.1.36.12": "2", + "4.1.36.13": "2", + "4.1.36.14": "2", + "4.1.36.15": "2", + "4.1.36.16": "2", + "4.1.37.6": "0", + "4.1.37.7": "0", + "4.1.37.8": "255", + "4.1.37.9": "0", + "4.1.37.10": "0", + "4.1.37.11": "0", + "4.1.37.12": "0", + "4.1.37.13": "0", + "4.1.37.14": "0", + "4.1.37.15": "0", + "4.1.37.16": "0", + "4.1.38.6": "2", + "4.1.38.7": "2", + "4.1.38.8": "2", + "4.1.38.9": "2", + "4.1.38.10": "1", + "4.1.38.11": "2", + "4.1.38.12": "2", + "4.1.38.13": "2", + "4.1.38.14": "2", + "4.1.38.15": "2", + "4.1.38.16": "2", + "4.1.39.6": "5", + "4.1.39.7": "5", + "4.1.39.8": "5", + "4.1.39.9": "5", + "4.1.39.10": "6", + "4.1.39.11": "5", + "4.1.39.12": "5", + "4.1.39.13": "5", + "4.1.39.14": "5", + "4.1.39.15": "5", + "4.1.39.16": "5", + "4.1.40.6": "2", + "4.1.40.7": "2", + "4.1.40.8": "2", + "4.1.40.9": "2", + "4.1.40.10": "2", + "4.1.40.11": "1", + "4.1.40.12": "2", + "4.1.40.13": "2", + "4.1.40.14": "2", + "4.1.40.15": "2", + "4.1.40.16": "2", + "4.1.41.6": "1", + "4.1.41.7": "1", + "4.1.41.8": "1", + "4.1.41.9": "1", + "4.1.41.10": "1", + "4.1.41.11": "1", + "4.1.41.12": "1", + "4.1.41.13": "1", + "4.1.41.14": "1", + "4.1.41.15": "1", + "4.1.41.16": "1", + "4.1.42.6": "0", + "4.1.42.7": "0", + "4.1.42.8": "0", + "4.1.42.9": "0", + "4.1.42.10": "0", + "4.1.42.11": "32", + "4.1.42.12": "0", + "4.1.42.13": "0", + "4.1.42.14": "0", + "4.1.42.15": "0", + "4.1.42.16": "0", + "4.1.43.6": "0", + "4.1.43.7": "0", + "4.1.43.8": "0", + "4.1.43.9": "0", + "4.1.43.10": "0", + "4.1.43.11": "0", + "4.1.43.12": "0", + "4.1.43.13": "0", + "4.1.43.14": "0", + "4.1.43.15": "0", + "4.1.43.16": "0", + "4.1.44.6": "3", + "4.1.44.7": "3", + "4.1.44.8": "3", + "4.1.44.9": "3", + "4.1.44.10": "3", + "4.1.44.11": "3", + "4.1.44.12": "3", + "4.1.44.13": "3", + "4.1.44.14": "3", + "4.1.44.15": "3", + "4.1.44.16": "3", + "4.1.45.6": "0", + "4.1.45.7": "0", + "4.1.45.8": "0", + "4.1.45.9": "0", + "4.1.45.10": "0", + "4.1.45.11": "0", + "4.1.45.12": "0", + "4.1.45.13": "0", + "4.1.45.14": "0", + "4.1.45.15": "0", + "4.1.45.16": "0", + "4.1.46.6": "0", + "4.1.46.7": "0", + "4.1.46.8": "0", + "4.1.46.9": "0", + "4.1.46.10": "0", + "4.1.46.11": "0", + "4.1.46.12": "0", + "4.1.46.13": "0", + "4.1.46.14": "0", + "4.1.46.15": "0", + "4.1.46.16": "0", + "4.1.47.6": "3", + "4.1.47.7": "3", + "4.1.47.8": "3", + "4.1.47.9": "3", + "4.1.47.10": "3", + "4.1.47.11": "3", + "4.1.47.12": "3", + "4.1.47.13": "3", + "4.1.47.14": "3", + "4.1.47.15": "3", + "4.1.47.16": "3", + "4.1.48.6": "2", + "4.1.48.7": "2", + "4.1.48.8": "2", + "4.1.48.9": "2", + "4.1.48.10": "2", + "4.1.48.11": "2", + "4.1.48.12": "1", + "4.1.48.13": "2", + "4.1.48.14": "2", + "4.1.48.15": "2", + "4.1.48.16": "2", + "4.1.49.6": "0", + "4.1.49.7": "0", + "4.1.49.8": "0", + "4.1.49.9": "0", + "4.1.49.10": "0", + "4.1.49.11": "0", + "4.1.49.12": "2", + "4.1.49.13": "0", + "4.1.49.14": "0", + "4.1.49.15": "0", + "4.1.49.16": "0", + "4.1.50.6": "2", + "4.1.50.7": "2", + "4.1.50.8": "2", + "4.1.50.9": "2", + "4.1.50.10": "2", + "4.1.50.11": "2", + "4.1.50.12": "2", + "4.1.50.13": "1", + "4.1.50.14": "2", + "4.1.50.15": "2", + "4.1.50.16": "2", + "4.1.51.6": "0", + "4.1.51.7": "0", + "4.1.51.8": "0", + "4.1.51.9": "0", + "4.1.51.10": "0", + "4.1.51.11": "0", + "4.1.51.12": "0", + "4.1.51.13": "69", + "4.1.51.14": "0", + "4.1.51.15": "0", + "4.1.51.16": "0", + "4.1.52.6": "2", + "4.1.52.7": "2", + "4.1.52.8": "2", + "4.1.52.9": "2", + "4.1.52.10": "2", + "4.1.52.11": "2", + "4.1.52.12": "2", + "4.1.52.13": "2", + "4.1.52.14": "1", + "4.1.52.15": "2", + "4.1.52.16": "2", + "4.1.53.6": "0", + "4.1.53.7": "0", + "4.1.53.8": "0", + "4.1.53.9": "0", + "4.1.53.10": "0", + "4.1.53.11": "0", + "4.1.53.12": "0", + "4.1.53.13": "0", + "4.1.53.14": "68", + "4.1.53.15": "0", + "4.1.53.16": "0", + "4.1.54.6": "2", + "4.1.54.7": "2", + "4.1.54.8": "2", + "4.1.54.9": "2", + "4.1.54.10": "2", + "4.1.54.11": "2", + "4.1.54.12": "2", + "4.1.54.13": "2", + "4.1.54.14": "2", + "4.1.54.15": "1", + "4.1.54.16": "2", + "4.1.55.6": "0", + "4.1.55.7": "0", + "4.1.55.8": "0", + "4.1.55.9": "0", + "4.1.55.10": "0", + "4.1.55.11": "0", + "4.1.55.12": "0", + "4.1.55.13": "0", + "4.1.55.14": "0", + "4.1.55.15": "5", + "4.1.55.16": "0", + "4.1.56.6": "2", + "4.1.56.7": "2", + "4.1.56.8": "2", + "4.1.56.9": "2", + "4.1.56.10": "2", + "4.1.56.11": "2", + "4.1.56.12": "2", + "4.1.56.13": "2", + "4.1.56.14": "2", + "4.1.56.15": "2", + "4.1.56.16": "1", + "4.1.57.6": "0", + "4.1.57.7": "0", + "4.1.57.8": "0", + "4.1.57.9": "0", + "4.1.57.10": "0", + "4.1.57.11": "0", + "4.1.57.12": "0", + "4.1.57.13": "0", + "4.1.57.14": "0", + "4.1.57.15": "0", + "4.1.57.16": "3", + "4.1.58.6": "0", + "4.1.58.7": "0", + "4.1.58.8": "0", + "4.1.58.9": "0", + "4.1.58.10": "0", + "4.1.58.11": "0", + "4.1.58.12": "0", + "4.1.58.13": "69", + "4.1.58.14": "0", + "4.1.58.15": "0", + "4.1.58.16": "0", + "4.1.59.6": "3", + "4.1.59.7": "3", + "4.1.59.8": "3", + "4.1.59.9": "3", + "4.1.59.10": "3", + "4.1.59.11": "3", + "4.1.59.12": "3", + "4.1.59.13": "3", + "4.1.59.14": "3", + "4.1.59.15": "3", + "4.1.59.16": "3", + "4.1.60.6": "0", + "4.1.60.7": "0", + "4.1.60.8": "0", + "4.1.60.9": "0", + "4.1.60.10": "0", + "4.1.60.11": "0", + "4.1.60.12": "0", + "4.1.60.13": "0", + "4.1.60.14": "68", + "4.1.60.15": "0", + "4.1.60.16": "0", + "4.1.61.6": "3", + "4.1.61.7": "3", + "4.1.61.8": "3", + "4.1.61.9": "3", + "4.1.61.10": "3", + "4.1.61.11": "3", + "4.1.61.12": "3", + "4.1.61.13": "3", + "4.1.61.14": "3", + "4.1.61.15": "3", + "4.1.61.16": "3" + }, + "acdFilterTableTid": { + "1.0": "2", + "2.0": "1" + } + } + }, + "ACD-PAA-MIB": { + "tables": { + "acdPaa": { + "1.1.2.1": "1", + "1.1.2.2": "0", + "1.1.2.3": "1", + "1.1.2.4": "0", + "1.1.3.1": "1", + "1.1.3.2": "2", + "1.1.3.3": "1", + "1.1.3.4": "2", + "1.1.4.1": "10000", + "1.1.4.2": "0", + "1.1.4.3": "10000", + "1.1.4.4": "0", + "1.1.5.1": "1", + "1.1.5.2": "2", + "1.1.5.3": "1", + "1.1.5.4": "2", + "1.1.6.1": "10000", + "1.1.6.2": "0", + "1.1.6.3": "10000", + "1.1.6.4": "0", + "1.1.7.1": "2", + "1.1.7.2": "2", + "1.1.7.3": "2", + "1.1.7.4": "2", + "1.1.8.1": "0", + "1.1.8.2": "0", + "1.1.8.3": "0", + "1.1.8.4": "0", + "1.1.9.1": "2", + "1.1.9.2": "2", + "1.1.9.3": "2", + "1.1.9.4": "2", + "1.1.10.1": "0", + "1.1.10.2": "0", + "1.1.10.3": "0", + "1.1.10.4": "0", + "1.1.11.1": "0", + "1.1.11.2": "0", + "1.1.11.3": "0", + "1.1.11.4": "0", + "1.1.12.1": "2", + "1.1.12.2": "2", + "1.1.12.3": "2", + "1.1.12.4": "2", + "1.1.13.1": "0", + "1.1.13.2": "0", + "1.1.13.3": "0", + "1.1.13.4": "0", + "1.1.14.1": "0", + "1.1.14.2": "0", + "1.1.14.3": "0", + "1.1.14.4": "0", + "1.1.15.1": "0", + "1.1.15.2": "0", + "1.1.15.3": "0", + "1.1.15.4": "0", + "1.1.16.1": "0", + "1.1.16.2": "0", + "1.1.16.3": "0", + "1.1.16.4": "0", + "1.1.17.1": "2", + "1.1.17.2": "2", + "1.1.17.3": "2", + "1.1.17.4": "2", + "1.1.18.1": "0", + "1.1.18.2": "0", + "1.1.18.3": "0", + "1.1.18.4": "0", + "1.1.19.1": "0", + "1.1.19.2": "0", + "1.1.19.3": "0", + "1.1.19.4": "0", + "1.1.20.1": "0", + "1.1.20.2": "0", + "1.1.20.3": "0", + "1.1.20.4": "0", + "1.1.21.1": "0", + "1.1.21.2": "0", + "1.1.21.3": "0", + "1.1.21.4": "0", + "1.1.22.1": "0", + "1.1.22.2": "0", + "1.1.22.3": "0", + "1.1.22.4": "0", + "1.1.23.1": "2", + "1.1.23.2": "2", + "1.1.23.3": "2", + "1.1.23.4": "2", + "1.1.24.1": "0", + "1.1.24.2": "0", + "1.1.24.3": "0", + "1.1.24.4": "0", + "1.1.25.1": "0", + "1.1.25.2": "0", + "1.1.25.3": "0", + "1.1.25.4": "0", + "1.1.26.1": "0", + "1.1.26.2": "0", + "1.1.26.3": "0", + "1.1.26.4": "0", + "1.1.27.1": "0", + "1.1.27.2": "0", + "1.1.27.3": "0", + "1.1.27.4": "0", + "1.1.28.1": "2", + "1.1.28.2": "2", + "1.1.28.3": "2", + "1.1.28.4": "2", + "1.1.29.1": "0", + "1.1.29.2": "0", + "1.1.29.3": "0", + "1.1.29.4": "0", + "1.1.30.1": "0", + "1.1.30.2": "0", + "1.1.30.3": "0", + "1.1.30.4": "0", + "1.1.31.1": "0", + "1.1.31.2": "0", + "1.1.31.3": "0", + "1.1.31.4": "0", + "1.1.32.1": "0", + "1.1.32.2": "0", + "1.1.32.3": "0", + "1.1.32.4": "0", + "1.1.33.1": "0", + "1.1.33.2": "0", + "1.1.33.3": "0", + "1.1.33.4": "0", + "1.1.34.1": "2", + "1.1.34.2": "2", + "1.1.34.3": "2", + "1.1.34.4": "2", + "1.1.35.1": "0", + "1.1.35.2": "0", + "1.1.35.3": "0", + "1.1.35.4": "0", + "1.1.36.1": "0", + "1.1.36.2": "0", + "1.1.36.3": "0", + "1.1.36.4": "0", + "1.1.37.1": "0", + "1.1.37.2": "0", + "1.1.37.3": "0", + "1.1.37.4": "0", + "1.1.38.1": "0", + "1.1.38.2": "0", + "1.1.38.3": "0", + "1.1.38.4": "0", + "1.1.39.1": "2", + "1.1.39.2": "2", + "1.1.39.3": "2", + "1.1.39.4": "2", + "1.1.40.1": "0", + "1.1.40.2": "0", + "1.1.40.3": "0", + "1.1.40.4": "0", + "1.1.41.1": "0", + "1.1.41.2": "0", + "1.1.41.3": "0", + "1.1.41.4": "0", + "1.1.42.1": "0", + "1.1.42.2": "0", + "1.1.42.3": "0", + "1.1.42.4": "0", + "1.1.43.1": "0", + "1.1.43.2": "0", + "1.1.43.3": "0", + "1.1.43.4": "0", + "1.1.44.1": "0", + "1.1.44.2": "0", + "1.1.44.3": "0", + "1.1.44.4": "0", + "1.1.45.1": "2", + "1.1.45.2": "2", + "1.1.45.3": "2", + "1.1.45.4": "2", + "1.1.46.1": "0", + "1.1.46.2": "0", + "1.1.46.3": "0", + "1.1.46.4": "0", + "1.1.47.1": "0", + "1.1.47.2": "0", + "1.1.47.3": "0", + "1.1.47.4": "0", + "1.1.48.1": "0", + "1.1.48.2": "0", + "1.1.48.3": "0", + "1.1.48.4": "0", + "1.1.49.1": "0", + "1.1.49.2": "0", + "1.1.49.3": "0", + "1.1.49.4": "0", + "1.1.50.1": "2", + "1.1.50.2": "2", + "1.1.50.3": "2", + "1.1.50.4": "2", + "1.1.51.1": "0", + "1.1.51.2": "0", + "1.1.51.3": "0", + "1.1.51.4": "0", + "1.1.52.1": "0", + "1.1.52.2": "0", + "1.1.52.3": "0", + "1.1.52.4": "0", + "1.1.53.1": "0", + "1.1.53.2": "0", + "1.1.53.3": "0", + "1.1.53.4": "0", + "1.1.54.1": "0", + "1.1.54.2": "0", + "1.1.54.3": "0", + "1.1.54.4": "0", + "1.1.55.1": "07 B5 05 03 0F 35 00 00 2D 07 00", + "1.1.55.2": "00 00 01 01 00 00 00 00", + "1.1.55.3": "07 B5 05 03 0F 35 00 00 2D 07 00", + "1.1.55.4": "00 00 01 01 00 00 00 00", + "1.1.56.1": "07 B5 05 03 0F 35 00 00 2D 07 00", + "1.1.56.2": "00 00 01 01 00 00 00 00", + "1.1.56.3": "07 B5 05 03 0F 35 00 00 2D 07 00", + "1.1.56.4": "00 00 01 01 00 00 00 00", + "1.1.57.1": "07 B5 05 03 0F 35 00 00 2D 07 00", + "1.1.57.2": "00 00 01 01 00 00 00 00", + "1.1.57.3": "07 B5 05 03 0F 35 00 00 2D 07 00", + "1.1.57.4": "00 00 01 01 00 00 00 00", + "1.1.58.1": "60", + "1.1.58.2": "0", + "1.1.58.3": "60", + "1.1.58.4": "0", + "1.1.59.1": "60", + "1.1.59.2": "0", + "1.1.59.3": "60", + "1.1.59.4": "0", + "1.1.60.1": "0", + "1.1.60.2": "0", + "1.1.60.3": "0", + "1.1.60.4": "0", + "1.1.61.1": "0", + "1.1.61.2": "0", + "1.1.61.3": "0", + "1.1.61.4": "0", + "1.1.62.1": "0", + "1.1.62.2": "0", + "1.1.62.3": "0", + "1.1.62.4": "0", + "1.1.63.1": "0", + "1.1.63.2": "0", + "1.1.63.3": "0", + "1.1.63.4": "0", + "1.1.64.1": "0", + "1.1.64.2": "0", + "1.1.64.3": "0", + "1.1.64.4": "0", + "1.1.65.1": "0", + "1.1.65.2": "0", + "1.1.65.3": "0", + "1.1.65.4": "0", + "1.1.66.1": "0", + "1.1.66.2": "0", + "1.1.66.3": "0", + "1.1.66.4": "0", + "1.1.67.1": "0", + "1.1.67.2": "0", + "1.1.67.3": "0", + "1.1.67.4": "0", + "1.1.68.1": "0", + "1.1.68.2": "0", + "1.1.68.3": "0", + "1.1.68.4": "0", + "1.1.69.1": "0", + "1.1.69.2": "0", + "1.1.69.3": "0", + "1.1.69.4": "0", + "1.1.70.1": "0", + "1.1.70.2": "0", + "1.1.70.3": "0", + "1.1.70.4": "0", + "1.1.71.1": "0", + "1.1.71.2": "0", + "1.1.71.3": "0", + "1.1.71.4": "0", + "1.1.72.1": "0", + "1.1.72.2": "0", + "1.1.72.3": "0", + "1.1.72.4": "0", + "1.1.73.1": "0", + "1.1.73.2": "0", + "1.1.73.3": "0", + "1.1.73.4": "0", + "1.1.74.1": "0", + "1.1.74.2": "0", + "1.1.74.3": "0", + "1.1.74.4": "0", + "1.1.75.1": "0", + "1.1.75.2": "0", + "1.1.75.3": "0", + "1.1.75.4": "0", + "1.1.76.1": "0", + "1.1.76.2": "0", + "1.1.76.3": "0", + "1.1.76.4": "0", + "1.1.77.1": "0", + "1.1.77.2": "0", + "1.1.77.3": "0", + "1.1.77.4": "0", + "1.1.78.1": "0", + "1.1.78.2": "0", + "1.1.78.3": "0", + "1.1.78.4": "0", + "1.1.79.1": "0", + "1.1.79.2": "0", + "1.1.79.3": "0", + "1.1.79.4": "0", + "1.1.80.1": "0", + "1.1.80.2": "0", + "1.1.80.3": "0", + "1.1.80.4": "0", + "1.1.81.1": "0", + "1.1.81.2": "0", + "1.1.81.3": "0", + "1.1.81.4": "0", + "1.1.82.1": "0", + "1.1.82.2": "0", + "1.1.82.3": "0", + "1.1.82.4": "0", + "1.1.83.1": "0", + "1.1.83.2": "0", + "1.1.83.3": "0", + "1.1.83.4": "0", + "1.1.84.1": "0", + "1.1.84.2": "0", + "1.1.84.3": "0", + "1.1.84.4": "0", + "1.1.85.1": "0", + "1.1.85.2": "0", + "1.1.85.3": "0", + "1.1.85.4": "0", + "1.1.86.1": "0", + "1.1.86.2": "0", + "1.1.86.3": "0", + "1.1.86.4": "0", + "1.1.87.1": "0", + "1.1.87.2": "0", + "1.1.87.3": "0", + "1.1.87.4": "0", + "1.1.88.1": "0", + "1.1.88.2": "0", + "1.1.88.3": "0", + "1.1.88.4": "0", + "1.1.89.1": "0", + "1.1.89.2": "0", + "1.1.89.3": "0", + "1.1.89.4": "0", + "1.1.90.1": "0", + "1.1.90.2": "0", + "1.1.90.3": "0", + "1.1.90.4": "0", + "1.1.91.1": "0", + "1.1.91.2": "0", + "1.1.91.3": "0", + "1.1.91.4": "0", + "1.1.92.1": "", + "1.1.92.2": "", + "1.1.92.3": "", + "1.1.92.4": "", + "1.1.93.1": "", + "1.1.93.2": "", + "1.1.93.3": "", + "1.1.93.4": "", + "1.1.94.1": "0", + "1.1.94.2": "0", + "1.1.94.3": "0", + "1.1.94.4": "0", + "1.1.95.1": "0", + "1.1.95.2": "0", + "1.1.95.3": "0", + "1.1.95.4": "0", + "1.1.96.1": "0", + "1.1.96.2": "0", + "1.1.96.3": "0", + "1.1.96.4": "0", + "1.1.97.1": "0", + "1.1.97.2": "0", + "1.1.97.3": "0", + "1.1.97.4": "0", + "1.1.98.1": "1", + "1.1.98.2": "0", + "1.1.98.3": "1", + "1.1.98.4": "0", + "1.1.99.1": "1", + "1.1.99.2": "0", + "1.1.99.3": "1", + "1.1.99.4": "0", + "1.1.100.1": "2", + "1.1.100.2": "0", + "1.1.100.3": "2", + "1.1.100.4": "0", + "1.1.101.1": "60", + "1.1.101.2": "0", + "1.1.101.3": "60", + "1.1.101.4": "0", + "1.1.102.1": "100000000", + "1.1.102.2": "0", + "1.1.102.3": "100000000", + "1.1.102.4": "0", + "1.1.103.1": "100000000", + "1.1.103.2": "0", + "1.1.103.3": "100000000", + "1.1.103.4": "0", + "1.1.104.1": "0", + "1.1.104.2": "0", + "1.1.104.3": "0", + "1.1.104.4": "0", + "1.1.105.1": "0", + "1.1.105.2": "0", + "1.1.105.3": "0", + "1.1.105.4": "0", + "1.1.106.1": "60", + "1.1.106.2": "0", + "1.1.106.3": "60", + "1.1.106.4": "0", + "1.1.107.1": "60", + "1.1.107.2": "0", + "1.1.107.3": "60", + "1.1.107.4": "0", + "1.1.108.1": "0", + "1.1.108.2": "0", + "1.1.108.3": "0", + "1.1.108.4": "0", + "1.1.109.1": "0", + "1.1.109.2": "0", + "1.1.109.3": "0", + "1.1.109.4": "0", + "1.1.110.1": "0", + "1.1.110.2": "0", + "1.1.110.3": "0", + "1.1.110.4": "0", + "1.1.111.1": "0", + "1.1.111.2": "0", + "1.1.111.3": "0", + "1.1.111.4": "0", + "1.1.112.1": "0", + "1.1.112.2": "0", + "1.1.112.3": "0", + "1.1.112.4": "0", + "1.1.113.1": "0", + "1.1.113.2": "0", + "1.1.113.3": "0", + "1.1.113.4": "0", + "1.1.114.1": "0", + "1.1.114.2": "0", + "1.1.114.3": "0", + "1.1.114.4": "0", + "1.1.115.1": "0", + "1.1.115.2": "0", + "1.1.115.3": "0", + "1.1.115.4": "0", + "1.1.116.1": "0", + "1.1.116.2": "0", + "1.1.116.3": "0", + "1.1.116.4": "0", + "1.1.117.1": "0", + "1.1.117.2": "0", + "1.1.117.3": "0", + "1.1.117.4": "0", + "1.1.118.1": "0", + "1.1.118.2": "0", + "1.1.118.3": "0", + "1.1.118.4": "0", + "1.1.119.1": "0", + "1.1.119.2": "0", + "1.1.119.3": "0", + "1.1.119.4": "0", + "1.1.120.1": "0", + "1.1.120.2": "0", + "1.1.120.3": "0", + "1.1.120.4": "0", + "1.1.121.1": "0", + "1.1.121.2": "0", + "1.1.121.3": "0", + "1.1.121.4": "0", + "1.1.122.1": "0", + "1.1.122.2": "0", + "1.1.122.3": "0", + "1.1.122.4": "0", + "1.1.123.1": "0", + "1.1.123.2": "0", + "1.1.123.3": "0", + "1.1.123.4": "0", + "1.1.124.1": "0", + "1.1.124.2": "0", + "1.1.124.3": "0", + "1.1.124.4": "0", + "2.1.1.1": "1", + "2.1.1.2": "2", + "2.1.1.3": "3", + "2.1.1.4": "4", + "2.1.2.1": "1", + "2.1.2.2": "2", + "2.1.2.3": "1", + "2.1.2.4": "2", + "2.1.3.1": "1", + "2.1.3.2": "2", + "2.1.3.3": "1", + "2.1.3.4": "2", + "2.1.4.1": "2", + "2.1.4.2": "2", + "2.1.4.3": "2", + "2.1.4.4": "2", + "2.1.5.1": "2", + "2.1.5.2": "2", + "2.1.5.3": "2", + "2.1.5.4": "2", + "2.1.6.1": "2", + "2.1.6.2": "2", + "2.1.6.3": "2", + "2.1.6.4": "2", + "2.1.7.1": "2", + "2.1.7.2": "2", + "2.1.7.3": "2", + "2.1.7.4": "2", + "2.1.8.1": "2", + "2.1.8.2": "2", + "2.1.8.3": "2", + "2.1.8.4": "2", + "2.1.9.1": "2", + "2.1.9.2": "2", + "2.1.9.3": "2", + "2.1.9.4": "2", + "2.1.10.1": "2", + "2.1.10.2": "2", + "2.1.10.3": "2", + "2.1.10.4": "2", + "2.1.11.1": "2", + "2.1.11.2": "2", + "2.1.11.3": "2", + "2.1.11.4": "2", + "2.1.12.1": "1", + "2.1.12.2": "0", + "2.1.12.3": "1", + "2.1.12.4": "0", + "2.1.13.1": "00:15:AD:65:F4:35", + "2.1.13.2": "00:15:AD:65:F2:A5", + "2.1.13.3": "00:15:AD:65:F4:15", + "2.1.13.4": "00:15:AD:65:F2:A5", + "4.1.1.1": "1", + "4.1.1.2": "2", + "4.1.1.3": "3", + "4.1.1.4": "4", + "4.1.2.1": "PAA_Site573_VL2216", + "4.1.2.2": "PAA_site573_2216_PNAP", + "4.1.2.3": "PAA_Site573_VL2217", + "4.1.2.4": "PAA_site573_2217_PNAP", + "4.1.3.1": "0", + "4.1.3.2": "1", + "4.1.3.3": "0", + "4.1.3.4": "1", + "4.1.4.1": "66", + "4.1.4.2": "66", + "4.1.4.3": "66", + "4.1.4.4": "66", + "4.1.5.1": "1000", + "4.1.5.2": "1000", + "4.1.5.3": "1000", + "4.1.5.4": "1000", + "4.1.6.1": "4", + "4.1.6.2": "4", + "4.1.6.3": "4", + "4.1.6.4": "4", + "4.1.7.1": "60000", + "4.1.7.2": "60000", + "4.1.7.3": "60000", + "4.1.7.4": "60000", + "4.1.8.1": "1000", + "4.1.8.2": "1000", + "4.1.8.3": "1000", + "4.1.8.4": "1000", + "4.1.9.1": "60000", + "4.1.9.2": "60000", + "4.1.9.3": "60000", + "4.1.9.4": "60000", + "4.1.10.1": "10000", + "4.1.10.2": "10000", + "4.1.10.3": "10000", + "4.1.10.4": "10000", + "4.1.11.1": "4", + "4.1.11.2": "4", + "4.1.11.3": "4", + "4.1.11.4": "4", + "4.1.12.1": "2000", + "4.1.12.2": "2000", + "4.1.12.3": "2000", + "4.1.12.4": "2000", + "4.1.13.1": "60000", + "4.1.13.2": "60000", + "4.1.13.3": "60000", + "4.1.13.4": "60000", + "4.1.14.1": "100000", + "4.1.14.2": "100000", + "4.1.14.3": "100000", + "4.1.14.4": "100000", + "4.1.15.1": "4", + "4.1.15.2": "4", + "4.1.15.3": "4", + "4.1.15.4": "4", + "4.1.16.1": "100000", + "4.1.16.2": "100000", + "4.1.16.3": "100000", + "4.1.16.4": "100000", + "4.1.17.1": "10000", + "4.1.17.2": "10000", + "4.1.17.3": "10000", + "4.1.17.4": "10000", + "4.1.18.1": "4", + "4.1.18.2": "4", + "4.1.18.3": "4", + "4.1.18.4": "4", + "4.1.19.1": "10000", + "4.1.19.2": "10000", + "4.1.19.3": "10000", + "4.1.19.4": "10000", + "4.1.20.1": "EVEN_VLAN_UPLINK", + "4.1.20.2": "EVEN_VLAN_UPLINK", + "4.1.20.3": "EVEN_VLAN_UPLINK", + "4.1.20.4": "EVEN_VLAN_UPLINK", + "4.1.21.1": "00 15 AD 65 F4 35", + "4.1.21.2": "00 15 AD 65 F2 A5", + "4.1.21.3": "00 15 AD 65 F4 15", + "4.1.21.4": "00 15 AD 65 F2 A5", + "4.1.22.1": "35068", + "4.1.22.2": "35068", + "4.1.22.3": "35068", + "4.1.22.4": "35068", + "4.1.23.1": "1", + "4.1.23.2": "1", + "4.1.23.3": "1", + "4.1.23.4": "1", + "4.1.24.1": "2216", + "4.1.24.2": "2216", + "4.1.24.3": "2217", + "4.1.24.4": "2217", + "4.1.25.1": "1", + "4.1.25.2": "1", + "4.1.25.3": "1", + "4.1.25.4": "1", + "4.1.26.1": "2573", + "4.1.26.2": "2573", + "4.1.26.3": "3573", + "4.1.26.4": "3573", + "4.1.27.1": "0", + "4.1.27.2": "0", + "4.1.27.3": "0", + "4.1.27.4": "0", + "4.1.28.1": "0", + "4.1.28.2": "0", + "4.1.28.3": "0", + "4.1.28.4": "0", + "4.1.29.1": "50000", + "4.1.29.2": "50000", + "4.1.29.3": "50000", + "4.1.29.4": "50000", + "4.1.30.1": "4", + "4.1.30.2": "4", + "4.1.30.3": "4", + "4.1.30.4": "4", + "4.1.31.1": "50000", + "4.1.31.2": "50000", + "4.1.31.3": "50000", + "4.1.31.4": "50000", + "4.1.32.1": "0", + "4.1.32.2": "0", + "4.1.32.3": "0", + "4.1.32.4": "0", + "4.1.33.1": "1", + "4.1.33.2": "1", + "4.1.33.3": "1", + "4.1.33.4": "1", + "4.1.34.1": "10000000", + "4.1.34.2": "10000000", + "4.1.34.3": "10000000", + "4.1.34.4": "10000000", + "4.1.35.1": "2", + "4.1.35.2": "2", + "4.1.35.3": "2", + "4.1.35.4": "2", + "4.1.36.1": "2", + "4.1.36.2": "2", + "4.1.36.3": "2", + "4.1.36.4": "2", + "4.1.37.1": "0", + "4.1.37.2": "0", + "4.1.37.3": "0", + "4.1.37.4": "0", + "4.1.38.1": "2", + "4.1.38.2": "2", + "4.1.38.3": "2", + "4.1.38.4": "2", + "4.1.39.1": "2", + "4.1.39.2": "2", + "4.1.39.3": "2", + "4.1.39.4": "2", + "4.1.40.1": "0", + "4.1.40.2": "0", + "4.1.40.3": "0", + "4.1.40.4": "0", + "4.1.41.1": "2", + "4.1.41.2": "2", + "4.1.41.3": "2", + "4.1.41.4": "2", + "4.1.42.1": "2", + "4.1.42.2": "2", + "4.1.42.3": "2", + "4.1.42.4": "2", + "4.1.43.1": "0", + "4.1.43.2": "0", + "4.1.43.3": "0", + "4.1.43.4": "0", + "4.1.44.1": "2", + "4.1.44.2": "2", + "4.1.44.3": "2", + "4.1.44.4": "2", + "4.1.45.1": "2", + "4.1.45.2": "2", + "4.1.45.3": "2", + "4.1.45.4": "2", + "4.1.46.1": "0", + "4.1.46.2": "0", + "4.1.46.3": "0", + "4.1.46.4": "0", + "5.1.1.1.1755427": "1", + "5.1.1.1.1755428": "1", + "5.1.1.1.1755429": "1", + "5.1.1.1.1755430": "1", + "5.1.1.1.1755431": "1", + "5.1.1.1.1755432": "1", + "5.1.1.1.1755433": "1", + "5.1.1.1.1755434": "1", + "5.1.1.1.1755435": "1", + "5.1.1.1.1755436": "1", + "5.1.1.1.1755437": "1", + "5.1.1.1.1755438": "1", + "5.1.1.1.1755439": "1", + "5.1.1.1.1755440": "1", + "5.1.1.1.1755441": "1", + "5.1.1.3.1755427": "3", + "5.1.1.3.1755428": "3", + "5.1.1.3.1755429": "3", + "5.1.1.3.1755430": "3", + "5.1.1.3.1755431": "3", + "5.1.1.3.1755432": "3", + "5.1.1.3.1755433": "3", + "5.1.1.3.1755434": "3", + "5.1.1.3.1755435": "3", + "5.1.1.3.1755436": "3", + "5.1.1.3.1755437": "3", + "5.1.1.3.1755438": "3", + "5.1.1.3.1755439": "3", + "5.1.1.3.1755440": "3", + "5.1.1.3.1755441": "3", + "5.1.2.1.1755427": "1755427", + "5.1.2.1.1755428": "1755428", + "5.1.2.1.1755429": "1755429", + "5.1.2.1.1755430": "1755430", + "5.1.2.1.1755431": "1755431", + "5.1.2.1.1755432": "1755432", + "5.1.2.1.1755433": "1755433", + "5.1.2.1.1755434": "1755434", + "5.1.2.1.1755435": "1755435", + "5.1.2.1.1755436": "1755436", + "5.1.2.1.1755437": "1755437", + "5.1.2.1.1755438": "1755438", + "5.1.2.1.1755439": "1755439", + "5.1.2.1.1755440": "1755440", + "5.1.2.1.1755441": "1755441", + "5.1.2.3.1755427": "1755427", + "5.1.2.3.1755428": "1755428", + "5.1.2.3.1755429": "1755429", + "5.1.2.3.1755430": "1755430", + "5.1.2.3.1755431": "1755431", + "5.1.2.3.1755432": "1755432", + "5.1.2.3.1755433": "1755433", + "5.1.2.3.1755434": "1755434", + "5.1.2.3.1755435": "1755435", + "5.1.2.3.1755436": "1755436", + "5.1.2.3.1755437": "1755437", + "5.1.2.3.1755438": "1755438", + "5.1.2.3.1755439": "1755439", + "5.1.2.3.1755440": "1755440", + "5.1.2.3.1755441": "1755441", + "5.1.3.1.1755427": "2", + "5.1.3.1.1755428": "2", + "5.1.3.1.1755429": "2", + "5.1.3.1.1755430": "2", + "5.1.3.1.1755431": "2", + "5.1.3.1.1755432": "2", + "5.1.3.1.1755433": "2", + "5.1.3.1.1755434": "2", + "5.1.3.1.1755435": "2", + "5.1.3.1.1755436": "2", + "5.1.3.1.1755437": "2", + "5.1.3.1.1755438": "2", + "5.1.3.1.1755439": "2", + "5.1.3.1.1755440": "2", + "5.1.3.1.1755441": "2", + "5.1.3.3.1755427": "2", + "5.1.3.3.1755428": "2", + "5.1.3.3.1755429": "2", + "5.1.3.3.1755430": "2", + "5.1.3.3.1755431": "2", + "5.1.3.3.1755432": "2", + "5.1.3.3.1755433": "2", + "5.1.3.3.1755434": "2", + "5.1.3.3.1755435": "2", + "5.1.3.3.1755436": "2", + "5.1.3.3.1755437": "2", + "5.1.3.3.1755438": "2", + "5.1.3.3.1755439": "2", + "5.1.3.3.1755440": "2", + "5.1.3.3.1755441": "2", + "5.1.4.1.1755427": "0", + "5.1.4.1.1755428": "0", + "5.1.4.1.1755429": "0", + "5.1.4.1.1755430": "0", + "5.1.4.1.1755431": "0", + "5.1.4.1.1755432": "0", + "5.1.4.1.1755433": "0", + "5.1.4.1.1755434": "0", + "5.1.4.1.1755435": "0", + "5.1.4.1.1755436": "0", + "5.1.4.1.1755437": "0", + "5.1.4.1.1755438": "0", + "5.1.4.1.1755439": "0", + "5.1.4.1.1755440": "0", + "5.1.4.1.1755441": "0", + "5.1.4.3.1755427": "0", + "5.1.4.3.1755428": "0", + "5.1.4.3.1755429": "0", + "5.1.4.3.1755430": "0", + "5.1.4.3.1755431": "0", + "5.1.4.3.1755432": "0", + "5.1.4.3.1755433": "0", + "5.1.4.3.1755434": "0", + "5.1.4.3.1755435": "0", + "5.1.4.3.1755436": "0", + "5.1.4.3.1755437": "0", + "5.1.4.3.1755438": "0", + "5.1.4.3.1755439": "0", + "5.1.4.3.1755440": "0", + "5.1.4.3.1755441": "0", + "5.1.5.1.1755427": "07 B5 05 03 0F 27 00 00 2D 07 00", + "5.1.5.1.1755428": "07 B5 05 03 0F 28 00 00 2D 07 00", + "5.1.5.1.1755429": "07 B5 05 03 0F 29 00 00 2D 07 00", + "5.1.5.1.1755430": "07 B5 05 03 0F 2A 00 00 2D 07 00", + "5.1.5.1.1755431": "07 B5 05 03 0F 2B 00 00 2D 07 00", + "5.1.5.1.1755432": "07 B5 05 03 0F 2C 00 00 2D 07 00", + "5.1.5.1.1755433": "07 B5 05 03 0F 2D 00 00 2D 07 00", + "5.1.5.1.1755434": "07 B5 05 03 0F 2E 00 00 2D 07 00", + "5.1.5.1.1755435": "07 B5 05 03 0F 2F 00 00 2D 07 00", + "5.1.5.1.1755436": "07 B5 05 03 0F 30 00 00 2D 07 00", + "5.1.5.1.1755437": "07 B5 05 03 0F 31 00 00 2D 07 00", + "5.1.5.1.1755438": "07 B5 05 03 0F 32 00 00 2D 07 00", + "5.1.5.1.1755439": "07 B5 05 03 0F 33 00 00 2D 07 00", + "5.1.5.1.1755440": "07 B5 05 03 0F 34 00 00 2D 07 00", + "5.1.5.1.1755441": "07 B5 05 03 0F 35 00 00 2D 07 00", + "5.1.5.3.1755427": "07 B5 05 03 0F 27 00 00 2D 07 00", + "5.1.5.3.1755428": "07 B5 05 03 0F 28 00 00 2D 07 00", + "5.1.5.3.1755429": "07 B5 05 03 0F 29 00 00 2D 07 00", + "5.1.5.3.1755430": "07 B5 05 03 0F 2A 00 00 2D 07 00", + "5.1.5.3.1755431": "07 B5 05 03 0F 2B 00 00 2D 07 00", + "5.1.5.3.1755432": "07 B5 05 03 0F 2C 00 00 2D 07 00", + "5.1.5.3.1755433": "07 B5 05 03 0F 2D 00 00 2D 07 00", + "5.1.5.3.1755434": "07 B5 05 03 0F 2E 00 00 2D 07 00", + "5.1.5.3.1755435": "07 B5 05 03 0F 2F 00 00 2D 07 00", + "5.1.5.3.1755436": "07 B5 05 03 0F 30 00 00 2D 07 00", + "5.1.5.3.1755437": "07 B5 05 03 0F 31 00 00 2D 07 00", + "5.1.5.3.1755438": "07 B5 05 03 0F 32 00 00 2D 07 00", + "5.1.5.3.1755439": "07 B5 05 03 0F 33 00 00 2D 07 00", + "5.1.5.3.1755440": "07 B5 05 03 0F 34 00 00 2D 07 00", + "5.1.5.3.1755441": "07 B5 05 03 0F 35 00 00 2D 07 00", + "5.1.6.1.1755427": "1", + "5.1.6.1.1755428": "1", + "5.1.6.1.1755429": "1", + "5.1.6.1.1755430": "1", + "5.1.6.1.1755431": "1", + "5.1.6.1.1755432": "1", + "5.1.6.1.1755433": "1", + "5.1.6.1.1755434": "1", + "5.1.6.1.1755435": "1", + "5.1.6.1.1755436": "1", + "5.1.6.1.1755437": "1", + "5.1.6.1.1755438": "1", + "5.1.6.1.1755439": "1", + "5.1.6.1.1755440": "1", + "5.1.6.1.1755441": "1", + "5.1.6.3.1755427": "1", + "5.1.6.3.1755428": "1", + "5.1.6.3.1755429": "1", + "5.1.6.3.1755430": "1", + "5.1.6.3.1755431": "1", + "5.1.6.3.1755432": "1", + "5.1.6.3.1755433": "1", + "5.1.6.3.1755434": "1", + "5.1.6.3.1755435": "1", + "5.1.6.3.1755436": "1", + "5.1.6.3.1755437": "1", + "5.1.6.3.1755438": "1", + "5.1.6.3.1755439": "1", + "5.1.6.3.1755440": "1", + "5.1.6.3.1755441": "1", + "5.1.7.1.1755427": "60", + "5.1.7.1.1755428": "60", + "5.1.7.1.1755429": "60", + "5.1.7.1.1755430": "60", + "5.1.7.1.1755431": "60", + "5.1.7.1.1755432": "60", + "5.1.7.1.1755433": "60", + "5.1.7.1.1755434": "60", + "5.1.7.1.1755435": "60", + "5.1.7.1.1755436": "60", + "5.1.7.1.1755437": "60", + "5.1.7.1.1755438": "60", + "5.1.7.1.1755439": "60", + "5.1.7.1.1755440": "60", + "5.1.7.1.1755441": "60", + "5.1.7.3.1755427": "60", + "5.1.7.3.1755428": "60", + "5.1.7.3.1755429": "60", + "5.1.7.3.1755430": "60", + "5.1.7.3.1755431": "60", + "5.1.7.3.1755432": "60", + "5.1.7.3.1755433": "60", + "5.1.7.3.1755434": "60", + "5.1.7.3.1755435": "60", + "5.1.7.3.1755436": "60", + "5.1.7.3.1755437": "60", + "5.1.7.3.1755438": "60", + "5.1.7.3.1755439": "60", + "5.1.7.3.1755440": "60", + "5.1.7.3.1755441": "60", + "5.1.8.1.1755427": "10000", + "5.1.8.1.1755428": "10000", + "5.1.8.1.1755429": "10000", + "5.1.8.1.1755430": "10000", + "5.1.8.1.1755431": "10000", + "5.1.8.1.1755432": "10000", + "5.1.8.1.1755433": "10000", + "5.1.8.1.1755434": "10000", + "5.1.8.1.1755435": "10000", + "5.1.8.1.1755436": "10000", + "5.1.8.1.1755437": "10000", + "5.1.8.1.1755438": "10000", + "5.1.8.1.1755439": "10000", + "5.1.8.1.1755440": "10000", + "5.1.8.1.1755441": "10000", + "5.1.8.3.1755427": "10000", + "5.1.8.3.1755428": "10000", + "5.1.8.3.1755429": "10000", + "5.1.8.3.1755430": "10000", + "5.1.8.3.1755431": "10000", + "5.1.8.3.1755432": "10000", + "5.1.8.3.1755433": "10000", + "5.1.8.3.1755434": "10000", + "5.1.8.3.1755435": "10000", + "5.1.8.3.1755436": "10000", + "5.1.8.3.1755437": "10000", + "5.1.8.3.1755438": "10000", + "5.1.8.3.1755439": "10000", + "5.1.8.3.1755440": "10000", + "5.1.8.3.1755441": "10000", + "5.1.9.1.1755427": "2", + "5.1.9.1.1755428": "2", + "5.1.9.1.1755429": "2", + "5.1.9.1.1755430": "2", + "5.1.9.1.1755431": "2", + "5.1.9.1.1755432": "2", + "5.1.9.1.1755433": "2", + "5.1.9.1.1755434": "2", + "5.1.9.1.1755435": "2", + "5.1.9.1.1755436": "2", + "5.1.9.1.1755437": "2", + "5.1.9.1.1755438": "2", + "5.1.9.1.1755439": "2", + "5.1.9.1.1755440": "2", + "5.1.9.1.1755441": "2", + "5.1.9.3.1755427": "2", + "5.1.9.3.1755428": "2", + "5.1.9.3.1755429": "2", + "5.1.9.3.1755430": "2", + "5.1.9.3.1755431": "2", + "5.1.9.3.1755432": "2", + "5.1.9.3.1755433": "2", + "5.1.9.3.1755434": "2", + "5.1.9.3.1755435": "2", + "5.1.9.3.1755436": "2", + "5.1.9.3.1755437": "2", + "5.1.9.3.1755438": "2", + "5.1.9.3.1755439": "2", + "5.1.9.3.1755440": "2", + "5.1.9.3.1755441": "2", + "5.1.10.1.1755427": "0", + "5.1.10.1.1755428": "0", + "5.1.10.1.1755429": "0", + "5.1.10.1.1755430": "0", + "5.1.10.1.1755431": "0", + "5.1.10.1.1755432": "0", + "5.1.10.1.1755433": "0", + "5.1.10.1.1755434": "0", + "5.1.10.1.1755435": "0", + "5.1.10.1.1755436": "0", + "5.1.10.1.1755437": "0", + "5.1.10.1.1755438": "0", + "5.1.10.1.1755439": "0", + "5.1.10.1.1755440": "0", + "5.1.10.1.1755441": "0", + "5.1.10.3.1755427": "0", + "5.1.10.3.1755428": "0", + "5.1.10.3.1755429": "0", + "5.1.10.3.1755430": "0", + "5.1.10.3.1755431": "0", + "5.1.10.3.1755432": "0", + "5.1.10.3.1755433": "0", + "5.1.10.3.1755434": "0", + "5.1.10.3.1755435": "0", + "5.1.10.3.1755436": "0", + "5.1.10.3.1755437": "0", + "5.1.10.3.1755438": "0", + "5.1.10.3.1755439": "0", + "5.1.10.3.1755440": "0", + "5.1.10.3.1755441": "0", + "5.1.11.1.1755427": "0", + "5.1.11.1.1755428": "0", + "5.1.11.1.1755429": "0", + "5.1.11.1.1755430": "0", + "5.1.11.1.1755431": "0", + "5.1.11.1.1755432": "0", + "5.1.11.1.1755433": "0", + "5.1.11.1.1755434": "0", + "5.1.11.1.1755435": "0", + "5.1.11.1.1755436": "0", + "5.1.11.1.1755437": "0", + "5.1.11.1.1755438": "0", + "5.1.11.1.1755439": "0", + "5.1.11.1.1755440": "0", + "5.1.11.1.1755441": "0", + "5.1.11.3.1755427": "0", + "5.1.11.3.1755428": "0", + "5.1.11.3.1755429": "0", + "5.1.11.3.1755430": "0", + "5.1.11.3.1755431": "0", + "5.1.11.3.1755432": "0", + "5.1.11.3.1755433": "0", + "5.1.11.3.1755434": "0", + "5.1.11.3.1755435": "0", + "5.1.11.3.1755436": "0", + "5.1.11.3.1755437": "0", + "5.1.11.3.1755438": "0", + "5.1.11.3.1755439": "0", + "5.1.11.3.1755440": "0", + "5.1.11.3.1755441": "0", + "5.1.12.1.1755427": "2", + "5.1.12.1.1755428": "2", + "5.1.12.1.1755429": "2", + "5.1.12.1.1755430": "2", + "5.1.12.1.1755431": "2", + "5.1.12.1.1755432": "2", + "5.1.12.1.1755433": "2", + "5.1.12.1.1755434": "2", + "5.1.12.1.1755435": "2", + "5.1.12.1.1755436": "2", + "5.1.12.1.1755437": "2", + "5.1.12.1.1755438": "2", + "5.1.12.1.1755439": "2", + "5.1.12.1.1755440": "2", + "5.1.12.1.1755441": "2", + "5.1.12.3.1755427": "2", + "5.1.12.3.1755428": "2", + "5.1.12.3.1755429": "2", + "5.1.12.3.1755430": "2", + "5.1.12.3.1755431": "2", + "5.1.12.3.1755432": "2", + "5.1.12.3.1755433": "2", + "5.1.12.3.1755434": "2", + "5.1.12.3.1755435": "2", + "5.1.12.3.1755436": "2", + "5.1.12.3.1755437": "2", + "5.1.12.3.1755438": "2", + "5.1.12.3.1755439": "2", + "5.1.12.3.1755440": "2", + "5.1.12.3.1755441": "2", + "5.1.13.1.1755427": "0", + "5.1.13.1.1755428": "0", + "5.1.13.1.1755429": "0", + "5.1.13.1.1755430": "0", + "5.1.13.1.1755431": "0", + "5.1.13.1.1755432": "0", + "5.1.13.1.1755433": "0", + "5.1.13.1.1755434": "0", + "5.1.13.1.1755435": "0", + "5.1.13.1.1755436": "0", + "5.1.13.1.1755437": "0", + "5.1.13.1.1755438": "0", + "5.1.13.1.1755439": "0", + "5.1.13.1.1755440": "0", + "5.1.13.1.1755441": "0", + "5.1.13.3.1755427": "0", + "5.1.13.3.1755428": "0", + "5.1.13.3.1755429": "0", + "5.1.13.3.1755430": "0", + "5.1.13.3.1755431": "0", + "5.1.13.3.1755432": "0", + "5.1.13.3.1755433": "0", + "5.1.13.3.1755434": "0", + "5.1.13.3.1755435": "0", + "5.1.13.3.1755436": "0", + "5.1.13.3.1755437": "0", + "5.1.13.3.1755438": "0", + "5.1.13.3.1755439": "0", + "5.1.13.3.1755440": "0", + "5.1.13.3.1755441": "0", + "5.1.14.1.1755427": "0", + "5.1.14.1.1755428": "0", + "5.1.14.1.1755429": "0", + "5.1.14.1.1755430": "0", + "5.1.14.1.1755431": "0", + "5.1.14.1.1755432": "0", + "5.1.14.1.1755433": "0", + "5.1.14.1.1755434": "0", + "5.1.14.1.1755435": "0", + "5.1.14.1.1755436": "0", + "5.1.14.1.1755437": "0", + "5.1.14.1.1755438": "0", + "5.1.14.1.1755439": "0", + "5.1.14.1.1755440": "0", + "5.1.14.1.1755441": "0", + "5.1.14.3.1755427": "0", + "5.1.14.3.1755428": "0", + "5.1.14.3.1755429": "0", + "5.1.14.3.1755430": "0", + "5.1.14.3.1755431": "0", + "5.1.14.3.1755432": "0", + "5.1.14.3.1755433": "0", + "5.1.14.3.1755434": "0", + "5.1.14.3.1755435": "0", + "5.1.14.3.1755436": "0", + "5.1.14.3.1755437": "0", + "5.1.14.3.1755438": "0", + "5.1.14.3.1755439": "0", + "5.1.14.3.1755440": "0", + "5.1.14.3.1755441": "0", + "5.1.15.1.1755427": "0", + "5.1.15.1.1755428": "0", + "5.1.15.1.1755429": "0", + "5.1.15.1.1755430": "0", + "5.1.15.1.1755431": "0", + "5.1.15.1.1755432": "0", + "5.1.15.1.1755433": "0", + "5.1.15.1.1755434": "0", + "5.1.15.1.1755435": "0", + "5.1.15.1.1755436": "0", + "5.1.15.1.1755437": "0", + "5.1.15.1.1755438": "0", + "5.1.15.1.1755439": "0", + "5.1.15.1.1755440": "0", + "5.1.15.1.1755441": "0", + "5.1.15.3.1755427": "0", + "5.1.15.3.1755428": "0", + "5.1.15.3.1755429": "0", + "5.1.15.3.1755430": "0", + "5.1.15.3.1755431": "0", + "5.1.15.3.1755432": "0", + "5.1.15.3.1755433": "0", + "5.1.15.3.1755434": "0", + "5.1.15.3.1755435": "0", + "5.1.15.3.1755436": "0", + "5.1.15.3.1755437": "0", + "5.1.15.3.1755438": "0", + "5.1.15.3.1755439": "0", + "5.1.15.3.1755440": "0", + "5.1.15.3.1755441": "0", + "5.1.16.1.1755427": "0", + "5.1.16.1.1755428": "0", + "5.1.16.1.1755429": "0", + "5.1.16.1.1755430": "0", + "5.1.16.1.1755431": "0", + "5.1.16.1.1755432": "0", + "5.1.16.1.1755433": "0", + "5.1.16.1.1755434": "0", + "5.1.16.1.1755435": "0", + "5.1.16.1.1755436": "0", + "5.1.16.1.1755437": "0", + "5.1.16.1.1755438": "0", + "5.1.16.1.1755439": "0", + "5.1.16.1.1755440": "0", + "5.1.16.1.1755441": "0", + "5.1.16.3.1755427": "0", + "5.1.16.3.1755428": "0", + "5.1.16.3.1755429": "0", + "5.1.16.3.1755430": "0", + "5.1.16.3.1755431": "0", + "5.1.16.3.1755432": "0", + "5.1.16.3.1755433": "0", + "5.1.16.3.1755434": "0", + "5.1.16.3.1755435": "0", + "5.1.16.3.1755436": "0", + "5.1.16.3.1755437": "0", + "5.1.16.3.1755438": "0", + "5.1.16.3.1755439": "0", + "5.1.16.3.1755440": "0", + "5.1.16.3.1755441": "0", + "5.1.17.1.1755427": "0", + "5.1.17.1.1755428": "0", + "5.1.17.1.1755429": "0", + "5.1.17.1.1755430": "0", + "5.1.17.1.1755431": "0", + "5.1.17.1.1755432": "0", + "5.1.17.1.1755433": "0", + "5.1.17.1.1755434": "0", + "5.1.17.1.1755435": "0", + "5.1.17.1.1755436": "0", + "5.1.17.1.1755437": "0", + "5.1.17.1.1755438": "0", + "5.1.17.1.1755439": "0", + "5.1.17.1.1755440": "0", + "5.1.17.1.1755441": "0", + "5.1.17.3.1755427": "0", + "5.1.17.3.1755428": "0", + "5.1.17.3.1755429": "0", + "5.1.17.3.1755430": "0", + "5.1.17.3.1755431": "0", + "5.1.17.3.1755432": "0", + "5.1.17.3.1755433": "0", + "5.1.17.3.1755434": "0", + "5.1.17.3.1755435": "0", + "5.1.17.3.1755436": "0", + "5.1.17.3.1755437": "0", + "5.1.17.3.1755438": "0", + "5.1.17.3.1755439": "0", + "5.1.17.3.1755440": "0", + "5.1.17.3.1755441": "0", + "5.1.18.1.1755427": "2", + "5.1.18.1.1755428": "2", + "5.1.18.1.1755429": "2", + "5.1.18.1.1755430": "2", + "5.1.18.1.1755431": "2", + "5.1.18.1.1755432": "2", + "5.1.18.1.1755433": "2", + "5.1.18.1.1755434": "2", + "5.1.18.1.1755435": "2", + "5.1.18.1.1755436": "2", + "5.1.18.1.1755437": "2", + "5.1.18.1.1755438": "2", + "5.1.18.1.1755439": "2", + "5.1.18.1.1755440": "2", + "5.1.18.1.1755441": "2", + "5.1.18.3.1755427": "2", + "5.1.18.3.1755428": "2", + "5.1.18.3.1755429": "2", + "5.1.18.3.1755430": "2", + "5.1.18.3.1755431": "2", + "5.1.18.3.1755432": "2", + "5.1.18.3.1755433": "2", + "5.1.18.3.1755434": "2", + "5.1.18.3.1755435": "2", + "5.1.18.3.1755436": "2", + "5.1.18.3.1755437": "2", + "5.1.18.3.1755438": "2", + "5.1.18.3.1755439": "2", + "5.1.18.3.1755440": "2", + "5.1.18.3.1755441": "2", + "5.1.19.1.1755427": "0", + "5.1.19.1.1755428": "0", + "5.1.19.1.1755429": "0", + "5.1.19.1.1755430": "0", + "5.1.19.1.1755431": "0", + "5.1.19.1.1755432": "0", + "5.1.19.1.1755433": "0", + "5.1.19.1.1755434": "0", + "5.1.19.1.1755435": "0", + "5.1.19.1.1755436": "0", + "5.1.19.1.1755437": "0", + "5.1.19.1.1755438": "0", + "5.1.19.1.1755439": "0", + "5.1.19.1.1755440": "0", + "5.1.19.1.1755441": "0", + "5.1.19.3.1755427": "0", + "5.1.19.3.1755428": "0", + "5.1.19.3.1755429": "0", + "5.1.19.3.1755430": "0", + "5.1.19.3.1755431": "0", + "5.1.19.3.1755432": "0", + "5.1.19.3.1755433": "0", + "5.1.19.3.1755434": "0", + "5.1.19.3.1755435": "0", + "5.1.19.3.1755436": "0", + "5.1.19.3.1755437": "0", + "5.1.19.3.1755438": "0", + "5.1.19.3.1755439": "0", + "5.1.19.3.1755440": "0", + "5.1.19.3.1755441": "0", + "5.1.20.1.1755427": "0", + "5.1.20.1.1755428": "0", + "5.1.20.1.1755429": "0", + "5.1.20.1.1755430": "0", + "5.1.20.1.1755431": "0", + "5.1.20.1.1755432": "0", + "5.1.20.1.1755433": "0", + "5.1.20.1.1755434": "0", + "5.1.20.1.1755435": "0", + "5.1.20.1.1755436": "0", + "5.1.20.1.1755437": "0", + "5.1.20.1.1755438": "0", + "5.1.20.1.1755439": "0", + "5.1.20.1.1755440": "0", + "5.1.20.1.1755441": "0", + "5.1.20.3.1755427": "0", + "5.1.20.3.1755428": "0", + "5.1.20.3.1755429": "0", + "5.1.20.3.1755430": "0", + "5.1.20.3.1755431": "0", + "5.1.20.3.1755432": "0", + "5.1.20.3.1755433": "0", + "5.1.20.3.1755434": "0", + "5.1.20.3.1755435": "0", + "5.1.20.3.1755436": "0", + "5.1.20.3.1755437": "0", + "5.1.20.3.1755438": "0", + "5.1.20.3.1755439": "0", + "5.1.20.3.1755440": "0", + "5.1.20.3.1755441": "0", + "5.1.21.1.1755427": "0", + "5.1.21.1.1755428": "0", + "5.1.21.1.1755429": "0", + "5.1.21.1.1755430": "0", + "5.1.21.1.1755431": "0", + "5.1.21.1.1755432": "0", + "5.1.21.1.1755433": "0", + "5.1.21.1.1755434": "0", + "5.1.21.1.1755435": "0", + "5.1.21.1.1755436": "0", + "5.1.21.1.1755437": "0", + "5.1.21.1.1755438": "0", + "5.1.21.1.1755439": "0", + "5.1.21.1.1755440": "0", + "5.1.21.1.1755441": "0", + "5.1.21.3.1755427": "0", + "5.1.21.3.1755428": "0", + "5.1.21.3.1755429": "0", + "5.1.21.3.1755430": "0", + "5.1.21.3.1755431": "0", + "5.1.21.3.1755432": "0", + "5.1.21.3.1755433": "0", + "5.1.21.3.1755434": "0", + "5.1.21.3.1755435": "0", + "5.1.21.3.1755436": "0", + "5.1.21.3.1755437": "0", + "5.1.21.3.1755438": "0", + "5.1.21.3.1755439": "0", + "5.1.21.3.1755440": "0", + "5.1.21.3.1755441": "0", + "5.1.22.1.1755427": "0", + "5.1.22.1.1755428": "0", + "5.1.22.1.1755429": "0", + "5.1.22.1.1755430": "0", + "5.1.22.1.1755431": "0", + "5.1.22.1.1755432": "0", + "5.1.22.1.1755433": "0", + "5.1.22.1.1755434": "0", + "5.1.22.1.1755435": "0", + "5.1.22.1.1755436": "0", + "5.1.22.1.1755437": "0", + "5.1.22.1.1755438": "0", + "5.1.22.1.1755439": "0", + "5.1.22.1.1755440": "0", + "5.1.22.1.1755441": "0", + "5.1.22.3.1755427": "0", + "5.1.22.3.1755428": "0", + "5.1.22.3.1755429": "0", + "5.1.22.3.1755430": "0", + "5.1.22.3.1755431": "0", + "5.1.22.3.1755432": "0", + "5.1.22.3.1755433": "0", + "5.1.22.3.1755434": "0", + "5.1.22.3.1755435": "0", + "5.1.22.3.1755436": "0", + "5.1.22.3.1755437": "0", + "5.1.22.3.1755438": "0", + "5.1.22.3.1755439": "0", + "5.1.22.3.1755440": "0", + "5.1.22.3.1755441": "0", + "5.1.23.1.1755427": "0", + "5.1.23.1.1755428": "0", + "5.1.23.1.1755429": "0", + "5.1.23.1.1755430": "0", + "5.1.23.1.1755431": "0", + "5.1.23.1.1755432": "0", + "5.1.23.1.1755433": "0", + "5.1.23.1.1755434": "0", + "5.1.23.1.1755435": "0", + "5.1.23.1.1755436": "0", + "5.1.23.1.1755437": "0", + "5.1.23.1.1755438": "0", + "5.1.23.1.1755439": "0", + "5.1.23.1.1755440": "0", + "5.1.23.1.1755441": "0", + "5.1.23.3.1755427": "0", + "5.1.23.3.1755428": "0", + "5.1.23.3.1755429": "0", + "5.1.23.3.1755430": "0", + "5.1.23.3.1755431": "0", + "5.1.23.3.1755432": "0", + "5.1.23.3.1755433": "0", + "5.1.23.3.1755434": "0", + "5.1.23.3.1755435": "0", + "5.1.23.3.1755436": "0", + "5.1.23.3.1755437": "0", + "5.1.23.3.1755438": "0", + "5.1.23.3.1755439": "0", + "5.1.23.3.1755440": "0", + "5.1.23.3.1755441": "0", + "5.1.24.1.1755427": "2", + "5.1.24.1.1755428": "2", + "5.1.24.1.1755429": "2", + "5.1.24.1.1755430": "2", + "5.1.24.1.1755431": "2", + "5.1.24.1.1755432": "2", + "5.1.24.1.1755433": "2", + "5.1.24.1.1755434": "2", + "5.1.24.1.1755435": "2", + "5.1.24.1.1755436": "2", + "5.1.24.1.1755437": "2", + "5.1.24.1.1755438": "2", + "5.1.24.1.1755439": "2", + "5.1.24.1.1755440": "2", + "5.1.24.1.1755441": "2", + "5.1.24.3.1755427": "2", + "5.1.24.3.1755428": "2", + "5.1.24.3.1755429": "2", + "5.1.24.3.1755430": "2", + "5.1.24.3.1755431": "2", + "5.1.24.3.1755432": "2", + "5.1.24.3.1755433": "2", + "5.1.24.3.1755434": "2", + "5.1.24.3.1755435": "2", + "5.1.24.3.1755436": "2", + "5.1.24.3.1755437": "2", + "5.1.24.3.1755438": "2", + "5.1.24.3.1755439": "2", + "5.1.24.3.1755440": "2", + "5.1.24.3.1755441": "2", + "5.1.25.1.1755427": "0", + "5.1.25.1.1755428": "0", + "5.1.25.1.1755429": "0", + "5.1.25.1.1755430": "0", + "5.1.25.1.1755431": "0", + "5.1.25.1.1755432": "0", + "5.1.25.1.1755433": "0", + "5.1.25.1.1755434": "0", + "5.1.25.1.1755435": "0", + "5.1.25.1.1755436": "0", + "5.1.25.1.1755437": "0", + "5.1.25.1.1755438": "0", + "5.1.25.1.1755439": "0", + "5.1.25.1.1755440": "0", + "5.1.25.1.1755441": "0", + "5.1.25.3.1755427": "0", + "5.1.25.3.1755428": "0", + "5.1.25.3.1755429": "0", + "5.1.25.3.1755430": "0", + "5.1.25.3.1755431": "0", + "5.1.25.3.1755432": "0", + "5.1.25.3.1755433": "0", + "5.1.25.3.1755434": "0", + "5.1.25.3.1755435": "0", + "5.1.25.3.1755436": "0", + "5.1.25.3.1755437": "0", + "5.1.25.3.1755438": "0", + "5.1.25.3.1755439": "0", + "5.1.25.3.1755440": "0", + "5.1.25.3.1755441": "0", + "5.1.26.1.1755427": "0", + "5.1.26.1.1755428": "0", + "5.1.26.1.1755429": "0", + "5.1.26.1.1755430": "0", + "5.1.26.1.1755431": "0", + "5.1.26.1.1755432": "0", + "5.1.26.1.1755433": "0", + "5.1.26.1.1755434": "0", + "5.1.26.1.1755435": "0", + "5.1.26.1.1755436": "0", + "5.1.26.1.1755437": "0", + "5.1.26.1.1755438": "0", + "5.1.26.1.1755439": "0", + "5.1.26.1.1755440": "0", + "5.1.26.1.1755441": "0", + "5.1.26.3.1755427": "0", + "5.1.26.3.1755428": "0", + "5.1.26.3.1755429": "0", + "5.1.26.3.1755430": "0", + "5.1.26.3.1755431": "0", + "5.1.26.3.1755432": "0", + "5.1.26.3.1755433": "0", + "5.1.26.3.1755434": "0", + "5.1.26.3.1755435": "0", + "5.1.26.3.1755436": "0", + "5.1.26.3.1755437": "0", + "5.1.26.3.1755438": "0", + "5.1.26.3.1755439": "0", + "5.1.26.3.1755440": "0", + "5.1.26.3.1755441": "0", + "5.1.27.1.1755427": "0", + "5.1.27.1.1755428": "0", + "5.1.27.1.1755429": "0", + "5.1.27.1.1755430": "0", + "5.1.27.1.1755431": "0", + "5.1.27.1.1755432": "0", + "5.1.27.1.1755433": "0", + "5.1.27.1.1755434": "0", + "5.1.27.1.1755435": "0", + "5.1.27.1.1755436": "0", + "5.1.27.1.1755437": "0", + "5.1.27.1.1755438": "0", + "5.1.27.1.1755439": "0", + "5.1.27.1.1755440": "0", + "5.1.27.1.1755441": "0", + "5.1.27.3.1755427": "0", + "5.1.27.3.1755428": "0", + "5.1.27.3.1755429": "0", + "5.1.27.3.1755430": "0", + "5.1.27.3.1755431": "0", + "5.1.27.3.1755432": "0", + "5.1.27.3.1755433": "0", + "5.1.27.3.1755434": "0", + "5.1.27.3.1755435": "0", + "5.1.27.3.1755436": "0", + "5.1.27.3.1755437": "0", + "5.1.27.3.1755438": "0", + "5.1.27.3.1755439": "0", + "5.1.27.3.1755440": "0", + "5.1.27.3.1755441": "0", + "5.1.28.1.1755427": "0", + "5.1.28.1.1755428": "0", + "5.1.28.1.1755429": "0", + "5.1.28.1.1755430": "0", + "5.1.28.1.1755431": "0", + "5.1.28.1.1755432": "0", + "5.1.28.1.1755433": "0", + "5.1.28.1.1755434": "0", + "5.1.28.1.1755435": "0", + "5.1.28.1.1755436": "0", + "5.1.28.1.1755437": "0", + "5.1.28.1.1755438": "0", + "5.1.28.1.1755439": "0", + "5.1.28.1.1755440": "0", + "5.1.28.1.1755441": "0", + "5.1.28.3.1755427": "0", + "5.1.28.3.1755428": "0", + "5.1.28.3.1755429": "0", + "5.1.28.3.1755430": "0", + "5.1.28.3.1755431": "0", + "5.1.28.3.1755432": "0", + "5.1.28.3.1755433": "0", + "5.1.28.3.1755434": "0", + "5.1.28.3.1755435": "0", + "5.1.28.3.1755436": "0", + "5.1.28.3.1755437": "0", + "5.1.28.3.1755438": "0", + "5.1.28.3.1755439": "0", + "5.1.28.3.1755440": "0", + "5.1.28.3.1755441": "0", + "5.1.29.1.1755427": "0", + "5.1.29.1.1755428": "0", + "5.1.29.1.1755429": "0", + "5.1.29.1.1755430": "0", + "5.1.29.1.1755431": "0", + "5.1.29.1.1755432": "0", + "5.1.29.1.1755433": "0", + "5.1.29.1.1755434": "0", + "5.1.29.1.1755435": "0", + "5.1.29.1.1755436": "0", + "5.1.29.1.1755437": "0", + "5.1.29.1.1755438": "0", + "5.1.29.1.1755439": "0", + "5.1.29.1.1755440": "0", + "5.1.29.1.1755441": "0", + "5.1.29.3.1755427": "0", + "5.1.29.3.1755428": "0", + "5.1.29.3.1755429": "0", + "5.1.29.3.1755430": "0", + "5.1.29.3.1755431": "0", + "5.1.29.3.1755432": "0", + "5.1.29.3.1755433": "0", + "5.1.29.3.1755434": "0", + "5.1.29.3.1755435": "0", + "5.1.29.3.1755436": "0", + "5.1.29.3.1755437": "0", + "5.1.29.3.1755438": "0", + "5.1.29.3.1755439": "0", + "5.1.29.3.1755440": "0", + "5.1.29.3.1755441": "0", + "5.1.30.1.1755427": "2", + "5.1.30.1.1755428": "2", + "5.1.30.1.1755429": "2", + "5.1.30.1.1755430": "2", + "5.1.30.1.1755431": "2", + "5.1.30.1.1755432": "2", + "5.1.30.1.1755433": "2", + "5.1.30.1.1755434": "2", + "5.1.30.1.1755435": "2", + "5.1.30.1.1755436": "2", + "5.1.30.1.1755437": "2", + "5.1.30.1.1755438": "2", + "5.1.30.1.1755439": "2", + "5.1.30.1.1755440": "2", + "5.1.30.1.1755441": "2", + "5.1.30.3.1755427": "2", + "5.1.30.3.1755428": "2", + "5.1.30.3.1755429": "2", + "5.1.30.3.1755430": "2", + "5.1.30.3.1755431": "2", + "5.1.30.3.1755432": "2", + "5.1.30.3.1755433": "2", + "5.1.30.3.1755434": "2", + "5.1.30.3.1755435": "2", + "5.1.30.3.1755436": "2", + "5.1.30.3.1755437": "2", + "5.1.30.3.1755438": "2", + "5.1.30.3.1755439": "2", + "5.1.30.3.1755440": "2", + "5.1.30.3.1755441": "2", + "5.1.31.1.1755427": "0", + "5.1.31.1.1755428": "0", + "5.1.31.1.1755429": "0", + "5.1.31.1.1755430": "0", + "5.1.31.1.1755431": "0", + "5.1.31.1.1755432": "0", + "5.1.31.1.1755433": "0", + "5.1.31.1.1755434": "0", + "5.1.31.1.1755435": "0", + "5.1.31.1.1755436": "0", + "5.1.31.1.1755437": "0", + "5.1.31.1.1755438": "0", + "5.1.31.1.1755439": "0", + "5.1.31.1.1755440": "0", + "5.1.31.1.1755441": "0", + "5.1.31.3.1755427": "0", + "5.1.31.3.1755428": "0", + "5.1.31.3.1755429": "0", + "5.1.31.3.1755430": "0", + "5.1.31.3.1755431": "0", + "5.1.31.3.1755432": "0", + "5.1.31.3.1755433": "0", + "5.1.31.3.1755434": "0", + "5.1.31.3.1755435": "0", + "5.1.31.3.1755436": "0", + "5.1.31.3.1755437": "0", + "5.1.31.3.1755438": "0", + "5.1.31.3.1755439": "0", + "5.1.31.3.1755440": "0", + "5.1.31.3.1755441": "0", + "5.1.32.1.1755427": "0", + "5.1.32.1.1755428": "0", + "5.1.32.1.1755429": "0", + "5.1.32.1.1755430": "0", + "5.1.32.1.1755431": "0", + "5.1.32.1.1755432": "0", + "5.1.32.1.1755433": "0", + "5.1.32.1.1755434": "0", + "5.1.32.1.1755435": "0", + "5.1.32.1.1755436": "0", + "5.1.32.1.1755437": "0", + "5.1.32.1.1755438": "0", + "5.1.32.1.1755439": "0", + "5.1.32.1.1755440": "0", + "5.1.32.1.1755441": "0", + "5.1.32.3.1755427": "0", + "5.1.32.3.1755428": "0", + "5.1.32.3.1755429": "0", + "5.1.32.3.1755430": "0", + "5.1.32.3.1755431": "0", + "5.1.32.3.1755432": "0", + "5.1.32.3.1755433": "0", + "5.1.32.3.1755434": "0", + "5.1.32.3.1755435": "0", + "5.1.32.3.1755436": "0", + "5.1.32.3.1755437": "0", + "5.1.32.3.1755438": "0", + "5.1.32.3.1755439": "0", + "5.1.32.3.1755440": "0", + "5.1.32.3.1755441": "0", + "5.1.33.1.1755427": "0", + "5.1.33.1.1755428": "0", + "5.1.33.1.1755429": "0", + "5.1.33.1.1755430": "0", + "5.1.33.1.1755431": "0", + "5.1.33.1.1755432": "0", + "5.1.33.1.1755433": "0", + "5.1.33.1.1755434": "0", + "5.1.33.1.1755435": "0", + "5.1.33.1.1755436": "0", + "5.1.33.1.1755437": "0", + "5.1.33.1.1755438": "0", + "5.1.33.1.1755439": "0", + "5.1.33.1.1755440": "0", + "5.1.33.1.1755441": "0", + "5.1.33.3.1755427": "0", + "5.1.33.3.1755428": "0", + "5.1.33.3.1755429": "0", + "5.1.33.3.1755430": "0", + "5.1.33.3.1755431": "0", + "5.1.33.3.1755432": "0", + "5.1.33.3.1755433": "0", + "5.1.33.3.1755434": "0", + "5.1.33.3.1755435": "0", + "5.1.33.3.1755436": "0", + "5.1.33.3.1755437": "0", + "5.1.33.3.1755438": "0", + "5.1.33.3.1755439": "0", + "5.1.33.3.1755440": "0", + "5.1.33.3.1755441": "0", + "5.1.34.1.1755427": "0", + "5.1.34.1.1755428": "0", + "5.1.34.1.1755429": "0", + "5.1.34.1.1755430": "0", + "5.1.34.1.1755431": "0", + "5.1.34.1.1755432": "0", + "5.1.34.1.1755433": "0", + "5.1.34.1.1755434": "0", + "5.1.34.1.1755435": "0", + "5.1.34.1.1755436": "0", + "5.1.34.1.1755437": "0", + "5.1.34.1.1755438": "0", + "5.1.34.1.1755439": "0", + "5.1.34.1.1755440": "0", + "5.1.34.1.1755441": "0", + "5.1.34.3.1755427": "0", + "5.1.34.3.1755428": "0", + "5.1.34.3.1755429": "0", + "5.1.34.3.1755430": "0", + "5.1.34.3.1755431": "0", + "5.1.34.3.1755432": "0", + "5.1.34.3.1755433": "0", + "5.1.34.3.1755434": "0", + "5.1.34.3.1755435": "0", + "5.1.34.3.1755436": "0", + "5.1.34.3.1755437": "0", + "5.1.34.3.1755438": "0", + "5.1.34.3.1755439": "0", + "5.1.34.3.1755440": "0", + "5.1.34.3.1755441": "0", + "5.1.35.1.1755427": "0", + "5.1.35.1.1755428": "0", + "5.1.35.1.1755429": "0", + "5.1.35.1.1755430": "0", + "5.1.35.1.1755431": "0", + "5.1.35.1.1755432": "0", + "5.1.35.1.1755433": "0", + "5.1.35.1.1755434": "0", + "5.1.35.1.1755435": "0", + "5.1.35.1.1755436": "0", + "5.1.35.1.1755437": "0", + "5.1.35.1.1755438": "0", + "5.1.35.1.1755439": "0", + "5.1.35.1.1755440": "0", + "5.1.35.1.1755441": "0", + "5.1.35.3.1755427": "0", + "5.1.35.3.1755428": "0", + "5.1.35.3.1755429": "0", + "5.1.35.3.1755430": "0", + "5.1.35.3.1755431": "0", + "5.1.35.3.1755432": "0", + "5.1.35.3.1755433": "0", + "5.1.35.3.1755434": "0", + "5.1.35.3.1755435": "0", + "5.1.35.3.1755436": "0", + "5.1.35.3.1755437": "0", + "5.1.35.3.1755438": "0", + "5.1.35.3.1755439": "0", + "5.1.35.3.1755440": "0", + "5.1.35.3.1755441": "0", + "5.1.36.1.1755427": "2", + "5.1.36.1.1755428": "2", + "5.1.36.1.1755429": "2", + "5.1.36.1.1755430": "2", + "5.1.36.1.1755431": "2", + "5.1.36.1.1755432": "2", + "5.1.36.1.1755433": "2", + "5.1.36.1.1755434": "2", + "5.1.36.1.1755435": "2", + "5.1.36.1.1755436": "2", + "5.1.36.1.1755437": "2", + "5.1.36.1.1755438": "2", + "5.1.36.1.1755439": "2", + "5.1.36.1.1755440": "2", + "5.1.36.1.1755441": "2", + "5.1.36.3.1755427": "2", + "5.1.36.3.1755428": "2", + "5.1.36.3.1755429": "2", + "5.1.36.3.1755430": "2", + "5.1.36.3.1755431": "2", + "5.1.36.3.1755432": "2", + "5.1.36.3.1755433": "2", + "5.1.36.3.1755434": "2", + "5.1.36.3.1755435": "2", + "5.1.36.3.1755436": "2", + "5.1.36.3.1755437": "2", + "5.1.36.3.1755438": "2", + "5.1.36.3.1755439": "2", + "5.1.36.3.1755440": "2", + "5.1.36.3.1755441": "2", + "5.1.37.1.1755427": "0", + "5.1.37.1.1755428": "0", + "5.1.37.1.1755429": "0", + "5.1.37.1.1755430": "0", + "5.1.37.1.1755431": "0", + "5.1.37.1.1755432": "0", + "5.1.37.1.1755433": "0", + "5.1.37.1.1755434": "0", + "5.1.37.1.1755435": "0", + "5.1.37.1.1755436": "0", + "5.1.37.1.1755437": "0", + "5.1.37.1.1755438": "0", + "5.1.37.1.1755439": "0", + "5.1.37.1.1755440": "0", + "5.1.37.1.1755441": "0", + "5.1.37.3.1755427": "0", + "5.1.37.3.1755428": "0", + "5.1.37.3.1755429": "0", + "5.1.37.3.1755430": "0", + "5.1.37.3.1755431": "0", + "5.1.37.3.1755432": "0", + "5.1.37.3.1755433": "0", + "5.1.37.3.1755434": "0", + "5.1.37.3.1755435": "0", + "5.1.37.3.1755436": "0", + "5.1.37.3.1755437": "0", + "5.1.37.3.1755438": "0", + "5.1.37.3.1755439": "0", + "5.1.37.3.1755440": "0", + "5.1.37.3.1755441": "0", + "5.1.38.1.1755427": "0", + "5.1.38.1.1755428": "0", + "5.1.38.1.1755429": "0", + "5.1.38.1.1755430": "0", + "5.1.38.1.1755431": "0", + "5.1.38.1.1755432": "0", + "5.1.38.1.1755433": "0", + "5.1.38.1.1755434": "0", + "5.1.38.1.1755435": "0", + "5.1.38.1.1755436": "0", + "5.1.38.1.1755437": "0", + "5.1.38.1.1755438": "0", + "5.1.38.1.1755439": "0", + "5.1.38.1.1755440": "0", + "5.1.38.1.1755441": "0", + "5.1.38.3.1755427": "0", + "5.1.38.3.1755428": "0", + "5.1.38.3.1755429": "0", + "5.1.38.3.1755430": "0", + "5.1.38.3.1755431": "0", + "5.1.38.3.1755432": "0", + "5.1.38.3.1755433": "0", + "5.1.38.3.1755434": "0", + "5.1.38.3.1755435": "0", + "5.1.38.3.1755436": "0", + "5.1.38.3.1755437": "0", + "5.1.38.3.1755438": "0", + "5.1.38.3.1755439": "0", + "5.1.38.3.1755440": "0", + "5.1.38.3.1755441": "0", + "5.1.39.1.1755427": "0", + "5.1.39.1.1755428": "0", + "5.1.39.1.1755429": "0", + "5.1.39.1.1755430": "0", + "5.1.39.1.1755431": "0", + "5.1.39.1.1755432": "0", + "5.1.39.1.1755433": "0", + "5.1.39.1.1755434": "0", + "5.1.39.1.1755435": "0", + "5.1.39.1.1755436": "0", + "5.1.39.1.1755437": "0", + "5.1.39.1.1755438": "0", + "5.1.39.1.1755439": "0", + "5.1.39.1.1755440": "0", + "5.1.39.1.1755441": "0", + "5.1.39.3.1755427": "0", + "5.1.39.3.1755428": "0", + "5.1.39.3.1755429": "0", + "5.1.39.3.1755430": "0", + "5.1.39.3.1755431": "0", + "5.1.39.3.1755432": "0", + "5.1.39.3.1755433": "0", + "5.1.39.3.1755434": "0", + "5.1.39.3.1755435": "0", + "5.1.39.3.1755436": "0", + "5.1.39.3.1755437": "0", + "5.1.39.3.1755438": "0", + "5.1.39.3.1755439": "0", + "5.1.39.3.1755440": "0", + "5.1.39.3.1755441": "0", + "5.1.40.1.1755427": "0", + "5.1.40.1.1755428": "0", + "5.1.40.1.1755429": "0", + "5.1.40.1.1755430": "0", + "5.1.40.1.1755431": "0", + "5.1.40.1.1755432": "0", + "5.1.40.1.1755433": "0", + "5.1.40.1.1755434": "0", + "5.1.40.1.1755435": "0", + "5.1.40.1.1755436": "0", + "5.1.40.1.1755437": "0", + "5.1.40.1.1755438": "0", + "5.1.40.1.1755439": "0", + "5.1.40.1.1755440": "0", + "5.1.40.1.1755441": "0", + "5.1.40.3.1755427": "0", + "5.1.40.3.1755428": "0", + "5.1.40.3.1755429": "0", + "5.1.40.3.1755430": "0", + "5.1.40.3.1755431": "0", + "5.1.40.3.1755432": "0", + "5.1.40.3.1755433": "0", + "5.1.40.3.1755434": "0", + "5.1.40.3.1755435": "0", + "5.1.40.3.1755436": "0", + "5.1.40.3.1755437": "0", + "5.1.40.3.1755438": "0", + "5.1.40.3.1755439": "0", + "5.1.40.3.1755440": "0", + "5.1.40.3.1755441": "0", + "5.1.41.1.1755427": "0", + "5.1.41.1.1755428": "0", + "5.1.41.1.1755429": "0", + "5.1.41.1.1755430": "0", + "5.1.41.1.1755431": "0", + "5.1.41.1.1755432": "0", + "5.1.41.1.1755433": "0", + "5.1.41.1.1755434": "0", + "5.1.41.1.1755435": "0", + "5.1.41.1.1755436": "0", + "5.1.41.1.1755437": "0", + "5.1.41.1.1755438": "0", + "5.1.41.1.1755439": "0", + "5.1.41.1.1755440": "0", + "5.1.41.1.1755441": "0", + "5.1.41.3.1755427": "0", + "5.1.41.3.1755428": "0", + "5.1.41.3.1755429": "0", + "5.1.41.3.1755430": "0", + "5.1.41.3.1755431": "0", + "5.1.41.3.1755432": "0", + "5.1.41.3.1755433": "0", + "5.1.41.3.1755434": "0", + "5.1.41.3.1755435": "0", + "5.1.41.3.1755436": "0", + "5.1.41.3.1755437": "0", + "5.1.41.3.1755438": "0", + "5.1.41.3.1755439": "0", + "5.1.41.3.1755440": "0", + "5.1.41.3.1755441": "0", + "5.1.42.1.1755427": "2", + "5.1.42.1.1755428": "2", + "5.1.42.1.1755429": "2", + "5.1.42.1.1755430": "2", + "5.1.42.1.1755431": "2", + "5.1.42.1.1755432": "2", + "5.1.42.1.1755433": "2", + "5.1.42.1.1755434": "2", + "5.1.42.1.1755435": "2", + "5.1.42.1.1755436": "2", + "5.1.42.1.1755437": "2", + "5.1.42.1.1755438": "2", + "5.1.42.1.1755439": "2", + "5.1.42.1.1755440": "2", + "5.1.42.1.1755441": "2", + "5.1.42.3.1755427": "2", + "5.1.42.3.1755428": "2", + "5.1.42.3.1755429": "2", + "5.1.42.3.1755430": "2", + "5.1.42.3.1755431": "2", + "5.1.42.3.1755432": "2", + "5.1.42.3.1755433": "2", + "5.1.42.3.1755434": "2", + "5.1.42.3.1755435": "2", + "5.1.42.3.1755436": "2", + "5.1.42.3.1755437": "2", + "5.1.42.3.1755438": "2", + "5.1.42.3.1755439": "2", + "5.1.42.3.1755440": "2", + "5.1.42.3.1755441": "2", + "5.1.43.1.1755427": "0", + "5.1.43.1.1755428": "0", + "5.1.43.1.1755429": "0", + "5.1.43.1.1755430": "0", + "5.1.43.1.1755431": "0", + "5.1.43.1.1755432": "0", + "5.1.43.1.1755433": "0", + "5.1.43.1.1755434": "0", + "5.1.43.1.1755435": "0", + "5.1.43.1.1755436": "0", + "5.1.43.1.1755437": "0", + "5.1.43.1.1755438": "0", + "5.1.43.1.1755439": "0", + "5.1.43.1.1755440": "0", + "5.1.43.1.1755441": "0", + "5.1.43.3.1755427": "0", + "5.1.43.3.1755428": "0", + "5.1.43.3.1755429": "0", + "5.1.43.3.1755430": "0", + "5.1.43.3.1755431": "0", + "5.1.43.3.1755432": "0", + "5.1.43.3.1755433": "0", + "5.1.43.3.1755434": "0", + "5.1.43.3.1755435": "0", + "5.1.43.3.1755436": "0", + "5.1.43.3.1755437": "0", + "5.1.43.3.1755438": "0", + "5.1.43.3.1755439": "0", + "5.1.43.3.1755440": "0", + "5.1.43.3.1755441": "0", + "5.1.44.1.1755427": "0", + "5.1.44.1.1755428": "0", + "5.1.44.1.1755429": "0", + "5.1.44.1.1755430": "0", + "5.1.44.1.1755431": "0", + "5.1.44.1.1755432": "0", + "5.1.44.1.1755433": "0", + "5.1.44.1.1755434": "0", + "5.1.44.1.1755435": "0", + "5.1.44.1.1755436": "0", + "5.1.44.1.1755437": "0", + "5.1.44.1.1755438": "0", + "5.1.44.1.1755439": "0", + "5.1.44.1.1755440": "0", + "5.1.44.1.1755441": "0", + "5.1.44.3.1755427": "0", + "5.1.44.3.1755428": "0", + "5.1.44.3.1755429": "0", + "5.1.44.3.1755430": "0", + "5.1.44.3.1755431": "0", + "5.1.44.3.1755432": "0", + "5.1.44.3.1755433": "0", + "5.1.44.3.1755434": "0", + "5.1.44.3.1755435": "0", + "5.1.44.3.1755436": "0", + "5.1.44.3.1755437": "0", + "5.1.44.3.1755438": "0", + "5.1.44.3.1755439": "0", + "5.1.44.3.1755440": "0", + "5.1.44.3.1755441": "0", + "5.1.45.1.1755427": "0", + "5.1.45.1.1755428": "0", + "5.1.45.1.1755429": "0", + "5.1.45.1.1755430": "0", + "5.1.45.1.1755431": "0", + "5.1.45.1.1755432": "0", + "5.1.45.1.1755433": "0", + "5.1.45.1.1755434": "0", + "5.1.45.1.1755435": "0", + "5.1.45.1.1755436": "0", + "5.1.45.1.1755437": "0", + "5.1.45.1.1755438": "0", + "5.1.45.1.1755439": "0", + "5.1.45.1.1755440": "0", + "5.1.45.1.1755441": "0", + "5.1.45.3.1755427": "0", + "5.1.45.3.1755428": "0", + "5.1.45.3.1755429": "0", + "5.1.45.3.1755430": "0", + "5.1.45.3.1755431": "0", + "5.1.45.3.1755432": "0", + "5.1.45.3.1755433": "0", + "5.1.45.3.1755434": "0", + "5.1.45.3.1755435": "0", + "5.1.45.3.1755436": "0", + "5.1.45.3.1755437": "0", + "5.1.45.3.1755438": "0", + "5.1.45.3.1755439": "0", + "5.1.45.3.1755440": "0", + "5.1.45.3.1755441": "0", + "5.1.46.1.1755427": "0", + "5.1.46.1.1755428": "0", + "5.1.46.1.1755429": "0", + "5.1.46.1.1755430": "0", + "5.1.46.1.1755431": "0", + "5.1.46.1.1755432": "0", + "5.1.46.1.1755433": "0", + "5.1.46.1.1755434": "0", + "5.1.46.1.1755435": "0", + "5.1.46.1.1755436": "0", + "5.1.46.1.1755437": "0", + "5.1.46.1.1755438": "0", + "5.1.46.1.1755439": "0", + "5.1.46.1.1755440": "0", + "5.1.46.1.1755441": "0", + "5.1.46.3.1755427": "0", + "5.1.46.3.1755428": "0", + "5.1.46.3.1755429": "0", + "5.1.46.3.1755430": "0", + "5.1.46.3.1755431": "0", + "5.1.46.3.1755432": "0", + "5.1.46.3.1755433": "0", + "5.1.46.3.1755434": "0", + "5.1.46.3.1755435": "0", + "5.1.46.3.1755436": "0", + "5.1.46.3.1755437": "0", + "5.1.46.3.1755438": "0", + "5.1.46.3.1755439": "0", + "5.1.46.3.1755440": "0", + "5.1.46.3.1755441": "0", + "5.1.47.1.1755427": "0", + "5.1.47.1.1755428": "0", + "5.1.47.1.1755429": "0", + "5.1.47.1.1755430": "0", + "5.1.47.1.1755431": "0", + "5.1.47.1.1755432": "0", + "5.1.47.1.1755433": "0", + "5.1.47.1.1755434": "0", + "5.1.47.1.1755435": "0", + "5.1.47.1.1755436": "0", + "5.1.47.1.1755437": "0", + "5.1.47.1.1755438": "0", + "5.1.47.1.1755439": "0", + "5.1.47.1.1755440": "0", + "5.1.47.1.1755441": "0", + "5.1.47.3.1755427": "0", + "5.1.47.3.1755428": "0", + "5.1.47.3.1755429": "0", + "5.1.47.3.1755430": "0", + "5.1.47.3.1755431": "0", + "5.1.47.3.1755432": "0", + "5.1.47.3.1755433": "0", + "5.1.47.3.1755434": "0", + "5.1.47.3.1755435": "0", + "5.1.47.3.1755436": "0", + "5.1.47.3.1755437": "0", + "5.1.47.3.1755438": "0", + "5.1.47.3.1755439": "0", + "5.1.47.3.1755440": "0", + "5.1.47.3.1755441": "0", + "5.1.48.1.1755427": "100000000", + "5.1.48.1.1755428": "100000000", + "5.1.48.1.1755429": "100000000", + "5.1.48.1.1755430": "100000000", + "5.1.48.1.1755431": "100000000", + "5.1.48.1.1755432": "100000000", + "5.1.48.1.1755433": "100000000", + "5.1.48.1.1755434": "100000000", + "5.1.48.1.1755435": "100000000", + "5.1.48.1.1755436": "100000000", + "5.1.48.1.1755437": "100000000", + "5.1.48.1.1755438": "100000000", + "5.1.48.1.1755439": "100000000", + "5.1.48.1.1755440": "100000000", + "5.1.48.1.1755441": "100000000", + "5.1.48.3.1755427": "100000000", + "5.1.48.3.1755428": "100000000", + "5.1.48.3.1755429": "100000000", + "5.1.48.3.1755430": "100000000", + "5.1.48.3.1755431": "100000000", + "5.1.48.3.1755432": "100000000", + "5.1.48.3.1755433": "100000000", + "5.1.48.3.1755434": "100000000", + "5.1.48.3.1755435": "100000000", + "5.1.48.3.1755436": "100000000", + "5.1.48.3.1755437": "100000000", + "5.1.48.3.1755438": "100000000", + "5.1.48.3.1755439": "100000000", + "5.1.48.3.1755440": "100000000", + "5.1.48.3.1755441": "100000000", + "5.1.49.1.1755427": "0", + "5.1.49.1.1755428": "0", + "5.1.49.1.1755429": "0", + "5.1.49.1.1755430": "0", + "5.1.49.1.1755431": "0", + "5.1.49.1.1755432": "0", + "5.1.49.1.1755433": "0", + "5.1.49.1.1755434": "0", + "5.1.49.1.1755435": "0", + "5.1.49.1.1755436": "0", + "5.1.49.1.1755437": "0", + "5.1.49.1.1755438": "0", + "5.1.49.1.1755439": "0", + "5.1.49.1.1755440": "0", + "5.1.49.1.1755441": "0", + "5.1.49.3.1755427": "0", + "5.1.49.3.1755428": "0", + "5.1.49.3.1755429": "0", + "5.1.49.3.1755430": "0", + "5.1.49.3.1755431": "0", + "5.1.49.3.1755432": "0", + "5.1.49.3.1755433": "0", + "5.1.49.3.1755434": "0", + "5.1.49.3.1755435": "0", + "5.1.49.3.1755436": "0", + "5.1.49.3.1755437": "0", + "5.1.49.3.1755438": "0", + "5.1.49.3.1755439": "0", + "5.1.49.3.1755440": "0", + "5.1.49.3.1755441": "0", + "5.1.50.1.1755427": "60", + "5.1.50.1.1755428": "60", + "5.1.50.1.1755429": "60", + "5.1.50.1.1755430": "60", + "5.1.50.1.1755431": "60", + "5.1.50.1.1755432": "60", + "5.1.50.1.1755433": "60", + "5.1.50.1.1755434": "60", + "5.1.50.1.1755435": "60", + "5.1.50.1.1755436": "60", + "5.1.50.1.1755437": "60", + "5.1.50.1.1755438": "60", + "5.1.50.1.1755439": "60", + "5.1.50.1.1755440": "60", + "5.1.50.1.1755441": "60", + "5.1.50.3.1755427": "60", + "5.1.50.3.1755428": "60", + "5.1.50.3.1755429": "60", + "5.1.50.3.1755430": "60", + "5.1.50.3.1755431": "60", + "5.1.50.3.1755432": "60", + "5.1.50.3.1755433": "60", + "5.1.50.3.1755434": "60", + "5.1.50.3.1755435": "60", + "5.1.50.3.1755436": "60", + "5.1.50.3.1755437": "60", + "5.1.50.3.1755438": "60", + "5.1.50.3.1755439": "60", + "5.1.50.3.1755440": "60", + "5.1.50.3.1755441": "60", + "5.1.51.1.1755427": "0", + "5.1.51.1.1755428": "0", + "5.1.51.1.1755429": "0", + "5.1.51.1.1755430": "0", + "5.1.51.1.1755431": "0", + "5.1.51.1.1755432": "0", + "5.1.51.1.1755433": "0", + "5.1.51.1.1755434": "0", + "5.1.51.1.1755435": "0", + "5.1.51.1.1755436": "0", + "5.1.51.1.1755437": "0", + "5.1.51.1.1755438": "0", + "5.1.51.1.1755439": "0", + "5.1.51.1.1755440": "0", + "5.1.51.1.1755441": "0", + "5.1.51.3.1755427": "0", + "5.1.51.3.1755428": "0", + "5.1.51.3.1755429": "0", + "5.1.51.3.1755430": "0", + "5.1.51.3.1755431": "0", + "5.1.51.3.1755432": "0", + "5.1.51.3.1755433": "0", + "5.1.51.3.1755434": "0", + "5.1.51.3.1755435": "0", + "5.1.51.3.1755436": "0", + "5.1.51.3.1755437": "0", + "5.1.51.3.1755438": "0", + "5.1.51.3.1755439": "0", + "5.1.51.3.1755440": "0", + "5.1.51.3.1755441": "0" + } + } + }, + "ACD-POLICY-MIB": { + "tables": { + "acdPolicy": { + "1.1.2.1": "1", + "1.1.2.2": "1", + "1.1.2.3": "1", + "1.1.2.4": "1", + "1.1.2.5": "1", + "1.1.2.6": "1", + "1.1.2.7": "1", + "1.1.2.8": "1", + "1.1.2.9": "1", + "1.1.2.10": "1", + "1.1.2.11": "1", + "1.1.2.12": "1", + "1.1.2.13": "1", + "1.1.2.14": "1", + "1.1.2.15": "1", + "1.1.2.16": "1", + "1.1.2.17": "1", + "1.1.2.18": "1", + "1.1.2.19": "1", + "1.1.2.20": "1", + "1.1.2.21": "1", + "1.1.2.22": "1", + "1.1.2.23": "1", + "1.1.2.24": "1", + "1.1.2.25": "1", + "1.1.2.26": "1", + "1.1.2.27": "1", + "1.1.2.28": "1", + "1.1.2.29": "1", + "1.1.2.30": "1", + "1.1.2.31": "1", + "1.1.2.32": "1", + "1.1.2.33": "1", + "1.1.2.34": "1", + "1.1.2.35": "1", + "1.1.2.36": "1", + "1.1.2.37": "1", + "1.1.2.38": "1", + "1.1.2.39": "1", + "1.1.2.40": "1", + "1.1.2.41": "1", + "1.1.2.42": "1", + "1.1.2.43": "1", + "1.1.2.44": "1", + "1.1.2.45": "1", + "1.1.2.46": "1", + "1.1.2.47": "1", + "1.1.2.48": "1", + "1.1.2.49": "1", + "1.1.2.50": "1", + "1.1.2.51": "1", + "1.1.2.52": "1", + "1.1.2.53": "1", + "1.1.2.54": "1", + "1.1.2.55": "1", + "1.1.2.56": "1", + "1.1.2.57": "1", + "1.1.2.58": "1", + "1.1.2.59": "1", + "1.1.2.60": "1", + "1.1.2.61": "1", + "1.1.2.62": "1", + "1.1.2.63": "1", + "1.1.2.64": "1", + "1.1.2.65": "1", + "1.1.2.66": "1", + "1.1.2.67": "1", + "1.1.2.68": "1", + "1.1.2.69": "1", + "1.1.2.70": "1", + "1.1.2.71": "1", + "1.1.2.72": "1", + "1.1.2.73": "1", + "1.1.2.74": "1", + "1.1.2.75": "1", + "1.1.2.76": "1", + "1.1.2.77": "1", + "1.1.2.78": "1", + "1.1.2.79": "1", + "1.1.2.80": "1", + "1.1.2.81": "1", + "1.1.2.82": "1", + "1.1.2.83": "1", + "1.1.2.84": "1", + "1.1.2.85": "1", + "1.1.2.86": "1", + "1.1.2.87": "1", + "1.1.2.88": "1", + "1.1.2.89": "1", + "1.1.2.90": "1", + "1.1.2.91": "1", + "1.1.2.92": "1", + "1.1.2.93": "1", + "1.1.2.94": "1", + "1.1.2.95": "1", + "1.1.2.96": "1", + "1.1.2.97": "1", + "1.1.2.98": "1", + "1.1.2.99": "1", + "1.1.2.100": "1", + "1.1.2.101": "2", + "1.1.2.102": "2", + "1.1.2.103": "2", + "1.1.2.104": "2", + "1.1.2.105": "2", + "1.1.2.106": "2", + "1.1.2.107": "2", + "1.1.2.108": "2", + "1.1.2.109": "2", + "1.1.2.110": "2", + "1.1.2.111": "2", + "1.1.2.112": "2", + "1.1.2.113": "2", + "1.1.2.114": "2", + "1.1.2.115": "2", + "1.1.2.116": "2", + "1.1.2.117": "2", + "1.1.2.118": "2", + "1.1.2.119": "2", + "1.1.2.120": "2", + "1.1.2.121": "2", + "1.1.2.122": "2", + "1.1.2.123": "2", + "1.1.2.124": "2", + "1.1.2.125": "2", + "1.1.2.126": "2", + "1.1.2.127": "2", + "1.1.2.128": "2", + "1.1.2.129": "2", + "1.1.2.130": "2", + "1.1.2.131": "2", + "1.1.2.132": "2", + "1.1.2.133": "2", + "1.1.2.134": "2", + "1.1.2.135": "2", + "1.1.2.136": "2", + "1.1.2.137": "2", + "1.1.2.138": "2", + "1.1.2.139": "2", + "1.1.2.140": "2", + "1.1.2.141": "2", + "1.1.2.142": "2", + "1.1.2.143": "2", + "1.1.2.144": "2", + "1.1.2.145": "2", + "1.1.2.146": "2", + "1.1.2.147": "2", + "1.1.2.148": "2", + "1.1.2.149": "2", + "1.1.2.150": "2", + "1.1.2.151": "2", + "1.1.2.152": "2", + "1.1.2.153": "2", + "1.1.2.154": "2", + "1.1.2.155": "2", + "1.1.2.156": "2", + "1.1.2.157": "2", + "1.1.2.158": "2", + "1.1.2.159": "2", + "1.1.2.160": "2", + "1.1.2.161": "2", + "1.1.2.162": "2", + "1.1.2.163": "2", + "1.1.2.164": "2", + "1.1.2.165": "2", + "1.1.2.166": "2", + "1.1.2.167": "2", + "1.1.2.168": "2", + "1.1.2.169": "2", + "1.1.2.170": "2", + "1.1.2.171": "2", + "1.1.2.172": "2", + "1.1.2.173": "2", + "1.1.2.174": "2", + "1.1.2.175": "2", + "1.1.2.176": "2", + "1.1.2.177": "2", + "1.1.2.178": "2", + "1.1.2.179": "2", + "1.1.2.180": "2", + "1.1.2.181": "2", + "1.1.2.182": "2", + "1.1.2.183": "2", + "1.1.2.184": "2", + "1.1.2.185": "2", + "1.1.2.186": "2", + "1.1.2.187": "2", + "1.1.2.188": "2", + "1.1.2.189": "2", + "1.1.2.190": "2", + "1.1.2.191": "2", + "1.1.2.192": "2", + "1.1.2.193": "2", + "1.1.2.194": "2", + "1.1.2.195": "2", + "1.1.2.196": "2", + "1.1.2.197": "2", + "1.1.2.198": "2", + "1.1.2.199": "2", + "1.1.2.200": "2", + "1.1.2.201": "3", + "1.1.2.202": "3", + "1.1.2.203": "3", + "1.1.2.204": "3", + "1.1.2.205": "3", + "1.1.2.206": "3", + "1.1.2.207": "3", + "1.1.2.208": "3", + "1.1.2.209": "3", + "1.1.2.210": "3", + "1.1.2.211": "3", + "1.1.2.212": "3", + "1.1.2.213": "3", + "1.1.2.214": "3", + "1.1.2.215": "3", + "1.1.2.216": "3", + "1.1.2.217": "3", + "1.1.2.218": "3", + "1.1.2.219": "3", + "1.1.2.220": "3", + "1.1.2.221": "3", + "1.1.2.222": "3", + "1.1.2.223": "3", + "1.1.2.224": "3", + "1.1.2.225": "3", + "1.1.2.226": "3", + "1.1.2.227": "3", + "1.1.2.228": "3", + "1.1.2.229": "3", + "1.1.2.230": "3", + "1.1.2.231": "3", + "1.1.2.232": "3", + "1.1.2.233": "3", + "1.1.2.234": "3", + "1.1.2.235": "3", + "1.1.2.236": "3", + "1.1.2.237": "3", + "1.1.2.238": "3", + "1.1.2.239": "3", + "1.1.2.240": "3", + "1.1.2.241": "3", + "1.1.2.242": "3", + "1.1.2.243": "3", + "1.1.2.244": "3", + "1.1.2.245": "3", + "1.1.2.246": "3", + "1.1.2.247": "3", + "1.1.2.248": "3", + "1.1.2.249": "3", + "1.1.2.250": "3", + "1.1.2.251": "3", + "1.1.2.252": "3", + "1.1.2.253": "3", + "1.1.2.254": "3", + "1.1.2.255": "3", + "1.1.2.256": "3", + "1.1.2.257": "3", + "1.1.2.258": "3", + "1.1.2.259": "3", + "1.1.2.260": "3", + "1.1.2.261": "3", + "1.1.2.262": "3", + "1.1.2.263": "3", + "1.1.2.264": "3", + "1.1.2.265": "3", + "1.1.2.266": "3", + "1.1.2.267": "3", + "1.1.2.268": "3", + "1.1.2.269": "3", + "1.1.2.270": "3", + "1.1.2.271": "3", + "1.1.2.272": "3", + "1.1.2.273": "3", + "1.1.2.274": "3", + "1.1.2.275": "3", + "1.1.2.276": "3", + "1.1.2.277": "3", + "1.1.2.278": "3", + "1.1.2.279": "3", + "1.1.2.280": "3", + "1.1.2.281": "3", + "1.1.2.282": "3", + "1.1.2.283": "3", + "1.1.2.284": "3", + "1.1.2.285": "3", + "1.1.2.286": "3", + "1.1.2.287": "3", + "1.1.2.288": "3", + "1.1.2.289": "3", + "1.1.2.290": "3", + "1.1.2.291": "3", + "1.1.2.292": "3", + "1.1.2.293": "3", + "1.1.2.294": "3", + "1.1.2.295": "3", + "1.1.2.296": "3", + "1.1.2.297": "3", + "1.1.2.298": "3", + "1.1.2.299": "3", + "1.1.2.300": "3", + "1.1.2.301": "4", + "1.1.2.302": "4", + "1.1.2.303": "4", + "1.1.2.304": "4", + "1.1.2.305": "4", + "1.1.2.306": "4", + "1.1.2.307": "4", + "1.1.2.308": "4", + "1.1.2.309": "4", + "1.1.2.310": "4", + "1.1.2.311": "4", + "1.1.2.312": "4", + "1.1.2.313": "4", + "1.1.2.314": "4", + "1.1.2.315": "4", + "1.1.2.316": "4", + "1.1.2.317": "4", + "1.1.2.318": "4", + "1.1.2.319": "4", + "1.1.2.320": "4", + "1.1.2.321": "4", + "1.1.2.322": "4", + "1.1.2.323": "4", + "1.1.2.324": "4", + "1.1.2.325": "4", + "1.1.2.326": "4", + "1.1.2.327": "4", + "1.1.2.328": "4", + "1.1.2.329": "4", + "1.1.2.330": "4", + "1.1.2.331": "4", + "1.1.2.332": "4", + "1.1.2.333": "4", + "1.1.2.334": "4", + "1.1.2.335": "4", + "1.1.2.336": "4", + "1.1.2.337": "4", + "1.1.2.338": "4", + "1.1.2.339": "4", + "1.1.2.340": "4", + "1.1.2.341": "4", + "1.1.2.342": "4", + "1.1.2.343": "4", + "1.1.2.344": "4", + "1.1.2.345": "4", + "1.1.2.346": "4", + "1.1.2.347": "4", + "1.1.2.348": "4", + "1.1.2.349": "4", + "1.1.2.350": "4", + "1.1.2.351": "4", + "1.1.2.352": "4", + "1.1.2.353": "4", + "1.1.2.354": "4", + "1.1.2.355": "4", + "1.1.2.356": "4", + "1.1.2.357": "4", + "1.1.2.358": "4", + "1.1.2.359": "4", + "1.1.2.360": "4", + "1.1.2.361": "4", + "1.1.2.362": "4", + "1.1.2.363": "4", + "1.1.2.364": "4", + "1.1.2.365": "4", + "1.1.2.366": "4", + "1.1.2.367": "4", + "1.1.2.368": "4", + "1.1.2.369": "4", + "1.1.2.370": "4", + "1.1.2.371": "4", + "1.1.2.372": "4", + "1.1.2.373": "4", + "1.1.2.374": "4", + "1.1.2.375": "4", + "1.1.2.376": "4", + "1.1.2.377": "4", + "1.1.2.378": "4", + "1.1.2.379": "4", + "1.1.2.380": "4", + "1.1.2.381": "4", + "1.1.2.382": "4", + "1.1.2.383": "4", + "1.1.2.384": "4", + "1.1.2.385": "4", + "1.1.2.386": "4", + "1.1.2.387": "4", + "1.1.2.388": "4", + "1.1.2.389": "4", + "1.1.2.390": "4", + "1.1.2.391": "4", + "1.1.2.392": "4", + "1.1.2.393": "4", + "1.1.2.394": "4", + "1.1.2.395": "4", + "1.1.2.396": "4", + "1.1.2.397": "4", + "1.1.2.398": "4", + "1.1.2.399": "4", + "1.1.2.400": "4", + "1.1.3.1": "1", + "1.1.3.2": "2", + "1.1.3.3": "3", + "1.1.3.4": "4", + "1.1.3.5": "5", + "1.1.3.6": "6", + "1.1.3.7": "7", + "1.1.3.8": "8", + "1.1.3.9": "9", + "1.1.3.10": "10", + "1.1.3.11": "11", + "1.1.3.12": "12", + "1.1.3.13": "13", + "1.1.3.14": "14", + "1.1.3.15": "15", + "1.1.3.16": "16", + "1.1.3.17": "17", + "1.1.3.18": "18", + "1.1.3.19": "19", + "1.1.3.20": "20", + "1.1.3.21": "21", + "1.1.3.22": "22", + "1.1.3.23": "23", + "1.1.3.24": "24", + "1.1.3.25": "25", + "1.1.3.26": "26", + "1.1.3.27": "27", + "1.1.3.28": "28", + "1.1.3.29": "29", + "1.1.3.30": "30", + "1.1.3.31": "31", + "1.1.3.32": "32", + "1.1.3.33": "33", + "1.1.3.34": "34", + "1.1.3.35": "35", + "1.1.3.36": "36", + "1.1.3.37": "37", + "1.1.3.38": "38", + "1.1.3.39": "39", + "1.1.3.40": "40", + "1.1.3.41": "41", + "1.1.3.42": "42", + "1.1.3.43": "43", + "1.1.3.44": "44", + "1.1.3.45": "45", + "1.1.3.46": "46", + "1.1.3.47": "47", + "1.1.3.48": "48", + "1.1.3.49": "49", + "1.1.3.50": "50", + "1.1.3.51": "51", + "1.1.3.52": "52", + "1.1.3.53": "53", + "1.1.3.54": "54", + "1.1.3.55": "55", + "1.1.3.56": "56", + "1.1.3.57": "57", + "1.1.3.58": "58", + "1.1.3.59": "59", + "1.1.3.60": "60", + "1.1.3.61": "61", + "1.1.3.62": "62", + "1.1.3.63": "63", + "1.1.3.64": "64", + "1.1.3.65": "65", + "1.1.3.66": "66", + "1.1.3.67": "67", + "1.1.3.68": "68", + "1.1.3.69": "69", + "1.1.3.70": "70", + "1.1.3.71": "71", + "1.1.3.72": "72", + "1.1.3.73": "73", + "1.1.3.74": "74", + "1.1.3.75": "75", + "1.1.3.76": "76", + "1.1.3.77": "77", + "1.1.3.78": "78", + "1.1.3.79": "79", + "1.1.3.80": "80", + "1.1.3.81": "81", + "1.1.3.82": "82", + "1.1.3.83": "83", + "1.1.3.84": "84", + "1.1.3.85": "85", + "1.1.3.86": "86", + "1.1.3.87": "87", + "1.1.3.88": "88", + "1.1.3.89": "89", + "1.1.3.90": "90", + "1.1.3.91": "91", + "1.1.3.92": "92", + "1.1.3.93": "93", + "1.1.3.94": "94", + "1.1.3.95": "95", + "1.1.3.96": "96", + "1.1.3.97": "97", + "1.1.3.98": "98", + "1.1.3.99": "99", + "1.1.3.100": "100", + "1.1.3.101": "1", + "1.1.3.102": "2", + "1.1.3.103": "3", + "1.1.3.104": "4", + "1.1.3.105": "5", + "1.1.3.106": "6", + "1.1.3.107": "7", + "1.1.3.108": "8", + "1.1.3.109": "9", + "1.1.3.110": "10", + "1.1.3.111": "11", + "1.1.3.112": "12", + "1.1.3.113": "13", + "1.1.3.114": "14", + "1.1.3.115": "15", + "1.1.3.116": "16", + "1.1.3.117": "17", + "1.1.3.118": "18", + "1.1.3.119": "19", + "1.1.3.120": "20", + "1.1.3.121": "21", + "1.1.3.122": "22", + "1.1.3.123": "23", + "1.1.3.124": "24", + "1.1.3.125": "25", + "1.1.3.126": "26", + "1.1.3.127": "27", + "1.1.3.128": "28", + "1.1.3.129": "29", + "1.1.3.130": "30", + "1.1.3.131": "31", + "1.1.3.132": "32", + "1.1.3.133": "33", + "1.1.3.134": "34", + "1.1.3.135": "35", + "1.1.3.136": "36", + "1.1.3.137": "37", + "1.1.3.138": "38", + "1.1.3.139": "39", + "1.1.3.140": "40", + "1.1.3.141": "41", + "1.1.3.142": "42", + "1.1.3.143": "43", + "1.1.3.144": "44", + "1.1.3.145": "45", + "1.1.3.146": "46", + "1.1.3.147": "47", + "1.1.3.148": "48", + "1.1.3.149": "49", + "1.1.3.150": "50", + "1.1.3.151": "51", + "1.1.3.152": "52", + "1.1.3.153": "53", + "1.1.3.154": "54", + "1.1.3.155": "55", + "1.1.3.156": "56", + "1.1.3.157": "57", + "1.1.3.158": "58", + "1.1.3.159": "59", + "1.1.3.160": "60", + "1.1.3.161": "61", + "1.1.3.162": "62", + "1.1.3.163": "63", + "1.1.3.164": "64", + "1.1.3.165": "65", + "1.1.3.166": "66", + "1.1.3.167": "67", + "1.1.3.168": "68", + "1.1.3.169": "69", + "1.1.3.170": "70", + "1.1.3.171": "71", + "1.1.3.172": "72", + "1.1.3.173": "73", + "1.1.3.174": "74", + "1.1.3.175": "75", + "1.1.3.176": "76", + "1.1.3.177": "77", + "1.1.3.178": "78", + "1.1.3.179": "79", + "1.1.3.180": "80", + "1.1.3.181": "81", + "1.1.3.182": "82", + "1.1.3.183": "83", + "1.1.3.184": "84", + "1.1.3.185": "85", + "1.1.3.186": "86", + "1.1.3.187": "87", + "1.1.3.188": "88", + "1.1.3.189": "89", + "1.1.3.190": "90", + "1.1.3.191": "91", + "1.1.3.192": "92", + "1.1.3.193": "93", + "1.1.3.194": "94", + "1.1.3.195": "95", + "1.1.3.196": "96", + "1.1.3.197": "97", + "1.1.3.198": "98", + "1.1.3.199": "99", + "1.1.3.200": "100", + "1.1.3.201": "1", + "1.1.3.202": "2", + "1.1.3.203": "3", + "1.1.3.204": "4", + "1.1.3.205": "5", + "1.1.3.206": "6", + "1.1.3.207": "7", + "1.1.3.208": "8", + "1.1.3.209": "9", + "1.1.3.210": "10", + "1.1.3.211": "11", + "1.1.3.212": "12", + "1.1.3.213": "13", + "1.1.3.214": "14", + "1.1.3.215": "15", + "1.1.3.216": "16", + "1.1.3.217": "17", + "1.1.3.218": "18", + "1.1.3.219": "19", + "1.1.3.220": "20", + "1.1.3.221": "21", + "1.1.3.222": "22", + "1.1.3.223": "23", + "1.1.3.224": "24", + "1.1.3.225": "25", + "1.1.3.226": "26", + "1.1.3.227": "27", + "1.1.3.228": "28", + "1.1.3.229": "29", + "1.1.3.230": "30", + "1.1.3.231": "31", + "1.1.3.232": "32", + "1.1.3.233": "33", + "1.1.3.234": "34", + "1.1.3.235": "35", + "1.1.3.236": "36", + "1.1.3.237": "37", + "1.1.3.238": "38", + "1.1.3.239": "39", + "1.1.3.240": "40", + "1.1.3.241": "41", + "1.1.3.242": "42", + "1.1.3.243": "43", + "1.1.3.244": "44", + "1.1.3.245": "45", + "1.1.3.246": "46", + "1.1.3.247": "47", + "1.1.3.248": "48", + "1.1.3.249": "49", + "1.1.3.250": "50", + "1.1.3.251": "51", + "1.1.3.252": "52", + "1.1.3.253": "53", + "1.1.3.254": "54", + "1.1.3.255": "55", + "1.1.3.256": "56", + "1.1.3.257": "57", + "1.1.3.258": "58", + "1.1.3.259": "59", + "1.1.3.260": "60", + "1.1.3.261": "61", + "1.1.3.262": "62", + "1.1.3.263": "63", + "1.1.3.264": "64", + "1.1.3.265": "65", + "1.1.3.266": "66", + "1.1.3.267": "67", + "1.1.3.268": "68", + "1.1.3.269": "69", + "1.1.3.270": "70", + "1.1.3.271": "71", + "1.1.3.272": "72", + "1.1.3.273": "73", + "1.1.3.274": "74", + "1.1.3.275": "75", + "1.1.3.276": "76", + "1.1.3.277": "77", + "1.1.3.278": "78", + "1.1.3.279": "79", + "1.1.3.280": "80", + "1.1.3.281": "81", + "1.1.3.282": "82", + "1.1.3.283": "83", + "1.1.3.284": "84", + "1.1.3.285": "85", + "1.1.3.286": "86", + "1.1.3.287": "87", + "1.1.3.288": "88", + "1.1.3.289": "89", + "1.1.3.290": "90", + "1.1.3.291": "91", + "1.1.3.292": "92", + "1.1.3.293": "93", + "1.1.3.294": "94", + "1.1.3.295": "95", + "1.1.3.296": "96", + "1.1.3.297": "97", + "1.1.3.298": "98", + "1.1.3.299": "99", + "1.1.3.300": "100", + "1.1.3.301": "1", + "1.1.3.302": "2", + "1.1.3.303": "3", + "1.1.3.304": "4", + "1.1.3.305": "5", + "1.1.3.306": "6", + "1.1.3.307": "7", + "1.1.3.308": "8", + "1.1.3.309": "9", + "1.1.3.310": "10", + "1.1.3.311": "11", + "1.1.3.312": "12", + "1.1.3.313": "13", + "1.1.3.314": "14", + "1.1.3.315": "15", + "1.1.3.316": "16", + "1.1.3.317": "17", + "1.1.3.318": "18", + "1.1.3.319": "19", + "1.1.3.320": "20", + "1.1.3.321": "21", + "1.1.3.322": "22", + "1.1.3.323": "23", + "1.1.3.324": "24", + "1.1.3.325": "25", + "1.1.3.326": "26", + "1.1.3.327": "27", + "1.1.3.328": "28", + "1.1.3.329": "29", + "1.1.3.330": "30", + "1.1.3.331": "31", + "1.1.3.332": "32", + "1.1.3.333": "33", + "1.1.3.334": "34", + "1.1.3.335": "35", + "1.1.3.336": "36", + "1.1.3.337": "37", + "1.1.3.338": "38", + "1.1.3.339": "39", + "1.1.3.340": "40", + "1.1.3.341": "41", + "1.1.3.342": "42", + "1.1.3.343": "43", + "1.1.3.344": "44", + "1.1.3.345": "45", + "1.1.3.346": "46", + "1.1.3.347": "47", + "1.1.3.348": "48", + "1.1.3.349": "49", + "1.1.3.350": "50", + "1.1.3.351": "51", + "1.1.3.352": "52", + "1.1.3.353": "53", + "1.1.3.354": "54", + "1.1.3.355": "55", + "1.1.3.356": "56", + "1.1.3.357": "57", + "1.1.3.358": "58", + "1.1.3.359": "59", + "1.1.3.360": "60", + "1.1.3.361": "61", + "1.1.3.362": "62", + "1.1.3.363": "63", + "1.1.3.364": "64", + "1.1.3.365": "65", + "1.1.3.366": "66", + "1.1.3.367": "67", + "1.1.3.368": "68", + "1.1.3.369": "69", + "1.1.3.370": "70", + "1.1.3.371": "71", + "1.1.3.372": "72", + "1.1.3.373": "73", + "1.1.3.374": "74", + "1.1.3.375": "75", + "1.1.3.376": "76", + "1.1.3.377": "77", + "1.1.3.378": "78", + "1.1.3.379": "79", + "1.1.3.380": "80", + "1.1.3.381": "81", + "1.1.3.382": "82", + "1.1.3.383": "83", + "1.1.3.384": "84", + "1.1.3.385": "85", + "1.1.3.386": "86", + "1.1.3.387": "87", + "1.1.3.388": "88", + "1.1.3.389": "89", + "1.1.3.390": "90", + "1.1.3.391": "91", + "1.1.3.392": "92", + "1.1.3.393": "93", + "1.1.3.394": "94", + "1.1.3.395": "95", + "1.1.3.396": "96", + "1.1.3.397": "97", + "1.1.3.398": "98", + "1.1.3.399": "99", + "1.1.3.400": "100", + "1.1.4.1": "2", + "1.1.4.2": "2", + "1.1.4.3": "2", + "1.1.4.4": "2", + "1.1.4.5": "2", + "1.1.4.6": "1", + "1.1.4.7": "1", + "1.1.4.8": "1", + "1.1.4.9": "1", + "1.1.4.10": "2", + "1.1.4.11": "2", + "1.1.4.12": "2", + "1.1.4.13": "2", + "1.1.4.14": "2", + "1.1.4.15": "2", + "1.1.4.16": "2", + "1.1.4.17": "2", + "1.1.4.18": "2", + "1.1.4.19": "2", + "1.1.4.20": "2", + "1.1.4.21": "2", + "1.1.4.22": "2", + "1.1.4.23": "2", + "1.1.4.24": "2", + "1.1.4.25": "2", + "1.1.4.26": "2", + "1.1.4.27": "2", + "1.1.4.28": "2", + "1.1.4.29": "2", + "1.1.4.30": "2", + "1.1.4.31": "2", + "1.1.4.32": "2", + "1.1.4.33": "2", + "1.1.4.34": "2", + "1.1.4.35": "2", + "1.1.4.36": "2", + "1.1.4.37": "2", + "1.1.4.38": "2", + "1.1.4.39": "2", + "1.1.4.40": "2", + "1.1.4.41": "2", + "1.1.4.42": "2", + "1.1.4.43": "2", + "1.1.4.44": "2", + "1.1.4.45": "2", + "1.1.4.46": "2", + "1.1.4.47": "2", + "1.1.4.48": "2", + "1.1.4.49": "2", + "1.1.4.50": "2", + "1.1.4.51": "2", + "1.1.4.52": "2", + "1.1.4.53": "2", + "1.1.4.54": "2", + "1.1.4.55": "2", + "1.1.4.56": "2", + "1.1.4.57": "2", + "1.1.4.58": "2", + "1.1.4.59": "2", + "1.1.4.60": "2", + "1.1.4.61": "2", + "1.1.4.62": "2", + "1.1.4.63": "2", + "1.1.4.64": "2", + "1.1.4.65": "2", + "1.1.4.66": "2", + "1.1.4.67": "2", + "1.1.4.68": "2", + "1.1.4.69": "2", + "1.1.4.70": "2", + "1.1.4.71": "2", + "1.1.4.72": "2", + "1.1.4.73": "2", + "1.1.4.74": "2", + "1.1.4.75": "2", + "1.1.4.76": "2", + "1.1.4.77": "2", + "1.1.4.78": "2", + "1.1.4.79": "2", + "1.1.4.80": "2", + "1.1.4.81": "2", + "1.1.4.82": "2", + "1.1.4.83": "2", + "1.1.4.84": "2", + "1.1.4.85": "2", + "1.1.4.86": "2", + "1.1.4.87": "2", + "1.1.4.88": "2", + "1.1.4.89": "2", + "1.1.4.90": "2", + "1.1.4.91": "2", + "1.1.4.92": "2", + "1.1.4.93": "2", + "1.1.4.94": "2", + "1.1.4.95": "2", + "1.1.4.96": "2", + "1.1.4.97": "2", + "1.1.4.98": "2", + "1.1.4.99": "2", + "1.1.4.100": "2", + "1.1.4.101": "2", + "1.1.4.102": "2", + "1.1.4.103": "2", + "1.1.4.104": "2", + "1.1.4.105": "2", + "1.1.4.106": "2", + "1.1.4.107": "1", + "1.1.4.108": "1", + "1.1.4.109": "1", + "1.1.4.110": "2", + "1.1.4.111": "2", + "1.1.4.112": "2", + "1.1.4.113": "2", + "1.1.4.114": "2", + "1.1.4.115": "2", + "1.1.4.116": "2", + "1.1.4.117": "2", + "1.1.4.118": "2", + "1.1.4.119": "2", + "1.1.4.120": "2", + "1.1.4.121": "2", + "1.1.4.122": "2", + "1.1.4.123": "2", + "1.1.4.124": "2", + "1.1.4.125": "2", + "1.1.4.126": "2", + "1.1.4.127": "2", + "1.1.4.128": "2", + "1.1.4.129": "2", + "1.1.4.130": "2", + "1.1.4.131": "2", + "1.1.4.132": "2", + "1.1.4.133": "2", + "1.1.4.134": "2", + "1.1.4.135": "2", + "1.1.4.136": "2", + "1.1.4.137": "2", + "1.1.4.138": "2", + "1.1.4.139": "2", + "1.1.4.140": "2", + "1.1.4.141": "2", + "1.1.4.142": "2", + "1.1.4.143": "2", + "1.1.4.144": "2", + "1.1.4.145": "2", + "1.1.4.146": "2", + "1.1.4.147": "2", + "1.1.4.148": "2", + "1.1.4.149": "2", + "1.1.4.150": "2", + "1.1.4.151": "2", + "1.1.4.152": "2", + "1.1.4.153": "2", + "1.1.4.154": "2", + "1.1.4.155": "2", + "1.1.4.156": "2", + "1.1.4.157": "2", + "1.1.4.158": "2", + "1.1.4.159": "2", + "1.1.4.160": "2", + "1.1.4.161": "2", + "1.1.4.162": "2", + "1.1.4.163": "2", + "1.1.4.164": "2", + "1.1.4.165": "2", + "1.1.4.166": "2", + "1.1.4.167": "2", + "1.1.4.168": "2", + "1.1.4.169": "2", + "1.1.4.170": "2", + "1.1.4.171": "2", + "1.1.4.172": "2", + "1.1.4.173": "2", + "1.1.4.174": "2", + "1.1.4.175": "2", + "1.1.4.176": "2", + "1.1.4.177": "2", + "1.1.4.178": "2", + "1.1.4.179": "2", + "1.1.4.180": "2", + "1.1.4.181": "2", + "1.1.4.182": "2", + "1.1.4.183": "2", + "1.1.4.184": "2", + "1.1.4.185": "2", + "1.1.4.186": "2", + "1.1.4.187": "2", + "1.1.4.188": "2", + "1.1.4.189": "2", + "1.1.4.190": "2", + "1.1.4.191": "2", + "1.1.4.192": "2", + "1.1.4.193": "2", + "1.1.4.194": "2", + "1.1.4.195": "2", + "1.1.4.196": "2", + "1.1.4.197": "2", + "1.1.4.198": "2", + "1.1.4.199": "2", + "1.1.4.200": "2", + "1.1.4.201": "2", + "1.1.4.202": "2", + "1.1.4.203": "2", + "1.1.4.204": "2", + "1.1.4.205": "2", + "1.1.4.206": "1", + "1.1.4.207": "1", + "1.1.4.208": "1", + "1.1.4.209": "1", + "1.1.4.210": "2", + "1.1.4.211": "2", + "1.1.4.212": "2", + "1.1.4.213": "2", + "1.1.4.214": "2", + "1.1.4.215": "2", + "1.1.4.216": "2", + "1.1.4.217": "2", + "1.1.4.218": "2", + "1.1.4.219": "2", + "1.1.4.220": "2", + "1.1.4.221": "2", + "1.1.4.222": "2", + "1.1.4.223": "2", + "1.1.4.224": "2", + "1.1.4.225": "2", + "1.1.4.226": "2", + "1.1.4.227": "2", + "1.1.4.228": "2", + "1.1.4.229": "2", + "1.1.4.230": "2", + "1.1.4.231": "2", + "1.1.4.232": "2", + "1.1.4.233": "2", + "1.1.4.234": "2", + "1.1.4.235": "2", + "1.1.4.236": "2", + "1.1.4.237": "2", + "1.1.4.238": "2", + "1.1.4.239": "2", + "1.1.4.240": "2", + "1.1.4.241": "2", + "1.1.4.242": "2", + "1.1.4.243": "2", + "1.1.4.244": "2", + "1.1.4.245": "2", + "1.1.4.246": "2", + "1.1.4.247": "2", + "1.1.4.248": "2", + "1.1.4.249": "2", + "1.1.4.250": "2", + "1.1.4.251": "2", + "1.1.4.252": "2", + "1.1.4.253": "2", + "1.1.4.254": "2", + "1.1.4.255": "2", + "1.1.4.256": "2", + "1.1.4.257": "2", + "1.1.4.258": "2", + "1.1.4.259": "2", + "1.1.4.260": "2", + "1.1.4.261": "2", + "1.1.4.262": "2", + "1.1.4.263": "2", + "1.1.4.264": "2", + "1.1.4.265": "2", + "1.1.4.266": "2", + "1.1.4.267": "2", + "1.1.4.268": "2", + "1.1.4.269": "2", + "1.1.4.270": "2", + "1.1.4.271": "2", + "1.1.4.272": "2", + "1.1.4.273": "2", + "1.1.4.274": "2", + "1.1.4.275": "2", + "1.1.4.276": "2", + "1.1.4.277": "2", + "1.1.4.278": "2", + "1.1.4.279": "2", + "1.1.4.280": "2", + "1.1.4.281": "2", + "1.1.4.282": "2", + "1.1.4.283": "2", + "1.1.4.284": "2", + "1.1.4.285": "2", + "1.1.4.286": "2", + "1.1.4.287": "2", + "1.1.4.288": "2", + "1.1.4.289": "2", + "1.1.4.290": "2", + "1.1.4.291": "2", + "1.1.4.292": "2", + "1.1.4.293": "2", + "1.1.4.294": "2", + "1.1.4.295": "2", + "1.1.4.296": "2", + "1.1.4.297": "2", + "1.1.4.298": "2", + "1.1.4.299": "2", + "1.1.4.300": "2", + "1.1.4.301": "2", + "1.1.4.302": "2", + "1.1.4.303": "2", + "1.1.4.304": "2", + "1.1.4.305": "2", + "1.1.4.306": "2", + "1.1.4.307": "1", + "1.1.4.308": "1", + "1.1.4.309": "1", + "1.1.4.310": "2", + "1.1.4.311": "2", + "1.1.4.312": "2", + "1.1.4.313": "2", + "1.1.4.314": "2", + "1.1.4.315": "2", + "1.1.4.316": "2", + "1.1.4.317": "2", + "1.1.4.318": "2", + "1.1.4.319": "2", + "1.1.4.320": "2", + "1.1.4.321": "2", + "1.1.4.322": "2", + "1.1.4.323": "2", + "1.1.4.324": "2", + "1.1.4.325": "2", + "1.1.4.326": "2", + "1.1.4.327": "2", + "1.1.4.328": "2", + "1.1.4.329": "2", + "1.1.4.330": "2", + "1.1.4.331": "2", + "1.1.4.332": "2", + "1.1.4.333": "2", + "1.1.4.334": "2", + "1.1.4.335": "2", + "1.1.4.336": "2", + "1.1.4.337": "2", + "1.1.4.338": "2", + "1.1.4.339": "2", + "1.1.4.340": "2", + "1.1.4.341": "2", + "1.1.4.342": "2", + "1.1.4.343": "2", + "1.1.4.344": "2", + "1.1.4.345": "2", + "1.1.4.346": "2", + "1.1.4.347": "2", + "1.1.4.348": "2", + "1.1.4.349": "2", + "1.1.4.350": "2", + "1.1.4.351": "2", + "1.1.4.352": "2", + "1.1.4.353": "2", + "1.1.4.354": "2", + "1.1.4.355": "2", + "1.1.4.356": "2", + "1.1.4.357": "2", + "1.1.4.358": "2", + "1.1.4.359": "2", + "1.1.4.360": "2", + "1.1.4.361": "2", + "1.1.4.362": "2", + "1.1.4.363": "2", + "1.1.4.364": "2", + "1.1.4.365": "2", + "1.1.4.366": "2", + "1.1.4.367": "2", + "1.1.4.368": "2", + "1.1.4.369": "2", + "1.1.4.370": "2", + "1.1.4.371": "2", + "1.1.4.372": "2", + "1.1.4.373": "2", + "1.1.4.374": "2", + "1.1.4.375": "2", + "1.1.4.376": "2", + "1.1.4.377": "2", + "1.1.4.378": "2", + "1.1.4.379": "2", + "1.1.4.380": "2", + "1.1.4.381": "2", + "1.1.4.382": "2", + "1.1.4.383": "2", + "1.1.4.384": "2", + "1.1.4.385": "2", + "1.1.4.386": "2", + "1.1.4.387": "2", + "1.1.4.388": "2", + "1.1.4.389": "2", + "1.1.4.390": "2", + "1.1.4.391": "2", + "1.1.4.392": "2", + "1.1.4.393": "2", + "1.1.4.394": "2", + "1.1.4.395": "2", + "1.1.4.396": "2", + "1.1.4.397": "2", + "1.1.4.398": "2", + "1.1.4.399": "2", + "1.1.4.400": "2", + "1.1.5.1": "0", + "1.1.5.2": "0", + "1.1.5.3": "0", + "1.1.5.4": "0", + "1.1.5.5": "0", + "1.1.5.6": "0", + "1.1.5.7": "0", + "1.1.5.8": "0", + "1.1.5.9": "0", + "1.1.5.10": "0", + "1.1.5.11": "0", + "1.1.5.12": "0", + "1.1.5.13": "0", + "1.1.5.14": "0", + "1.1.5.15": "0", + "1.1.5.16": "0", + "1.1.5.17": "0", + "1.1.5.18": "0", + "1.1.5.19": "0", + "1.1.5.20": "0", + "1.1.5.21": "0", + "1.1.5.22": "0", + "1.1.5.23": "0", + "1.1.5.24": "0", + "1.1.5.25": "0", + "1.1.5.26": "0", + "1.1.5.27": "0", + "1.1.5.28": "0", + "1.1.5.29": "0", + "1.1.5.30": "0", + "1.1.5.31": "0", + "1.1.5.32": "0", + "1.1.5.33": "0", + "1.1.5.34": "0", + "1.1.5.35": "0", + "1.1.5.36": "0", + "1.1.5.37": "0", + "1.1.5.38": "0", + "1.1.5.39": "0", + "1.1.5.40": "0", + "1.1.5.41": "0", + "1.1.5.42": "0", + "1.1.5.43": "0", + "1.1.5.44": "0", + "1.1.5.45": "0", + "1.1.5.46": "0", + "1.1.5.47": "0", + "1.1.5.48": "0", + "1.1.5.49": "0", + "1.1.5.50": "0", + "1.1.5.51": "0", + "1.1.5.52": "0", + "1.1.5.53": "0", + "1.1.5.54": "0", + "1.1.5.55": "0", + "1.1.5.56": "0", + "1.1.5.57": "0", + "1.1.5.58": "0", + "1.1.5.59": "0", + "1.1.5.60": "0", + "1.1.5.61": "0", + "1.1.5.62": "0", + "1.1.5.63": "0", + "1.1.5.64": "0", + "1.1.5.65": "0", + "1.1.5.66": "0", + "1.1.5.67": "0", + "1.1.5.68": "0", + "1.1.5.69": "0", + "1.1.5.70": "0", + "1.1.5.71": "0", + "1.1.5.72": "0", + "1.1.5.73": "0", + "1.1.5.74": "0", + "1.1.5.75": "0", + "1.1.5.76": "0", + "1.1.5.77": "0", + "1.1.5.78": "0", + "1.1.5.79": "0", + "1.1.5.80": "0", + "1.1.5.81": "0", + "1.1.5.82": "0", + "1.1.5.83": "0", + "1.1.5.84": "0", + "1.1.5.85": "0", + "1.1.5.86": "0", + "1.1.5.87": "0", + "1.1.5.88": "0", + "1.1.5.89": "0", + "1.1.5.90": "0", + "1.1.5.91": "0", + "1.1.5.92": "0", + "1.1.5.93": "0", + "1.1.5.94": "0", + "1.1.5.95": "0", + "1.1.5.96": "0", + "1.1.5.97": "0", + "1.1.5.98": "0", + "1.1.5.99": "0", + "1.1.5.100": "0", + "1.1.5.101": "0", + "1.1.5.102": "0", + "1.1.5.103": "0", + "1.1.5.104": "0", + "1.1.5.105": "0", + "1.1.5.106": "0", + "1.1.5.107": "0", + "1.1.5.108": "0", + "1.1.5.109": "0", + "1.1.5.110": "0", + "1.1.5.111": "0", + "1.1.5.112": "0", + "1.1.5.113": "0", + "1.1.5.114": "0", + "1.1.5.115": "0", + "1.1.5.116": "0", + "1.1.5.117": "0", + "1.1.5.118": "0", + "1.1.5.119": "0", + "1.1.5.120": "0", + "1.1.5.121": "0", + "1.1.5.122": "0", + "1.1.5.123": "0", + "1.1.5.124": "0", + "1.1.5.125": "0", + "1.1.5.126": "0", + "1.1.5.127": "0", + "1.1.5.128": "0", + "1.1.5.129": "0", + "1.1.5.130": "0", + "1.1.5.131": "0", + "1.1.5.132": "0", + "1.1.5.133": "0", + "1.1.5.134": "0", + "1.1.5.135": "0", + "1.1.5.136": "0", + "1.1.5.137": "0", + "1.1.5.138": "0", + "1.1.5.139": "0", + "1.1.5.140": "0", + "1.1.5.141": "0", + "1.1.5.142": "0", + "1.1.5.143": "0", + "1.1.5.144": "0", + "1.1.5.145": "0", + "1.1.5.146": "0", + "1.1.5.147": "0", + "1.1.5.148": "0", + "1.1.5.149": "0", + "1.1.5.150": "0", + "1.1.5.151": "0", + "1.1.5.152": "0", + "1.1.5.153": "0", + "1.1.5.154": "0", + "1.1.5.155": "0", + "1.1.5.156": "0", + "1.1.5.157": "0", + "1.1.5.158": "0", + "1.1.5.159": "0", + "1.1.5.160": "0", + "1.1.5.161": "0", + "1.1.5.162": "0", + "1.1.5.163": "0", + "1.1.5.164": "0", + "1.1.5.165": "0", + "1.1.5.166": "0", + "1.1.5.167": "0", + "1.1.5.168": "0", + "1.1.5.169": "0", + "1.1.5.170": "0", + "1.1.5.171": "0", + "1.1.5.172": "0", + "1.1.5.173": "0", + "1.1.5.174": "0", + "1.1.5.175": "0", + "1.1.5.176": "0", + "1.1.5.177": "0", + "1.1.5.178": "0", + "1.1.5.179": "0", + "1.1.5.180": "0", + "1.1.5.181": "0", + "1.1.5.182": "0", + "1.1.5.183": "0", + "1.1.5.184": "0", + "1.1.5.185": "0", + "1.1.5.186": "0", + "1.1.5.187": "0", + "1.1.5.188": "0", + "1.1.5.189": "0", + "1.1.5.190": "0", + "1.1.5.191": "0", + "1.1.5.192": "0", + "1.1.5.193": "0", + "1.1.5.194": "0", + "1.1.5.195": "0", + "1.1.5.196": "0", + "1.1.5.197": "0", + "1.1.5.198": "0", + "1.1.5.199": "0", + "1.1.5.200": "0", + "1.1.5.201": "0", + "1.1.5.202": "0", + "1.1.5.203": "0", + "1.1.5.204": "0", + "1.1.5.205": "0", + "1.1.5.206": "0", + "1.1.5.207": "0", + "1.1.5.208": "0", + "1.1.5.209": "0", + "1.1.5.210": "0", + "1.1.5.211": "0", + "1.1.5.212": "0", + "1.1.5.213": "0", + "1.1.5.214": "0", + "1.1.5.215": "0", + "1.1.5.216": "0", + "1.1.5.217": "0", + "1.1.5.218": "0", + "1.1.5.219": "0", + "1.1.5.220": "0", + "1.1.5.221": "0", + "1.1.5.222": "0", + "1.1.5.223": "0", + "1.1.5.224": "0", + "1.1.5.225": "0", + "1.1.5.226": "0", + "1.1.5.227": "0", + "1.1.5.228": "0", + "1.1.5.229": "0", + "1.1.5.230": "0", + "1.1.5.231": "0", + "1.1.5.232": "0", + "1.1.5.233": "0", + "1.1.5.234": "0", + "1.1.5.235": "0", + "1.1.5.236": "0", + "1.1.5.237": "0", + "1.1.5.238": "0", + "1.1.5.239": "0", + "1.1.5.240": "0", + "1.1.5.241": "0", + "1.1.5.242": "0", + "1.1.5.243": "0", + "1.1.5.244": "0", + "1.1.5.245": "0", + "1.1.5.246": "0", + "1.1.5.247": "0", + "1.1.5.248": "0", + "1.1.5.249": "0", + "1.1.5.250": "0", + "1.1.5.251": "0", + "1.1.5.252": "0", + "1.1.5.253": "0", + "1.1.5.254": "0", + "1.1.5.255": "0", + "1.1.5.256": "0", + "1.1.5.257": "0", + "1.1.5.258": "0", + "1.1.5.259": "0", + "1.1.5.260": "0", + "1.1.5.261": "0", + "1.1.5.262": "0", + "1.1.5.263": "0", + "1.1.5.264": "0", + "1.1.5.265": "0", + "1.1.5.266": "0", + "1.1.5.267": "0", + "1.1.5.268": "0", + "1.1.5.269": "0", + "1.1.5.270": "0", + "1.1.5.271": "0", + "1.1.5.272": "0", + "1.1.5.273": "0", + "1.1.5.274": "0", + "1.1.5.275": "0", + "1.1.5.276": "0", + "1.1.5.277": "0", + "1.1.5.278": "0", + "1.1.5.279": "0", + "1.1.5.280": "0", + "1.1.5.281": "0", + "1.1.5.282": "0", + "1.1.5.283": "0", + "1.1.5.284": "0", + "1.1.5.285": "0", + "1.1.5.286": "0", + "1.1.5.287": "0", + "1.1.5.288": "0", + "1.1.5.289": "0", + "1.1.5.290": "0", + "1.1.5.291": "0", + "1.1.5.292": "0", + "1.1.5.293": "0", + "1.1.5.294": "0", + "1.1.5.295": "0", + "1.1.5.296": "0", + "1.1.5.297": "0", + "1.1.5.298": "0", + "1.1.5.299": "0", + "1.1.5.300": "0", + "1.1.5.301": "0", + "1.1.5.302": "0", + "1.1.5.303": "0", + "1.1.5.304": "0", + "1.1.5.305": "0", + "1.1.5.306": "0", + "1.1.5.307": "0", + "1.1.5.308": "0", + "1.1.5.309": "0", + "1.1.5.310": "0", + "1.1.5.311": "0", + "1.1.5.312": "0", + "1.1.5.313": "0", + "1.1.5.314": "0", + "1.1.5.315": "0", + "1.1.5.316": "0", + "1.1.5.317": "0", + "1.1.5.318": "0", + "1.1.5.319": "0", + "1.1.5.320": "0", + "1.1.5.321": "0", + "1.1.5.322": "0", + "1.1.5.323": "0", + "1.1.5.324": "0", + "1.1.5.325": "0", + "1.1.5.326": "0", + "1.1.5.327": "0", + "1.1.5.328": "0", + "1.1.5.329": "0", + "1.1.5.330": "0", + "1.1.5.331": "0", + "1.1.5.332": "0", + "1.1.5.333": "0", + "1.1.5.334": "0", + "1.1.5.335": "0", + "1.1.5.336": "0", + "1.1.5.337": "0", + "1.1.5.338": "0", + "1.1.5.339": "0", + "1.1.5.340": "0", + "1.1.5.341": "0", + "1.1.5.342": "0", + "1.1.5.343": "0", + "1.1.5.344": "0", + "1.1.5.345": "0", + "1.1.5.346": "0", + "1.1.5.347": "0", + "1.1.5.348": "0", + "1.1.5.349": "0", + "1.1.5.350": "0", + "1.1.5.351": "0", + "1.1.5.352": "0", + "1.1.5.353": "0", + "1.1.5.354": "0", + "1.1.5.355": "0", + "1.1.5.356": "0", + "1.1.5.357": "0", + "1.1.5.358": "0", + "1.1.5.359": "0", + "1.1.5.360": "0", + "1.1.5.361": "0", + "1.1.5.362": "0", + "1.1.5.363": "0", + "1.1.5.364": "0", + "1.1.5.365": "0", + "1.1.5.366": "0", + "1.1.5.367": "0", + "1.1.5.368": "0", + "1.1.5.369": "0", + "1.1.5.370": "0", + "1.1.5.371": "0", + "1.1.5.372": "0", + "1.1.5.373": "0", + "1.1.5.374": "0", + "1.1.5.375": "0", + "1.1.5.376": "0", + "1.1.5.377": "0", + "1.1.5.378": "0", + "1.1.5.379": "0", + "1.1.5.380": "0", + "1.1.5.381": "0", + "1.1.5.382": "0", + "1.1.5.383": "0", + "1.1.5.384": "0", + "1.1.5.385": "0", + "1.1.5.386": "0", + "1.1.5.387": "0", + "1.1.5.388": "0", + "1.1.5.389": "0", + "1.1.5.390": "0", + "1.1.5.391": "0", + "1.1.5.392": "0", + "1.1.5.393": "0", + "1.1.5.394": "0", + "1.1.5.395": "0", + "1.1.5.396": "0", + "1.1.5.397": "0", + "1.1.5.398": "0", + "1.1.5.399": "0", + "1.1.5.400": "0", + "1.1.6.1": "0", + "1.1.6.2": "0", + "1.1.6.3": "0", + "1.1.6.4": "0", + "1.1.6.5": "0", + "1.1.6.6": "27", + "1.1.6.7": "5", + "1.1.6.8": "23", + "1.1.6.9": "25", + "1.1.6.10": "0", + "1.1.6.11": "0", + "1.1.6.12": "0", + "1.1.6.13": "0", + "1.1.6.14": "0", + "1.1.6.15": "0", + "1.1.6.16": "0", + "1.1.6.17": "0", + "1.1.6.18": "0", + "1.1.6.19": "0", + "1.1.6.20": "0", + "1.1.6.21": "0", + "1.1.6.22": "0", + "1.1.6.23": "0", + "1.1.6.24": "0", + "1.1.6.25": "0", + "1.1.6.26": "0", + "1.1.6.27": "0", + "1.1.6.28": "0", + "1.1.6.29": "0", + "1.1.6.30": "0", + "1.1.6.31": "0", + "1.1.6.32": "0", + "1.1.6.33": "0", + "1.1.6.34": "0", + "1.1.6.35": "0", + "1.1.6.36": "0", + "1.1.6.37": "0", + "1.1.6.38": "0", + "1.1.6.39": "0", + "1.1.6.40": "0", + "1.1.6.41": "0", + "1.1.6.42": "0", + "1.1.6.43": "0", + "1.1.6.44": "0", + "1.1.6.45": "0", + "1.1.6.46": "0", + "1.1.6.47": "0", + "1.1.6.48": "0", + "1.1.6.49": "0", + "1.1.6.50": "0", + "1.1.6.51": "0", + "1.1.6.52": "0", + "1.1.6.53": "0", + "1.1.6.54": "0", + "1.1.6.55": "0", + "1.1.6.56": "0", + "1.1.6.57": "0", + "1.1.6.58": "0", + "1.1.6.59": "0", + "1.1.6.60": "0", + "1.1.6.61": "0", + "1.1.6.62": "0", + "1.1.6.63": "0", + "1.1.6.64": "0", + "1.1.6.65": "0", + "1.1.6.66": "0", + "1.1.6.67": "0", + "1.1.6.68": "0", + "1.1.6.69": "0", + "1.1.6.70": "0", + "1.1.6.71": "0", + "1.1.6.72": "0", + "1.1.6.73": "0", + "1.1.6.74": "0", + "1.1.6.75": "0", + "1.1.6.76": "0", + "1.1.6.77": "0", + "1.1.6.78": "0", + "1.1.6.79": "0", + "1.1.6.80": "0", + "1.1.6.81": "0", + "1.1.6.82": "0", + "1.1.6.83": "0", + "1.1.6.84": "0", + "1.1.6.85": "0", + "1.1.6.86": "0", + "1.1.6.87": "0", + "1.1.6.88": "0", + "1.1.6.89": "0", + "1.1.6.90": "0", + "1.1.6.91": "0", + "1.1.6.92": "0", + "1.1.6.93": "0", + "1.1.6.94": "0", + "1.1.6.95": "0", + "1.1.6.96": "0", + "1.1.6.97": "0", + "1.1.6.98": "0", + "1.1.6.99": "0", + "1.1.6.100": "0", + "1.1.6.101": "0", + "1.1.6.102": "0", + "1.1.6.103": "0", + "1.1.6.104": "0", + "1.1.6.105": "0", + "1.1.6.106": "0", + "1.1.6.107": "18", + "1.1.6.108": "24", + "1.1.6.109": "26", + "1.1.6.110": "0", + "1.1.6.111": "0", + "1.1.6.112": "0", + "1.1.6.113": "0", + "1.1.6.114": "0", + "1.1.6.115": "0", + "1.1.6.116": "0", + "1.1.6.117": "0", + "1.1.6.118": "0", + "1.1.6.119": "0", + "1.1.6.120": "0", + "1.1.6.121": "0", + "1.1.6.122": "0", + "1.1.6.123": "0", + "1.1.6.124": "0", + "1.1.6.125": "0", + "1.1.6.126": "0", + "1.1.6.127": "0", + "1.1.6.128": "0", + "1.1.6.129": "0", + "1.1.6.130": "0", + "1.1.6.131": "0", + "1.1.6.132": "0", + "1.1.6.133": "0", + "1.1.6.134": "0", + "1.1.6.135": "0", + "1.1.6.136": "0", + "1.1.6.137": "0", + "1.1.6.138": "0", + "1.1.6.139": "0", + "1.1.6.140": "0", + "1.1.6.141": "0", + "1.1.6.142": "0", + "1.1.6.143": "0", + "1.1.6.144": "0", + "1.1.6.145": "0", + "1.1.6.146": "0", + "1.1.6.147": "0", + "1.1.6.148": "0", + "1.1.6.149": "0", + "1.1.6.150": "0", + "1.1.6.151": "0", + "1.1.6.152": "0", + "1.1.6.153": "0", + "1.1.6.154": "0", + "1.1.6.155": "0", + "1.1.6.156": "0", + "1.1.6.157": "0", + "1.1.6.158": "0", + "1.1.6.159": "0", + "1.1.6.160": "0", + "1.1.6.161": "0", + "1.1.6.162": "0", + "1.1.6.163": "0", + "1.1.6.164": "0", + "1.1.6.165": "0", + "1.1.6.166": "0", + "1.1.6.167": "0", + "1.1.6.168": "0", + "1.1.6.169": "0", + "1.1.6.170": "0", + "1.1.6.171": "0", + "1.1.6.172": "0", + "1.1.6.173": "0", + "1.1.6.174": "0", + "1.1.6.175": "0", + "1.1.6.176": "0", + "1.1.6.177": "0", + "1.1.6.178": "0", + "1.1.6.179": "0", + "1.1.6.180": "0", + "1.1.6.181": "0", + "1.1.6.182": "0", + "1.1.6.183": "0", + "1.1.6.184": "0", + "1.1.6.185": "0", + "1.1.6.186": "0", + "1.1.6.187": "0", + "1.1.6.188": "0", + "1.1.6.189": "0", + "1.1.6.190": "0", + "1.1.6.191": "0", + "1.1.6.192": "0", + "1.1.6.193": "0", + "1.1.6.194": "0", + "1.1.6.195": "0", + "1.1.6.196": "0", + "1.1.6.197": "0", + "1.1.6.198": "0", + "1.1.6.199": "0", + "1.1.6.200": "0", + "1.1.6.201": "0", + "1.1.6.202": "0", + "1.1.6.203": "0", + "1.1.6.204": "0", + "1.1.6.205": "0", + "1.1.6.206": "1", + "1.1.6.207": "5", + "1.1.6.208": "23", + "1.1.6.209": "25", + "1.1.6.210": "0", + "1.1.6.211": "0", + "1.1.6.212": "0", + "1.1.6.213": "0", + "1.1.6.214": "0", + "1.1.6.215": "0", + "1.1.6.216": "0", + "1.1.6.217": "0", + "1.1.6.218": "0", + "1.1.6.219": "0", + "1.1.6.220": "0", + "1.1.6.221": "0", + "1.1.6.222": "0", + "1.1.6.223": "0", + "1.1.6.224": "0", + "1.1.6.225": "0", + "1.1.6.226": "0", + "1.1.6.227": "0", + "1.1.6.228": "0", + "1.1.6.229": "0", + "1.1.6.230": "0", + "1.1.6.231": "0", + "1.1.6.232": "0", + "1.1.6.233": "0", + "1.1.6.234": "0", + "1.1.6.235": "0", + "1.1.6.236": "0", + "1.1.6.237": "0", + "1.1.6.238": "0", + "1.1.6.239": "0", + "1.1.6.240": "0", + "1.1.6.241": "0", + "1.1.6.242": "0", + "1.1.6.243": "0", + "1.1.6.244": "0", + "1.1.6.245": "0", + "1.1.6.246": "0", + "1.1.6.247": "0", + "1.1.6.248": "0", + "1.1.6.249": "0", + "1.1.6.250": "0", + "1.1.6.251": "0", + "1.1.6.252": "0", + "1.1.6.253": "0", + "1.1.6.254": "0", + "1.1.6.255": "0", + "1.1.6.256": "0", + "1.1.6.257": "0", + "1.1.6.258": "0", + "1.1.6.259": "0", + "1.1.6.260": "0", + "1.1.6.261": "0", + "1.1.6.262": "0", + "1.1.6.263": "0", + "1.1.6.264": "0", + "1.1.6.265": "0", + "1.1.6.266": "0", + "1.1.6.267": "0", + "1.1.6.268": "0", + "1.1.6.269": "0", + "1.1.6.270": "0", + "1.1.6.271": "0", + "1.1.6.272": "0", + "1.1.6.273": "0", + "1.1.6.274": "0", + "1.1.6.275": "0", + "1.1.6.276": "0", + "1.1.6.277": "0", + "1.1.6.278": "0", + "1.1.6.279": "0", + "1.1.6.280": "0", + "1.1.6.281": "0", + "1.1.6.282": "0", + "1.1.6.283": "0", + "1.1.6.284": "0", + "1.1.6.285": "0", + "1.1.6.286": "0", + "1.1.6.287": "0", + "1.1.6.288": "0", + "1.1.6.289": "0", + "1.1.6.290": "0", + "1.1.6.291": "0", + "1.1.6.292": "0", + "1.1.6.293": "0", + "1.1.6.294": "0", + "1.1.6.295": "0", + "1.1.6.296": "0", + "1.1.6.297": "0", + "1.1.6.298": "0", + "1.1.6.299": "0", + "1.1.6.300": "0", + "1.1.6.301": "0", + "1.1.6.302": "0", + "1.1.6.303": "0", + "1.1.6.304": "0", + "1.1.6.305": "0", + "1.1.6.306": "0", + "1.1.6.307": "18", + "1.1.6.308": "24", + "1.1.6.309": "26", + "1.1.6.310": "0", + "1.1.6.311": "0", + "1.1.6.312": "0", + "1.1.6.313": "0", + "1.1.6.314": "0", + "1.1.6.315": "0", + "1.1.6.316": "0", + "1.1.6.317": "0", + "1.1.6.318": "0", + "1.1.6.319": "0", + "1.1.6.320": "0", + "1.1.6.321": "0", + "1.1.6.322": "0", + "1.1.6.323": "0", + "1.1.6.324": "0", + "1.1.6.325": "0", + "1.1.6.326": "0", + "1.1.6.327": "0", + "1.1.6.328": "0", + "1.1.6.329": "0", + "1.1.6.330": "0", + "1.1.6.331": "0", + "1.1.6.332": "0", + "1.1.6.333": "0", + "1.1.6.334": "0", + "1.1.6.335": "0", + "1.1.6.336": "0", + "1.1.6.337": "0", + "1.1.6.338": "0", + "1.1.6.339": "0", + "1.1.6.340": "0", + "1.1.6.341": "0", + "1.1.6.342": "0", + "1.1.6.343": "0", + "1.1.6.344": "0", + "1.1.6.345": "0", + "1.1.6.346": "0", + "1.1.6.347": "0", + "1.1.6.348": "0", + "1.1.6.349": "0", + "1.1.6.350": "0", + "1.1.6.351": "0", + "1.1.6.352": "0", + "1.1.6.353": "0", + "1.1.6.354": "0", + "1.1.6.355": "0", + "1.1.6.356": "0", + "1.1.6.357": "0", + "1.1.6.358": "0", + "1.1.6.359": "0", + "1.1.6.360": "0", + "1.1.6.361": "0", + "1.1.6.362": "0", + "1.1.6.363": "0", + "1.1.6.364": "0", + "1.1.6.365": "0", + "1.1.6.366": "0", + "1.1.6.367": "0", + "1.1.6.368": "0", + "1.1.6.369": "0", + "1.1.6.370": "0", + "1.1.6.371": "0", + "1.1.6.372": "0", + "1.1.6.373": "0", + "1.1.6.374": "0", + "1.1.6.375": "0", + "1.1.6.376": "0", + "1.1.6.377": "0", + "1.1.6.378": "0", + "1.1.6.379": "0", + "1.1.6.380": "0", + "1.1.6.381": "0", + "1.1.6.382": "0", + "1.1.6.383": "0", + "1.1.6.384": "0", + "1.1.6.385": "0", + "1.1.6.386": "0", + "1.1.6.387": "0", + "1.1.6.388": "0", + "1.1.6.389": "0", + "1.1.6.390": "0", + "1.1.6.391": "0", + "1.1.6.392": "0", + "1.1.6.393": "0", + "1.1.6.394": "0", + "1.1.6.395": "0", + "1.1.6.396": "0", + "1.1.6.397": "0", + "1.1.6.398": "0", + "1.1.6.399": "0", + "1.1.6.400": "0", + "1.1.7.1": "0", + "1.1.7.2": "0", + "1.1.7.3": "0", + "1.1.7.4": "0", + "1.1.7.5": "0", + "1.1.7.6": "0", + "1.1.7.7": "0", + "1.1.7.8": "0", + "1.1.7.9": "0", + "1.1.7.10": "0", + "1.1.7.11": "0", + "1.1.7.12": "0", + "1.1.7.13": "0", + "1.1.7.14": "0", + "1.1.7.15": "0", + "1.1.7.16": "0", + "1.1.7.17": "0", + "1.1.7.18": "0", + "1.1.7.19": "0", + "1.1.7.20": "0", + "1.1.7.21": "0", + "1.1.7.22": "0", + "1.1.7.23": "0", + "1.1.7.24": "0", + "1.1.7.25": "0", + "1.1.7.26": "0", + "1.1.7.27": "0", + "1.1.7.28": "0", + "1.1.7.29": "0", + "1.1.7.30": "0", + "1.1.7.31": "0", + "1.1.7.32": "0", + "1.1.7.33": "0", + "1.1.7.34": "0", + "1.1.7.35": "0", + "1.1.7.36": "0", + "1.1.7.37": "0", + "1.1.7.38": "0", + "1.1.7.39": "0", + "1.1.7.40": "0", + "1.1.7.41": "0", + "1.1.7.42": "0", + "1.1.7.43": "0", + "1.1.7.44": "0", + "1.1.7.45": "0", + "1.1.7.46": "0", + "1.1.7.47": "0", + "1.1.7.48": "0", + "1.1.7.49": "0", + "1.1.7.50": "0", + "1.1.7.51": "0", + "1.1.7.52": "0", + "1.1.7.53": "0", + "1.1.7.54": "0", + "1.1.7.55": "0", + "1.1.7.56": "0", + "1.1.7.57": "0", + "1.1.7.58": "0", + "1.1.7.59": "0", + "1.1.7.60": "0", + "1.1.7.61": "0", + "1.1.7.62": "0", + "1.1.7.63": "0", + "1.1.7.64": "0", + "1.1.7.65": "0", + "1.1.7.66": "0", + "1.1.7.67": "0", + "1.1.7.68": "0", + "1.1.7.69": "0", + "1.1.7.70": "0", + "1.1.7.71": "0", + "1.1.7.72": "0", + "1.1.7.73": "0", + "1.1.7.74": "0", + "1.1.7.75": "0", + "1.1.7.76": "0", + "1.1.7.77": "0", + "1.1.7.78": "0", + "1.1.7.79": "0", + "1.1.7.80": "0", + "1.1.7.81": "0", + "1.1.7.82": "0", + "1.1.7.83": "0", + "1.1.7.84": "0", + "1.1.7.85": "0", + "1.1.7.86": "0", + "1.1.7.87": "0", + "1.1.7.88": "0", + "1.1.7.89": "0", + "1.1.7.90": "0", + "1.1.7.91": "0", + "1.1.7.92": "0", + "1.1.7.93": "0", + "1.1.7.94": "0", + "1.1.7.95": "0", + "1.1.7.96": "0", + "1.1.7.97": "0", + "1.1.7.98": "0", + "1.1.7.99": "0", + "1.1.7.100": "0", + "1.1.7.101": "0", + "1.1.7.102": "0", + "1.1.7.103": "0", + "1.1.7.104": "0", + "1.1.7.105": "0", + "1.1.7.106": "0", + "1.1.7.107": "0", + "1.1.7.108": "0", + "1.1.7.109": "0", + "1.1.7.110": "0", + "1.1.7.111": "0", + "1.1.7.112": "0", + "1.1.7.113": "0", + "1.1.7.114": "0", + "1.1.7.115": "0", + "1.1.7.116": "0", + "1.1.7.117": "0", + "1.1.7.118": "0", + "1.1.7.119": "0", + "1.1.7.120": "0", + "1.1.7.121": "0", + "1.1.7.122": "0", + "1.1.7.123": "0", + "1.1.7.124": "0", + "1.1.7.125": "0", + "1.1.7.126": "0", + "1.1.7.127": "0", + "1.1.7.128": "0", + "1.1.7.129": "0", + "1.1.7.130": "0", + "1.1.7.131": "0", + "1.1.7.132": "0", + "1.1.7.133": "0", + "1.1.7.134": "0", + "1.1.7.135": "0", + "1.1.7.136": "0", + "1.1.7.137": "0", + "1.1.7.138": "0", + "1.1.7.139": "0", + "1.1.7.140": "0", + "1.1.7.141": "0", + "1.1.7.142": "0", + "1.1.7.143": "0", + "1.1.7.144": "0", + "1.1.7.145": "0", + "1.1.7.146": "0", + "1.1.7.147": "0", + "1.1.7.148": "0", + "1.1.7.149": "0", + "1.1.7.150": "0", + "1.1.7.151": "0", + "1.1.7.152": "0", + "1.1.7.153": "0", + "1.1.7.154": "0", + "1.1.7.155": "0", + "1.1.7.156": "0", + "1.1.7.157": "0", + "1.1.7.158": "0", + "1.1.7.159": "0", + "1.1.7.160": "0", + "1.1.7.161": "0", + "1.1.7.162": "0", + "1.1.7.163": "0", + "1.1.7.164": "0", + "1.1.7.165": "0", + "1.1.7.166": "0", + "1.1.7.167": "0", + "1.1.7.168": "0", + "1.1.7.169": "0", + "1.1.7.170": "0", + "1.1.7.171": "0", + "1.1.7.172": "0", + "1.1.7.173": "0", + "1.1.7.174": "0", + "1.1.7.175": "0", + "1.1.7.176": "0", + "1.1.7.177": "0", + "1.1.7.178": "0", + "1.1.7.179": "0", + "1.1.7.180": "0", + "1.1.7.181": "0", + "1.1.7.182": "0", + "1.1.7.183": "0", + "1.1.7.184": "0", + "1.1.7.185": "0", + "1.1.7.186": "0", + "1.1.7.187": "0", + "1.1.7.188": "0", + "1.1.7.189": "0", + "1.1.7.190": "0", + "1.1.7.191": "0", + "1.1.7.192": "0", + "1.1.7.193": "0", + "1.1.7.194": "0", + "1.1.7.195": "0", + "1.1.7.196": "0", + "1.1.7.197": "0", + "1.1.7.198": "0", + "1.1.7.199": "0", + "1.1.7.200": "0", + "1.1.7.201": "0", + "1.1.7.202": "0", + "1.1.7.203": "0", + "1.1.7.204": "0", + "1.1.7.205": "0", + "1.1.7.206": "0", + "1.1.7.207": "0", + "1.1.7.208": "0", + "1.1.7.209": "0", + "1.1.7.210": "0", + "1.1.7.211": "0", + "1.1.7.212": "0", + "1.1.7.213": "0", + "1.1.7.214": "0", + "1.1.7.215": "0", + "1.1.7.216": "0", + "1.1.7.217": "0", + "1.1.7.218": "0", + "1.1.7.219": "0", + "1.1.7.220": "0", + "1.1.7.221": "0", + "1.1.7.222": "0", + "1.1.7.223": "0", + "1.1.7.224": "0", + "1.1.7.225": "0", + "1.1.7.226": "0", + "1.1.7.227": "0", + "1.1.7.228": "0", + "1.1.7.229": "0", + "1.1.7.230": "0", + "1.1.7.231": "0", + "1.1.7.232": "0", + "1.1.7.233": "0", + "1.1.7.234": "0", + "1.1.7.235": "0", + "1.1.7.236": "0", + "1.1.7.237": "0", + "1.1.7.238": "0", + "1.1.7.239": "0", + "1.1.7.240": "0", + "1.1.7.241": "0", + "1.1.7.242": "0", + "1.1.7.243": "0", + "1.1.7.244": "0", + "1.1.7.245": "0", + "1.1.7.246": "0", + "1.1.7.247": "0", + "1.1.7.248": "0", + "1.1.7.249": "0", + "1.1.7.250": "0", + "1.1.7.251": "0", + "1.1.7.252": "0", + "1.1.7.253": "0", + "1.1.7.254": "0", + "1.1.7.255": "0", + "1.1.7.256": "0", + "1.1.7.257": "0", + "1.1.7.258": "0", + "1.1.7.259": "0", + "1.1.7.260": "0", + "1.1.7.261": "0", + "1.1.7.262": "0", + "1.1.7.263": "0", + "1.1.7.264": "0", + "1.1.7.265": "0", + "1.1.7.266": "0", + "1.1.7.267": "0", + "1.1.7.268": "0", + "1.1.7.269": "0", + "1.1.7.270": "0", + "1.1.7.271": "0", + "1.1.7.272": "0", + "1.1.7.273": "0", + "1.1.7.274": "0", + "1.1.7.275": "0", + "1.1.7.276": "0", + "1.1.7.277": "0", + "1.1.7.278": "0", + "1.1.7.279": "0", + "1.1.7.280": "0", + "1.1.7.281": "0", + "1.1.7.282": "0", + "1.1.7.283": "0", + "1.1.7.284": "0", + "1.1.7.285": "0", + "1.1.7.286": "0", + "1.1.7.287": "0", + "1.1.7.288": "0", + "1.1.7.289": "0", + "1.1.7.290": "0", + "1.1.7.291": "0", + "1.1.7.292": "0", + "1.1.7.293": "0", + "1.1.7.294": "0", + "1.1.7.295": "0", + "1.1.7.296": "0", + "1.1.7.297": "0", + "1.1.7.298": "0", + "1.1.7.299": "0", + "1.1.7.300": "0", + "1.1.7.301": "0", + "1.1.7.302": "0", + "1.1.7.303": "0", + "1.1.7.304": "0", + "1.1.7.305": "0", + "1.1.7.306": "0", + "1.1.7.307": "0", + "1.1.7.308": "0", + "1.1.7.309": "0", + "1.1.7.310": "0", + "1.1.7.311": "0", + "1.1.7.312": "0", + "1.1.7.313": "0", + "1.1.7.314": "0", + "1.1.7.315": "0", + "1.1.7.316": "0", + "1.1.7.317": "0", + "1.1.7.318": "0", + "1.1.7.319": "0", + "1.1.7.320": "0", + "1.1.7.321": "0", + "1.1.7.322": "0", + "1.1.7.323": "0", + "1.1.7.324": "0", + "1.1.7.325": "0", + "1.1.7.326": "0", + "1.1.7.327": "0", + "1.1.7.328": "0", + "1.1.7.329": "0", + "1.1.7.330": "0", + "1.1.7.331": "0", + "1.1.7.332": "0", + "1.1.7.333": "0", + "1.1.7.334": "0", + "1.1.7.335": "0", + "1.1.7.336": "0", + "1.1.7.337": "0", + "1.1.7.338": "0", + "1.1.7.339": "0", + "1.1.7.340": "0", + "1.1.7.341": "0", + "1.1.7.342": "0", + "1.1.7.343": "0", + "1.1.7.344": "0", + "1.1.7.345": "0", + "1.1.7.346": "0", + "1.1.7.347": "0", + "1.1.7.348": "0", + "1.1.7.349": "0", + "1.1.7.350": "0", + "1.1.7.351": "0", + "1.1.7.352": "0", + "1.1.7.353": "0", + "1.1.7.354": "0", + "1.1.7.355": "0", + "1.1.7.356": "0", + "1.1.7.357": "0", + "1.1.7.358": "0", + "1.1.7.359": "0", + "1.1.7.360": "0", + "1.1.7.361": "0", + "1.1.7.362": "0", + "1.1.7.363": "0", + "1.1.7.364": "0", + "1.1.7.365": "0", + "1.1.7.366": "0", + "1.1.7.367": "0", + "1.1.7.368": "0", + "1.1.7.369": "0", + "1.1.7.370": "0", + "1.1.7.371": "0", + "1.1.7.372": "0", + "1.1.7.373": "0", + "1.1.7.374": "0", + "1.1.7.375": "0", + "1.1.7.376": "0", + "1.1.7.377": "0", + "1.1.7.378": "0", + "1.1.7.379": "0", + "1.1.7.380": "0", + "1.1.7.381": "0", + "1.1.7.382": "0", + "1.1.7.383": "0", + "1.1.7.384": "0", + "1.1.7.385": "0", + "1.1.7.386": "0", + "1.1.7.387": "0", + "1.1.7.388": "0", + "1.1.7.389": "0", + "1.1.7.390": "0", + "1.1.7.391": "0", + "1.1.7.392": "0", + "1.1.7.393": "0", + "1.1.7.394": "0", + "1.1.7.395": "0", + "1.1.7.396": "0", + "1.1.7.397": "0", + "1.1.7.398": "0", + "1.1.7.399": "0", + "1.1.7.400": "0", + "1.1.8.1": "2", + "1.1.8.2": "2", + "1.1.8.3": "2", + "1.1.8.4": "2", + "1.1.8.5": "2", + "1.1.8.6": "2", + "1.1.8.7": "2", + "1.1.8.8": "2", + "1.1.8.9": "2", + "1.1.8.10": "2", + "1.1.8.11": "2", + "1.1.8.12": "2", + "1.1.8.13": "2", + "1.1.8.14": "2", + "1.1.8.15": "2", + "1.1.8.16": "2", + "1.1.8.17": "2", + "1.1.8.18": "2", + "1.1.8.19": "2", + "1.1.8.20": "2", + "1.1.8.21": "2", + "1.1.8.22": "2", + "1.1.8.23": "2", + "1.1.8.24": "2", + "1.1.8.25": "2", + "1.1.8.26": "2", + "1.1.8.27": "2", + "1.1.8.28": "2", + "1.1.8.29": "2", + "1.1.8.30": "2", + "1.1.8.31": "2", + "1.1.8.32": "2", + "1.1.8.33": "2", + "1.1.8.34": "2", + "1.1.8.35": "2", + "1.1.8.36": "2", + "1.1.8.37": "2", + "1.1.8.38": "2", + "1.1.8.39": "2", + "1.1.8.40": "2", + "1.1.8.41": "2", + "1.1.8.42": "2", + "1.1.8.43": "2", + "1.1.8.44": "2", + "1.1.8.45": "2", + "1.1.8.46": "2", + "1.1.8.47": "2", + "1.1.8.48": "2", + "1.1.8.49": "2", + "1.1.8.50": "2", + "1.1.8.51": "2", + "1.1.8.52": "2", + "1.1.8.53": "2", + "1.1.8.54": "2", + "1.1.8.55": "2", + "1.1.8.56": "2", + "1.1.8.57": "2", + "1.1.8.58": "2", + "1.1.8.59": "2", + "1.1.8.60": "2", + "1.1.8.61": "2", + "1.1.8.62": "2", + "1.1.8.63": "2", + "1.1.8.64": "2", + "1.1.8.65": "2", + "1.1.8.66": "2", + "1.1.8.67": "2", + "1.1.8.68": "2", + "1.1.8.69": "2", + "1.1.8.70": "2", + "1.1.8.71": "2", + "1.1.8.72": "2", + "1.1.8.73": "2", + "1.1.8.74": "2", + "1.1.8.75": "2", + "1.1.8.76": "2", + "1.1.8.77": "2", + "1.1.8.78": "2", + "1.1.8.79": "2", + "1.1.8.80": "2", + "1.1.8.81": "2", + "1.1.8.82": "2", + "1.1.8.83": "2", + "1.1.8.84": "2", + "1.1.8.85": "2", + "1.1.8.86": "2", + "1.1.8.87": "2", + "1.1.8.88": "2", + "1.1.8.89": "2", + "1.1.8.90": "2", + "1.1.8.91": "2", + "1.1.8.92": "2", + "1.1.8.93": "2", + "1.1.8.94": "2", + "1.1.8.95": "2", + "1.1.8.96": "2", + "1.1.8.97": "2", + "1.1.8.98": "2", + "1.1.8.99": "2", + "1.1.8.100": "2", + "1.1.8.101": "2", + "1.1.8.102": "2", + "1.1.8.103": "2", + "1.1.8.104": "2", + "1.1.8.105": "2", + "1.1.8.106": "2", + "1.1.8.107": "2", + "1.1.8.108": "2", + "1.1.8.109": "2", + "1.1.8.110": "2", + "1.1.8.111": "2", + "1.1.8.112": "2", + "1.1.8.113": "2", + "1.1.8.114": "2", + "1.1.8.115": "2", + "1.1.8.116": "2", + "1.1.8.117": "2", + "1.1.8.118": "2", + "1.1.8.119": "2", + "1.1.8.120": "2", + "1.1.8.121": "2", + "1.1.8.122": "2", + "1.1.8.123": "2", + "1.1.8.124": "2", + "1.1.8.125": "2", + "1.1.8.126": "2", + "1.1.8.127": "2", + "1.1.8.128": "2", + "1.1.8.129": "2", + "1.1.8.130": "2", + "1.1.8.131": "2", + "1.1.8.132": "2", + "1.1.8.133": "2", + "1.1.8.134": "2", + "1.1.8.135": "2", + "1.1.8.136": "2", + "1.1.8.137": "2", + "1.1.8.138": "2", + "1.1.8.139": "2", + "1.1.8.140": "2", + "1.1.8.141": "2", + "1.1.8.142": "2", + "1.1.8.143": "2", + "1.1.8.144": "2", + "1.1.8.145": "2", + "1.1.8.146": "2", + "1.1.8.147": "2", + "1.1.8.148": "2", + "1.1.8.149": "2", + "1.1.8.150": "2", + "1.1.8.151": "2", + "1.1.8.152": "2", + "1.1.8.153": "2", + "1.1.8.154": "2", + "1.1.8.155": "2", + "1.1.8.156": "2", + "1.1.8.157": "2", + "1.1.8.158": "2", + "1.1.8.159": "2", + "1.1.8.160": "2", + "1.1.8.161": "2", + "1.1.8.162": "2", + "1.1.8.163": "2", + "1.1.8.164": "2", + "1.1.8.165": "2", + "1.1.8.166": "2", + "1.1.8.167": "2", + "1.1.8.168": "2", + "1.1.8.169": "2", + "1.1.8.170": "2", + "1.1.8.171": "2", + "1.1.8.172": "2", + "1.1.8.173": "2", + "1.1.8.174": "2", + "1.1.8.175": "2", + "1.1.8.176": "2", + "1.1.8.177": "2", + "1.1.8.178": "2", + "1.1.8.179": "2", + "1.1.8.180": "2", + "1.1.8.181": "2", + "1.1.8.182": "2", + "1.1.8.183": "2", + "1.1.8.184": "2", + "1.1.8.185": "2", + "1.1.8.186": "2", + "1.1.8.187": "2", + "1.1.8.188": "2", + "1.1.8.189": "2", + "1.1.8.190": "2", + "1.1.8.191": "2", + "1.1.8.192": "2", + "1.1.8.193": "2", + "1.1.8.194": "2", + "1.1.8.195": "2", + "1.1.8.196": "2", + "1.1.8.197": "2", + "1.1.8.198": "2", + "1.1.8.199": "2", + "1.1.8.200": "2", + "1.1.8.201": "2", + "1.1.8.202": "2", + "1.1.8.203": "2", + "1.1.8.204": "2", + "1.1.8.205": "2", + "1.1.8.206": "2", + "1.1.8.207": "2", + "1.1.8.208": "2", + "1.1.8.209": "2", + "1.1.8.210": "2", + "1.1.8.211": "2", + "1.1.8.212": "2", + "1.1.8.213": "2", + "1.1.8.214": "2", + "1.1.8.215": "2", + "1.1.8.216": "2", + "1.1.8.217": "2", + "1.1.8.218": "2", + "1.1.8.219": "2", + "1.1.8.220": "2", + "1.1.8.221": "2", + "1.1.8.222": "2", + "1.1.8.223": "2", + "1.1.8.224": "2", + "1.1.8.225": "2", + "1.1.8.226": "2", + "1.1.8.227": "2", + "1.1.8.228": "2", + "1.1.8.229": "2", + "1.1.8.230": "2", + "1.1.8.231": "2", + "1.1.8.232": "2", + "1.1.8.233": "2", + "1.1.8.234": "2", + "1.1.8.235": "2", + "1.1.8.236": "2", + "1.1.8.237": "2", + "1.1.8.238": "2", + "1.1.8.239": "2", + "1.1.8.240": "2", + "1.1.8.241": "2", + "1.1.8.242": "2", + "1.1.8.243": "2", + "1.1.8.244": "2", + "1.1.8.245": "2", + "1.1.8.246": "2", + "1.1.8.247": "2", + "1.1.8.248": "2", + "1.1.8.249": "2", + "1.1.8.250": "2", + "1.1.8.251": "2", + "1.1.8.252": "2", + "1.1.8.253": "2", + "1.1.8.254": "2", + "1.1.8.255": "2", + "1.1.8.256": "2", + "1.1.8.257": "2", + "1.1.8.258": "2", + "1.1.8.259": "2", + "1.1.8.260": "2", + "1.1.8.261": "2", + "1.1.8.262": "2", + "1.1.8.263": "2", + "1.1.8.264": "2", + "1.1.8.265": "2", + "1.1.8.266": "2", + "1.1.8.267": "2", + "1.1.8.268": "2", + "1.1.8.269": "2", + "1.1.8.270": "2", + "1.1.8.271": "2", + "1.1.8.272": "2", + "1.1.8.273": "2", + "1.1.8.274": "2", + "1.1.8.275": "2", + "1.1.8.276": "2", + "1.1.8.277": "2", + "1.1.8.278": "2", + "1.1.8.279": "2", + "1.1.8.280": "2", + "1.1.8.281": "2", + "1.1.8.282": "2", + "1.1.8.283": "2", + "1.1.8.284": "2", + "1.1.8.285": "2", + "1.1.8.286": "2", + "1.1.8.287": "2", + "1.1.8.288": "2", + "1.1.8.289": "2", + "1.1.8.290": "2", + "1.1.8.291": "2", + "1.1.8.292": "2", + "1.1.8.293": "2", + "1.1.8.294": "2", + "1.1.8.295": "2", + "1.1.8.296": "2", + "1.1.8.297": "2", + "1.1.8.298": "2", + "1.1.8.299": "2", + "1.1.8.300": "2", + "1.1.8.301": "2", + "1.1.8.302": "2", + "1.1.8.303": "2", + "1.1.8.304": "2", + "1.1.8.305": "2", + "1.1.8.306": "2", + "1.1.8.307": "2", + "1.1.8.308": "2", + "1.1.8.309": "2", + "1.1.8.310": "2", + "1.1.8.311": "2", + "1.1.8.312": "2", + "1.1.8.313": "2", + "1.1.8.314": "2", + "1.1.8.315": "2", + "1.1.8.316": "2", + "1.1.8.317": "2", + "1.1.8.318": "2", + "1.1.8.319": "2", + "1.1.8.320": "2", + "1.1.8.321": "2", + "1.1.8.322": "2", + "1.1.8.323": "2", + "1.1.8.324": "2", + "1.1.8.325": "2", + "1.1.8.326": "2", + "1.1.8.327": "2", + "1.1.8.328": "2", + "1.1.8.329": "2", + "1.1.8.330": "2", + "1.1.8.331": "2", + "1.1.8.332": "2", + "1.1.8.333": "2", + "1.1.8.334": "2", + "1.1.8.335": "2", + "1.1.8.336": "2", + "1.1.8.337": "2", + "1.1.8.338": "2", + "1.1.8.339": "2", + "1.1.8.340": "2", + "1.1.8.341": "2", + "1.1.8.342": "2", + "1.1.8.343": "2", + "1.1.8.344": "2", + "1.1.8.345": "2", + "1.1.8.346": "2", + "1.1.8.347": "2", + "1.1.8.348": "2", + "1.1.8.349": "2", + "1.1.8.350": "2", + "1.1.8.351": "2", + "1.1.8.352": "2", + "1.1.8.353": "2", + "1.1.8.354": "2", + "1.1.8.355": "2", + "1.1.8.356": "2", + "1.1.8.357": "2", + "1.1.8.358": "2", + "1.1.8.359": "2", + "1.1.8.360": "2", + "1.1.8.361": "2", + "1.1.8.362": "2", + "1.1.8.363": "2", + "1.1.8.364": "2", + "1.1.8.365": "2", + "1.1.8.366": "2", + "1.1.8.367": "2", + "1.1.8.368": "2", + "1.1.8.369": "2", + "1.1.8.370": "2", + "1.1.8.371": "2", + "1.1.8.372": "2", + "1.1.8.373": "2", + "1.1.8.374": "2", + "1.1.8.375": "2", + "1.1.8.376": "2", + "1.1.8.377": "2", + "1.1.8.378": "2", + "1.1.8.379": "2", + "1.1.8.380": "2", + "1.1.8.381": "2", + "1.1.8.382": "2", + "1.1.8.383": "2", + "1.1.8.384": "2", + "1.1.8.385": "2", + "1.1.8.386": "2", + "1.1.8.387": "2", + "1.1.8.388": "2", + "1.1.8.389": "2", + "1.1.8.390": "2", + "1.1.8.391": "2", + "1.1.8.392": "2", + "1.1.8.393": "2", + "1.1.8.394": "2", + "1.1.8.395": "2", + "1.1.8.396": "2", + "1.1.8.397": "2", + "1.1.8.398": "2", + "1.1.8.399": "2", + "1.1.8.400": "2", + "1.1.9.1": "2", + "1.1.9.2": "2", + "1.1.9.3": "2", + "1.1.9.4": "2", + "1.1.9.5": "2", + "1.1.9.6": "2", + "1.1.9.7": "2", + "1.1.9.8": "2", + "1.1.9.9": "2", + "1.1.9.10": "2", + "1.1.9.11": "2", + "1.1.9.12": "2", + "1.1.9.13": "2", + "1.1.9.14": "2", + "1.1.9.15": "2", + "1.1.9.16": "2", + "1.1.9.17": "2", + "1.1.9.18": "2", + "1.1.9.19": "2", + "1.1.9.20": "2", + "1.1.9.21": "2", + "1.1.9.22": "2", + "1.1.9.23": "2", + "1.1.9.24": "2", + "1.1.9.25": "2", + "1.1.9.26": "2", + "1.1.9.27": "2", + "1.1.9.28": "2", + "1.1.9.29": "2", + "1.1.9.30": "2", + "1.1.9.31": "2", + "1.1.9.32": "2", + "1.1.9.33": "2", + "1.1.9.34": "2", + "1.1.9.35": "2", + "1.1.9.36": "2", + "1.1.9.37": "2", + "1.1.9.38": "2", + "1.1.9.39": "2", + "1.1.9.40": "2", + "1.1.9.41": "2", + "1.1.9.42": "2", + "1.1.9.43": "2", + "1.1.9.44": "2", + "1.1.9.45": "2", + "1.1.9.46": "2", + "1.1.9.47": "2", + "1.1.9.48": "2", + "1.1.9.49": "2", + "1.1.9.50": "2", + "1.1.9.51": "2", + "1.1.9.52": "2", + "1.1.9.53": "2", + "1.1.9.54": "2", + "1.1.9.55": "2", + "1.1.9.56": "2", + "1.1.9.57": "2", + "1.1.9.58": "2", + "1.1.9.59": "2", + "1.1.9.60": "2", + "1.1.9.61": "2", + "1.1.9.62": "2", + "1.1.9.63": "2", + "1.1.9.64": "2", + "1.1.9.65": "2", + "1.1.9.66": "2", + "1.1.9.67": "2", + "1.1.9.68": "2", + "1.1.9.69": "2", + "1.1.9.70": "2", + "1.1.9.71": "2", + "1.1.9.72": "2", + "1.1.9.73": "2", + "1.1.9.74": "2", + "1.1.9.75": "2", + "1.1.9.76": "2", + "1.1.9.77": "2", + "1.1.9.78": "2", + "1.1.9.79": "2", + "1.1.9.80": "2", + "1.1.9.81": "2", + "1.1.9.82": "2", + "1.1.9.83": "2", + "1.1.9.84": "2", + "1.1.9.85": "2", + "1.1.9.86": "2", + "1.1.9.87": "2", + "1.1.9.88": "2", + "1.1.9.89": "2", + "1.1.9.90": "2", + "1.1.9.91": "2", + "1.1.9.92": "2", + "1.1.9.93": "2", + "1.1.9.94": "2", + "1.1.9.95": "2", + "1.1.9.96": "2", + "1.1.9.97": "2", + "1.1.9.98": "2", + "1.1.9.99": "2", + "1.1.9.100": "2", + "1.1.9.101": "2", + "1.1.9.102": "2", + "1.1.9.103": "2", + "1.1.9.104": "2", + "1.1.9.105": "2", + "1.1.9.106": "2", + "1.1.9.107": "2", + "1.1.9.108": "2", + "1.1.9.109": "2", + "1.1.9.110": "2", + "1.1.9.111": "2", + "1.1.9.112": "2", + "1.1.9.113": "2", + "1.1.9.114": "2", + "1.1.9.115": "2", + "1.1.9.116": "2", + "1.1.9.117": "2", + "1.1.9.118": "2", + "1.1.9.119": "2", + "1.1.9.120": "2", + "1.1.9.121": "2", + "1.1.9.122": "2", + "1.1.9.123": "2", + "1.1.9.124": "2", + "1.1.9.125": "2", + "1.1.9.126": "2", + "1.1.9.127": "2", + "1.1.9.128": "2", + "1.1.9.129": "2", + "1.1.9.130": "2", + "1.1.9.131": "2", + "1.1.9.132": "2", + "1.1.9.133": "2", + "1.1.9.134": "2", + "1.1.9.135": "2", + "1.1.9.136": "2", + "1.1.9.137": "2", + "1.1.9.138": "2", + "1.1.9.139": "2", + "1.1.9.140": "2", + "1.1.9.141": "2", + "1.1.9.142": "2", + "1.1.9.143": "2", + "1.1.9.144": "2", + "1.1.9.145": "2", + "1.1.9.146": "2", + "1.1.9.147": "2", + "1.1.9.148": "2", + "1.1.9.149": "2", + "1.1.9.150": "2", + "1.1.9.151": "2", + "1.1.9.152": "2", + "1.1.9.153": "2", + "1.1.9.154": "2", + "1.1.9.155": "2", + "1.1.9.156": "2", + "1.1.9.157": "2", + "1.1.9.158": "2", + "1.1.9.159": "2", + "1.1.9.160": "2", + "1.1.9.161": "2", + "1.1.9.162": "2", + "1.1.9.163": "2", + "1.1.9.164": "2", + "1.1.9.165": "2", + "1.1.9.166": "2", + "1.1.9.167": "2", + "1.1.9.168": "2", + "1.1.9.169": "2", + "1.1.9.170": "2", + "1.1.9.171": "2", + "1.1.9.172": "2", + "1.1.9.173": "2", + "1.1.9.174": "2", + "1.1.9.175": "2", + "1.1.9.176": "2", + "1.1.9.177": "2", + "1.1.9.178": "2", + "1.1.9.179": "2", + "1.1.9.180": "2", + "1.1.9.181": "2", + "1.1.9.182": "2", + "1.1.9.183": "2", + "1.1.9.184": "2", + "1.1.9.185": "2", + "1.1.9.186": "2", + "1.1.9.187": "2", + "1.1.9.188": "2", + "1.1.9.189": "2", + "1.1.9.190": "2", + "1.1.9.191": "2", + "1.1.9.192": "2", + "1.1.9.193": "2", + "1.1.9.194": "2", + "1.1.9.195": "2", + "1.1.9.196": "2", + "1.1.9.197": "2", + "1.1.9.198": "2", + "1.1.9.199": "2", + "1.1.9.200": "2", + "1.1.9.201": "2", + "1.1.9.202": "2", + "1.1.9.203": "2", + "1.1.9.204": "2", + "1.1.9.205": "2", + "1.1.9.206": "2", + "1.1.9.207": "2", + "1.1.9.208": "2", + "1.1.9.209": "2", + "1.1.9.210": "2", + "1.1.9.211": "2", + "1.1.9.212": "2", + "1.1.9.213": "2", + "1.1.9.214": "2", + "1.1.9.215": "2", + "1.1.9.216": "2", + "1.1.9.217": "2", + "1.1.9.218": "2", + "1.1.9.219": "2", + "1.1.9.220": "2", + "1.1.9.221": "2", + "1.1.9.222": "2", + "1.1.9.223": "2", + "1.1.9.224": "2", + "1.1.9.225": "2", + "1.1.9.226": "2", + "1.1.9.227": "2", + "1.1.9.228": "2", + "1.1.9.229": "2", + "1.1.9.230": "2", + "1.1.9.231": "2", + "1.1.9.232": "2", + "1.1.9.233": "2", + "1.1.9.234": "2", + "1.1.9.235": "2", + "1.1.9.236": "2", + "1.1.9.237": "2", + "1.1.9.238": "2", + "1.1.9.239": "2", + "1.1.9.240": "2", + "1.1.9.241": "2", + "1.1.9.242": "2", + "1.1.9.243": "2", + "1.1.9.244": "2", + "1.1.9.245": "2", + "1.1.9.246": "2", + "1.1.9.247": "2", + "1.1.9.248": "2", + "1.1.9.249": "2", + "1.1.9.250": "2", + "1.1.9.251": "2", + "1.1.9.252": "2", + "1.1.9.253": "2", + "1.1.9.254": "2", + "1.1.9.255": "2", + "1.1.9.256": "2", + "1.1.9.257": "2", + "1.1.9.258": "2", + "1.1.9.259": "2", + "1.1.9.260": "2", + "1.1.9.261": "2", + "1.1.9.262": "2", + "1.1.9.263": "2", + "1.1.9.264": "2", + "1.1.9.265": "2", + "1.1.9.266": "2", + "1.1.9.267": "2", + "1.1.9.268": "2", + "1.1.9.269": "2", + "1.1.9.270": "2", + "1.1.9.271": "2", + "1.1.9.272": "2", + "1.1.9.273": "2", + "1.1.9.274": "2", + "1.1.9.275": "2", + "1.1.9.276": "2", + "1.1.9.277": "2", + "1.1.9.278": "2", + "1.1.9.279": "2", + "1.1.9.280": "2", + "1.1.9.281": "2", + "1.1.9.282": "2", + "1.1.9.283": "2", + "1.1.9.284": "2", + "1.1.9.285": "2", + "1.1.9.286": "2", + "1.1.9.287": "2", + "1.1.9.288": "2", + "1.1.9.289": "2", + "1.1.9.290": "2", + "1.1.9.291": "2", + "1.1.9.292": "2", + "1.1.9.293": "2", + "1.1.9.294": "2", + "1.1.9.295": "2", + "1.1.9.296": "2", + "1.1.9.297": "2", + "1.1.9.298": "2", + "1.1.9.299": "2", + "1.1.9.300": "2", + "1.1.9.301": "2", + "1.1.9.302": "2", + "1.1.9.303": "2", + "1.1.9.304": "2", + "1.1.9.305": "2", + "1.1.9.306": "2", + "1.1.9.307": "2", + "1.1.9.308": "2", + "1.1.9.309": "2", + "1.1.9.310": "2", + "1.1.9.311": "2", + "1.1.9.312": "2", + "1.1.9.313": "2", + "1.1.9.314": "2", + "1.1.9.315": "2", + "1.1.9.316": "2", + "1.1.9.317": "2", + "1.1.9.318": "2", + "1.1.9.319": "2", + "1.1.9.320": "2", + "1.1.9.321": "2", + "1.1.9.322": "2", + "1.1.9.323": "2", + "1.1.9.324": "2", + "1.1.9.325": "2", + "1.1.9.326": "2", + "1.1.9.327": "2", + "1.1.9.328": "2", + "1.1.9.329": "2", + "1.1.9.330": "2", + "1.1.9.331": "2", + "1.1.9.332": "2", + "1.1.9.333": "2", + "1.1.9.334": "2", + "1.1.9.335": "2", + "1.1.9.336": "2", + "1.1.9.337": "2", + "1.1.9.338": "2", + "1.1.9.339": "2", + "1.1.9.340": "2", + "1.1.9.341": "2", + "1.1.9.342": "2", + "1.1.9.343": "2", + "1.1.9.344": "2", + "1.1.9.345": "2", + "1.1.9.346": "2", + "1.1.9.347": "2", + "1.1.9.348": "2", + "1.1.9.349": "2", + "1.1.9.350": "2", + "1.1.9.351": "2", + "1.1.9.352": "2", + "1.1.9.353": "2", + "1.1.9.354": "2", + "1.1.9.355": "2", + "1.1.9.356": "2", + "1.1.9.357": "2", + "1.1.9.358": "2", + "1.1.9.359": "2", + "1.1.9.360": "2", + "1.1.9.361": "2", + "1.1.9.362": "2", + "1.1.9.363": "2", + "1.1.9.364": "2", + "1.1.9.365": "2", + "1.1.9.366": "2", + "1.1.9.367": "2", + "1.1.9.368": "2", + "1.1.9.369": "2", + "1.1.9.370": "2", + "1.1.9.371": "2", + "1.1.9.372": "2", + "1.1.9.373": "2", + "1.1.9.374": "2", + "1.1.9.375": "2", + "1.1.9.376": "2", + "1.1.9.377": "2", + "1.1.9.378": "2", + "1.1.9.379": "2", + "1.1.9.380": "2", + "1.1.9.381": "2", + "1.1.9.382": "2", + "1.1.9.383": "2", + "1.1.9.384": "2", + "1.1.9.385": "2", + "1.1.9.386": "2", + "1.1.9.387": "2", + "1.1.9.388": "2", + "1.1.9.389": "2", + "1.1.9.390": "2", + "1.1.9.391": "2", + "1.1.9.392": "2", + "1.1.9.393": "2", + "1.1.9.394": "2", + "1.1.9.395": "2", + "1.1.9.396": "2", + "1.1.9.397": "2", + "1.1.9.398": "2", + "1.1.9.399": "2", + "1.1.9.400": "2", + "1.1.10.1": "2", + "1.1.10.2": "2", + "1.1.10.3": "2", + "1.1.10.4": "2", + "1.1.10.5": "2", + "1.1.10.6": "1", + "1.1.10.7": "2", + "1.1.10.8": "2", + "1.1.10.9": "2", + "1.1.10.10": "2", + "1.1.10.11": "2", + "1.1.10.12": "2", + "1.1.10.13": "2", + "1.1.10.14": "2", + "1.1.10.15": "2", + "1.1.10.16": "2", + "1.1.10.17": "2", + "1.1.10.18": "2", + "1.1.10.19": "2", + "1.1.10.20": "2", + "1.1.10.21": "2", + "1.1.10.22": "2", + "1.1.10.23": "2", + "1.1.10.24": "2", + "1.1.10.25": "2", + "1.1.10.26": "2", + "1.1.10.27": "2", + "1.1.10.28": "2", + "1.1.10.29": "2", + "1.1.10.30": "2", + "1.1.10.31": "2", + "1.1.10.32": "2", + "1.1.10.33": "2", + "1.1.10.34": "2", + "1.1.10.35": "2", + "1.1.10.36": "2", + "1.1.10.37": "2", + "1.1.10.38": "2", + "1.1.10.39": "2", + "1.1.10.40": "2", + "1.1.10.41": "2", + "1.1.10.42": "2", + "1.1.10.43": "2", + "1.1.10.44": "2", + "1.1.10.45": "2", + "1.1.10.46": "2", + "1.1.10.47": "2", + "1.1.10.48": "2", + "1.1.10.49": "2", + "1.1.10.50": "2", + "1.1.10.51": "2", + "1.1.10.52": "2", + "1.1.10.53": "2", + "1.1.10.54": "2", + "1.1.10.55": "2", + "1.1.10.56": "2", + "1.1.10.57": "2", + "1.1.10.58": "2", + "1.1.10.59": "2", + "1.1.10.60": "2", + "1.1.10.61": "2", + "1.1.10.62": "2", + "1.1.10.63": "2", + "1.1.10.64": "2", + "1.1.10.65": "2", + "1.1.10.66": "2", + "1.1.10.67": "2", + "1.1.10.68": "2", + "1.1.10.69": "2", + "1.1.10.70": "2", + "1.1.10.71": "2", + "1.1.10.72": "2", + "1.1.10.73": "2", + "1.1.10.74": "2", + "1.1.10.75": "2", + "1.1.10.76": "2", + "1.1.10.77": "2", + "1.1.10.78": "2", + "1.1.10.79": "2", + "1.1.10.80": "2", + "1.1.10.81": "2", + "1.1.10.82": "2", + "1.1.10.83": "2", + "1.1.10.84": "2", + "1.1.10.85": "2", + "1.1.10.86": "2", + "1.1.10.87": "2", + "1.1.10.88": "2", + "1.1.10.89": "2", + "1.1.10.90": "2", + "1.1.10.91": "2", + "1.1.10.92": "2", + "1.1.10.93": "2", + "1.1.10.94": "2", + "1.1.10.95": "2", + "1.1.10.96": "2", + "1.1.10.97": "2", + "1.1.10.98": "2", + "1.1.10.99": "2", + "1.1.10.100": "2", + "1.1.10.101": "2", + "1.1.10.102": "2", + "1.1.10.103": "2", + "1.1.10.104": "2", + "1.1.10.105": "2", + "1.1.10.106": "2", + "1.1.10.107": "2", + "1.1.10.108": "2", + "1.1.10.109": "2", + "1.1.10.110": "2", + "1.1.10.111": "2", + "1.1.10.112": "2", + "1.1.10.113": "2", + "1.1.10.114": "2", + "1.1.10.115": "2", + "1.1.10.116": "2", + "1.1.10.117": "2", + "1.1.10.118": "2", + "1.1.10.119": "2", + "1.1.10.120": "2", + "1.1.10.121": "2", + "1.1.10.122": "2", + "1.1.10.123": "2", + "1.1.10.124": "2", + "1.1.10.125": "2", + "1.1.10.126": "2", + "1.1.10.127": "2", + "1.1.10.128": "2", + "1.1.10.129": "2", + "1.1.10.130": "2", + "1.1.10.131": "2", + "1.1.10.132": "2", + "1.1.10.133": "2", + "1.1.10.134": "2", + "1.1.10.135": "2", + "1.1.10.136": "2", + "1.1.10.137": "2", + "1.1.10.138": "2", + "1.1.10.139": "2", + "1.1.10.140": "2", + "1.1.10.141": "2", + "1.1.10.142": "2", + "1.1.10.143": "2", + "1.1.10.144": "2", + "1.1.10.145": "2", + "1.1.10.146": "2", + "1.1.10.147": "2", + "1.1.10.148": "2", + "1.1.10.149": "2", + "1.1.10.150": "2", + "1.1.10.151": "2", + "1.1.10.152": "2", + "1.1.10.153": "2", + "1.1.10.154": "2", + "1.1.10.155": "2", + "1.1.10.156": "2", + "1.1.10.157": "2", + "1.1.10.158": "2", + "1.1.10.159": "2", + "1.1.10.160": "2", + "1.1.10.161": "2", + "1.1.10.162": "2", + "1.1.10.163": "2", + "1.1.10.164": "2", + "1.1.10.165": "2", + "1.1.10.166": "2", + "1.1.10.167": "2", + "1.1.10.168": "2", + "1.1.10.169": "2", + "1.1.10.170": "2", + "1.1.10.171": "2", + "1.1.10.172": "2", + "1.1.10.173": "2", + "1.1.10.174": "2", + "1.1.10.175": "2", + "1.1.10.176": "2", + "1.1.10.177": "2", + "1.1.10.178": "2", + "1.1.10.179": "2", + "1.1.10.180": "2", + "1.1.10.181": "2", + "1.1.10.182": "2", + "1.1.10.183": "2", + "1.1.10.184": "2", + "1.1.10.185": "2", + "1.1.10.186": "2", + "1.1.10.187": "2", + "1.1.10.188": "2", + "1.1.10.189": "2", + "1.1.10.190": "2", + "1.1.10.191": "2", + "1.1.10.192": "2", + "1.1.10.193": "2", + "1.1.10.194": "2", + "1.1.10.195": "2", + "1.1.10.196": "2", + "1.1.10.197": "2", + "1.1.10.198": "2", + "1.1.10.199": "2", + "1.1.10.200": "2", + "1.1.10.201": "2", + "1.1.10.202": "2", + "1.1.10.203": "2", + "1.1.10.204": "2", + "1.1.10.205": "2", + "1.1.10.206": "1", + "1.1.10.207": "2", + "1.1.10.208": "2", + "1.1.10.209": "2", + "1.1.10.210": "2", + "1.1.10.211": "2", + "1.1.10.212": "2", + "1.1.10.213": "2", + "1.1.10.214": "2", + "1.1.10.215": "2", + "1.1.10.216": "2", + "1.1.10.217": "2", + "1.1.10.218": "2", + "1.1.10.219": "2", + "1.1.10.220": "2", + "1.1.10.221": "2", + "1.1.10.222": "2", + "1.1.10.223": "2", + "1.1.10.224": "2", + "1.1.10.225": "2", + "1.1.10.226": "2", + "1.1.10.227": "2", + "1.1.10.228": "2", + "1.1.10.229": "2", + "1.1.10.230": "2", + "1.1.10.231": "2", + "1.1.10.232": "2", + "1.1.10.233": "2", + "1.1.10.234": "2", + "1.1.10.235": "2", + "1.1.10.236": "2", + "1.1.10.237": "2", + "1.1.10.238": "2", + "1.1.10.239": "2", + "1.1.10.240": "2", + "1.1.10.241": "2", + "1.1.10.242": "2", + "1.1.10.243": "2", + "1.1.10.244": "2", + "1.1.10.245": "2", + "1.1.10.246": "2", + "1.1.10.247": "2", + "1.1.10.248": "2", + "1.1.10.249": "2", + "1.1.10.250": "2", + "1.1.10.251": "2", + "1.1.10.252": "2", + "1.1.10.253": "2", + "1.1.10.254": "2", + "1.1.10.255": "2", + "1.1.10.256": "2", + "1.1.10.257": "2", + "1.1.10.258": "2", + "1.1.10.259": "2", + "1.1.10.260": "2", + "1.1.10.261": "2", + "1.1.10.262": "2", + "1.1.10.263": "2", + "1.1.10.264": "2", + "1.1.10.265": "2", + "1.1.10.266": "2", + "1.1.10.267": "2", + "1.1.10.268": "2", + "1.1.10.269": "2", + "1.1.10.270": "2", + "1.1.10.271": "2", + "1.1.10.272": "2", + "1.1.10.273": "2", + "1.1.10.274": "2", + "1.1.10.275": "2", + "1.1.10.276": "2", + "1.1.10.277": "2", + "1.1.10.278": "2", + "1.1.10.279": "2", + "1.1.10.280": "2", + "1.1.10.281": "2", + "1.1.10.282": "2", + "1.1.10.283": "2", + "1.1.10.284": "2", + "1.1.10.285": "2", + "1.1.10.286": "2", + "1.1.10.287": "2", + "1.1.10.288": "2", + "1.1.10.289": "2", + "1.1.10.290": "2", + "1.1.10.291": "2", + "1.1.10.292": "2", + "1.1.10.293": "2", + "1.1.10.294": "2", + "1.1.10.295": "2", + "1.1.10.296": "2", + "1.1.10.297": "2", + "1.1.10.298": "2", + "1.1.10.299": "2", + "1.1.10.300": "2", + "1.1.10.301": "2", + "1.1.10.302": "2", + "1.1.10.303": "2", + "1.1.10.304": "2", + "1.1.10.305": "2", + "1.1.10.306": "2", + "1.1.10.307": "2", + "1.1.10.308": "2", + "1.1.10.309": "2", + "1.1.10.310": "2", + "1.1.10.311": "2", + "1.1.10.312": "2", + "1.1.10.313": "2", + "1.1.10.314": "2", + "1.1.10.315": "2", + "1.1.10.316": "2", + "1.1.10.317": "2", + "1.1.10.318": "2", + "1.1.10.319": "2", + "1.1.10.320": "2", + "1.1.10.321": "2", + "1.1.10.322": "2", + "1.1.10.323": "2", + "1.1.10.324": "2", + "1.1.10.325": "2", + "1.1.10.326": "2", + "1.1.10.327": "2", + "1.1.10.328": "2", + "1.1.10.329": "2", + "1.1.10.330": "2", + "1.1.10.331": "2", + "1.1.10.332": "2", + "1.1.10.333": "2", + "1.1.10.334": "2", + "1.1.10.335": "2", + "1.1.10.336": "2", + "1.1.10.337": "2", + "1.1.10.338": "2", + "1.1.10.339": "2", + "1.1.10.340": "2", + "1.1.10.341": "2", + "1.1.10.342": "2", + "1.1.10.343": "2", + "1.1.10.344": "2", + "1.1.10.345": "2", + "1.1.10.346": "2", + "1.1.10.347": "2", + "1.1.10.348": "2", + "1.1.10.349": "2", + "1.1.10.350": "2", + "1.1.10.351": "2", + "1.1.10.352": "2", + "1.1.10.353": "2", + "1.1.10.354": "2", + "1.1.10.355": "2", + "1.1.10.356": "2", + "1.1.10.357": "2", + "1.1.10.358": "2", + "1.1.10.359": "2", + "1.1.10.360": "2", + "1.1.10.361": "2", + "1.1.10.362": "2", + "1.1.10.363": "2", + "1.1.10.364": "2", + "1.1.10.365": "2", + "1.1.10.366": "2", + "1.1.10.367": "2", + "1.1.10.368": "2", + "1.1.10.369": "2", + "1.1.10.370": "2", + "1.1.10.371": "2", + "1.1.10.372": "2", + "1.1.10.373": "2", + "1.1.10.374": "2", + "1.1.10.375": "2", + "1.1.10.376": "2", + "1.1.10.377": "2", + "1.1.10.378": "2", + "1.1.10.379": "2", + "1.1.10.380": "2", + "1.1.10.381": "2", + "1.1.10.382": "2", + "1.1.10.383": "2", + "1.1.10.384": "2", + "1.1.10.385": "2", + "1.1.10.386": "2", + "1.1.10.387": "2", + "1.1.10.388": "2", + "1.1.10.389": "2", + "1.1.10.390": "2", + "1.1.10.391": "2", + "1.1.10.392": "2", + "1.1.10.393": "2", + "1.1.10.394": "2", + "1.1.10.395": "2", + "1.1.10.396": "2", + "1.1.10.397": "2", + "1.1.10.398": "2", + "1.1.10.399": "2", + "1.1.10.400": "2", + "1.1.11.1": "0", + "1.1.11.2": "0", + "1.1.11.3": "0", + "1.1.11.4": "0", + "1.1.11.5": "0", + "1.1.11.6": "1", + "1.1.11.7": "0", + "1.1.11.8": "0", + "1.1.11.9": "0", + "1.1.11.10": "0", + "1.1.11.11": "0", + "1.1.11.12": "0", + "1.1.11.13": "0", + "1.1.11.14": "0", + "1.1.11.15": "0", + "1.1.11.16": "0", + "1.1.11.17": "0", + "1.1.11.18": "0", + "1.1.11.19": "0", + "1.1.11.20": "0", + "1.1.11.21": "0", + "1.1.11.22": "0", + "1.1.11.23": "0", + "1.1.11.24": "0", + "1.1.11.25": "0", + "1.1.11.26": "0", + "1.1.11.27": "0", + "1.1.11.28": "0", + "1.1.11.29": "0", + "1.1.11.30": "0", + "1.1.11.31": "0", + "1.1.11.32": "0", + "1.1.11.33": "0", + "1.1.11.34": "0", + "1.1.11.35": "0", + "1.1.11.36": "0", + "1.1.11.37": "0", + "1.1.11.38": "0", + "1.1.11.39": "0", + "1.1.11.40": "0", + "1.1.11.41": "0", + "1.1.11.42": "0", + "1.1.11.43": "0", + "1.1.11.44": "0", + "1.1.11.45": "0", + "1.1.11.46": "0", + "1.1.11.47": "0", + "1.1.11.48": "0", + "1.1.11.49": "0", + "1.1.11.50": "0", + "1.1.11.51": "0", + "1.1.11.52": "0", + "1.1.11.53": "0", + "1.1.11.54": "0", + "1.1.11.55": "0", + "1.1.11.56": "0", + "1.1.11.57": "0", + "1.1.11.58": "0", + "1.1.11.59": "0", + "1.1.11.60": "0", + "1.1.11.61": "0", + "1.1.11.62": "0", + "1.1.11.63": "0", + "1.1.11.64": "0", + "1.1.11.65": "0", + "1.1.11.66": "0", + "1.1.11.67": "0", + "1.1.11.68": "0", + "1.1.11.69": "0", + "1.1.11.70": "0", + "1.1.11.71": "0", + "1.1.11.72": "0", + "1.1.11.73": "0", + "1.1.11.74": "0", + "1.1.11.75": "0", + "1.1.11.76": "0", + "1.1.11.77": "0", + "1.1.11.78": "0", + "1.1.11.79": "0", + "1.1.11.80": "0", + "1.1.11.81": "0", + "1.1.11.82": "0", + "1.1.11.83": "0", + "1.1.11.84": "0", + "1.1.11.85": "0", + "1.1.11.86": "0", + "1.1.11.87": "0", + "1.1.11.88": "0", + "1.1.11.89": "0", + "1.1.11.90": "0", + "1.1.11.91": "0", + "1.1.11.92": "0", + "1.1.11.93": "0", + "1.1.11.94": "0", + "1.1.11.95": "0", + "1.1.11.96": "0", + "1.1.11.97": "0", + "1.1.11.98": "0", + "1.1.11.99": "0", + "1.1.11.100": "0", + "1.1.11.101": "0", + "1.1.11.102": "0", + "1.1.11.103": "0", + "1.1.11.104": "0", + "1.1.11.105": "0", + "1.1.11.106": "0", + "1.1.11.107": "0", + "1.1.11.108": "0", + "1.1.11.109": "0", + "1.1.11.110": "0", + "1.1.11.111": "0", + "1.1.11.112": "0", + "1.1.11.113": "0", + "1.1.11.114": "0", + "1.1.11.115": "0", + "1.1.11.116": "0", + "1.1.11.117": "0", + "1.1.11.118": "0", + "1.1.11.119": "0", + "1.1.11.120": "0", + "1.1.11.121": "0", + "1.1.11.122": "0", + "1.1.11.123": "0", + "1.1.11.124": "0", + "1.1.11.125": "0", + "1.1.11.126": "0", + "1.1.11.127": "0", + "1.1.11.128": "0", + "1.1.11.129": "0", + "1.1.11.130": "0", + "1.1.11.131": "0", + "1.1.11.132": "0", + "1.1.11.133": "0", + "1.1.11.134": "0", + "1.1.11.135": "0", + "1.1.11.136": "0", + "1.1.11.137": "0", + "1.1.11.138": "0", + "1.1.11.139": "0", + "1.1.11.140": "0", + "1.1.11.141": "0", + "1.1.11.142": "0", + "1.1.11.143": "0", + "1.1.11.144": "0", + "1.1.11.145": "0", + "1.1.11.146": "0", + "1.1.11.147": "0", + "1.1.11.148": "0", + "1.1.11.149": "0", + "1.1.11.150": "0", + "1.1.11.151": "0", + "1.1.11.152": "0", + "1.1.11.153": "0", + "1.1.11.154": "0", + "1.1.11.155": "0", + "1.1.11.156": "0", + "1.1.11.157": "0", + "1.1.11.158": "0", + "1.1.11.159": "0", + "1.1.11.160": "0", + "1.1.11.161": "0", + "1.1.11.162": "0", + "1.1.11.163": "0", + "1.1.11.164": "0", + "1.1.11.165": "0", + "1.1.11.166": "0", + "1.1.11.167": "0", + "1.1.11.168": "0", + "1.1.11.169": "0", + "1.1.11.170": "0", + "1.1.11.171": "0", + "1.1.11.172": "0", + "1.1.11.173": "0", + "1.1.11.174": "0", + "1.1.11.175": "0", + "1.1.11.176": "0", + "1.1.11.177": "0", + "1.1.11.178": "0", + "1.1.11.179": "0", + "1.1.11.180": "0", + "1.1.11.181": "0", + "1.1.11.182": "0", + "1.1.11.183": "0", + "1.1.11.184": "0", + "1.1.11.185": "0", + "1.1.11.186": "0", + "1.1.11.187": "0", + "1.1.11.188": "0", + "1.1.11.189": "0", + "1.1.11.190": "0", + "1.1.11.191": "0", + "1.1.11.192": "0", + "1.1.11.193": "0", + "1.1.11.194": "0", + "1.1.11.195": "0", + "1.1.11.196": "0", + "1.1.11.197": "0", + "1.1.11.198": "0", + "1.1.11.199": "0", + "1.1.11.200": "0", + "1.1.11.201": "0", + "1.1.11.202": "0", + "1.1.11.203": "0", + "1.1.11.204": "0", + "1.1.11.205": "0", + "1.1.11.206": "1", + "1.1.11.207": "0", + "1.1.11.208": "0", + "1.1.11.209": "0", + "1.1.11.210": "0", + "1.1.11.211": "0", + "1.1.11.212": "0", + "1.1.11.213": "0", + "1.1.11.214": "0", + "1.1.11.215": "0", + "1.1.11.216": "0", + "1.1.11.217": "0", + "1.1.11.218": "0", + "1.1.11.219": "0", + "1.1.11.220": "0", + "1.1.11.221": "0", + "1.1.11.222": "0", + "1.1.11.223": "0", + "1.1.11.224": "0", + "1.1.11.225": "0", + "1.1.11.226": "0", + "1.1.11.227": "0", + "1.1.11.228": "0", + "1.1.11.229": "0", + "1.1.11.230": "0", + "1.1.11.231": "0", + "1.1.11.232": "0", + "1.1.11.233": "0", + "1.1.11.234": "0", + "1.1.11.235": "0", + "1.1.11.236": "0", + "1.1.11.237": "0", + "1.1.11.238": "0", + "1.1.11.239": "0", + "1.1.11.240": "0", + "1.1.11.241": "0", + "1.1.11.242": "0", + "1.1.11.243": "0", + "1.1.11.244": "0", + "1.1.11.245": "0", + "1.1.11.246": "0", + "1.1.11.247": "0", + "1.1.11.248": "0", + "1.1.11.249": "0", + "1.1.11.250": "0", + "1.1.11.251": "0", + "1.1.11.252": "0", + "1.1.11.253": "0", + "1.1.11.254": "0", + "1.1.11.255": "0", + "1.1.11.256": "0", + "1.1.11.257": "0", + "1.1.11.258": "0", + "1.1.11.259": "0", + "1.1.11.260": "0", + "1.1.11.261": "0", + "1.1.11.262": "0", + "1.1.11.263": "0", + "1.1.11.264": "0", + "1.1.11.265": "0", + "1.1.11.266": "0", + "1.1.11.267": "0", + "1.1.11.268": "0", + "1.1.11.269": "0", + "1.1.11.270": "0", + "1.1.11.271": "0", + "1.1.11.272": "0", + "1.1.11.273": "0", + "1.1.11.274": "0", + "1.1.11.275": "0", + "1.1.11.276": "0", + "1.1.11.277": "0", + "1.1.11.278": "0", + "1.1.11.279": "0", + "1.1.11.280": "0", + "1.1.11.281": "0", + "1.1.11.282": "0", + "1.1.11.283": "0", + "1.1.11.284": "0", + "1.1.11.285": "0", + "1.1.11.286": "0", + "1.1.11.287": "0", + "1.1.11.288": "0", + "1.1.11.289": "0", + "1.1.11.290": "0", + "1.1.11.291": "0", + "1.1.11.292": "0", + "1.1.11.293": "0", + "1.1.11.294": "0", + "1.1.11.295": "0", + "1.1.11.296": "0", + "1.1.11.297": "0", + "1.1.11.298": "0", + "1.1.11.299": "0", + "1.1.11.300": "0", + "1.1.11.301": "0", + "1.1.11.302": "0", + "1.1.11.303": "0", + "1.1.11.304": "0", + "1.1.11.305": "0", + "1.1.11.306": "0", + "1.1.11.307": "0", + "1.1.11.308": "0", + "1.1.11.309": "0", + "1.1.11.310": "0", + "1.1.11.311": "0", + "1.1.11.312": "0", + "1.1.11.313": "0", + "1.1.11.314": "0", + "1.1.11.315": "0", + "1.1.11.316": "0", + "1.1.11.317": "0", + "1.1.11.318": "0", + "1.1.11.319": "0", + "1.1.11.320": "0", + "1.1.11.321": "0", + "1.1.11.322": "0", + "1.1.11.323": "0", + "1.1.11.324": "0", + "1.1.11.325": "0", + "1.1.11.326": "0", + "1.1.11.327": "0", + "1.1.11.328": "0", + "1.1.11.329": "0", + "1.1.11.330": "0", + "1.1.11.331": "0", + "1.1.11.332": "0", + "1.1.11.333": "0", + "1.1.11.334": "0", + "1.1.11.335": "0", + "1.1.11.336": "0", + "1.1.11.337": "0", + "1.1.11.338": "0", + "1.1.11.339": "0", + "1.1.11.340": "0", + "1.1.11.341": "0", + "1.1.11.342": "0", + "1.1.11.343": "0", + "1.1.11.344": "0", + "1.1.11.345": "0", + "1.1.11.346": "0", + "1.1.11.347": "0", + "1.1.11.348": "0", + "1.1.11.349": "0", + "1.1.11.350": "0", + "1.1.11.351": "0", + "1.1.11.352": "0", + "1.1.11.353": "0", + "1.1.11.354": "0", + "1.1.11.355": "0", + "1.1.11.356": "0", + "1.1.11.357": "0", + "1.1.11.358": "0", + "1.1.11.359": "0", + "1.1.11.360": "0", + "1.1.11.361": "0", + "1.1.11.362": "0", + "1.1.11.363": "0", + "1.1.11.364": "0", + "1.1.11.365": "0", + "1.1.11.366": "0", + "1.1.11.367": "0", + "1.1.11.368": "0", + "1.1.11.369": "0", + "1.1.11.370": "0", + "1.1.11.371": "0", + "1.1.11.372": "0", + "1.1.11.373": "0", + "1.1.11.374": "0", + "1.1.11.375": "0", + "1.1.11.376": "0", + "1.1.11.377": "0", + "1.1.11.378": "0", + "1.1.11.379": "0", + "1.1.11.380": "0", + "1.1.11.381": "0", + "1.1.11.382": "0", + "1.1.11.383": "0", + "1.1.11.384": "0", + "1.1.11.385": "0", + "1.1.11.386": "0", + "1.1.11.387": "0", + "1.1.11.388": "0", + "1.1.11.389": "0", + "1.1.11.390": "0", + "1.1.11.391": "0", + "1.1.11.392": "0", + "1.1.11.393": "0", + "1.1.11.394": "0", + "1.1.11.395": "0", + "1.1.11.396": "0", + "1.1.11.397": "0", + "1.1.11.398": "0", + "1.1.11.399": "0", + "1.1.11.400": "0", + "1.1.12.1": "1", + "1.1.12.2": "1", + "1.1.12.3": "1", + "1.1.12.4": "1", + "1.1.12.5": "1", + "1.1.12.6": "1", + "1.1.12.7": "1", + "1.1.12.8": "1", + "1.1.12.9": "1", + "1.1.12.10": "1", + "1.1.12.11": "1", + "1.1.12.12": "1", + "1.1.12.13": "1", + "1.1.12.14": "1", + "1.1.12.15": "1", + "1.1.12.16": "1", + "1.1.12.17": "1", + "1.1.12.18": "1", + "1.1.12.19": "1", + "1.1.12.20": "1", + "1.1.12.21": "1", + "1.1.12.22": "1", + "1.1.12.23": "1", + "1.1.12.24": "1", + "1.1.12.25": "1", + "1.1.12.26": "1", + "1.1.12.27": "1", + "1.1.12.28": "1", + "1.1.12.29": "1", + "1.1.12.30": "1", + "1.1.12.31": "1", + "1.1.12.32": "1", + "1.1.12.33": "1", + "1.1.12.34": "1", + "1.1.12.35": "1", + "1.1.12.36": "1", + "1.1.12.37": "1", + "1.1.12.38": "1", + "1.1.12.39": "1", + "1.1.12.40": "1", + "1.1.12.41": "1", + "1.1.12.42": "1", + "1.1.12.43": "1", + "1.1.12.44": "1", + "1.1.12.45": "1", + "1.1.12.46": "1", + "1.1.12.47": "1", + "1.1.12.48": "1", + "1.1.12.49": "1", + "1.1.12.50": "1", + "1.1.12.51": "1", + "1.1.12.52": "1", + "1.1.12.53": "1", + "1.1.12.54": "1", + "1.1.12.55": "1", + "1.1.12.56": "1", + "1.1.12.57": "1", + "1.1.12.58": "1", + "1.1.12.59": "1", + "1.1.12.60": "1", + "1.1.12.61": "1", + "1.1.12.62": "1", + "1.1.12.63": "1", + "1.1.12.64": "1", + "1.1.12.65": "1", + "1.1.12.66": "1", + "1.1.12.67": "1", + "1.1.12.68": "1", + "1.1.12.69": "1", + "1.1.12.70": "1", + "1.1.12.71": "1", + "1.1.12.72": "1", + "1.1.12.73": "1", + "1.1.12.74": "1", + "1.1.12.75": "1", + "1.1.12.76": "1", + "1.1.12.77": "1", + "1.1.12.78": "1", + "1.1.12.79": "1", + "1.1.12.80": "1", + "1.1.12.81": "1", + "1.1.12.82": "1", + "1.1.12.83": "1", + "1.1.12.84": "1", + "1.1.12.85": "1", + "1.1.12.86": "1", + "1.1.12.87": "1", + "1.1.12.88": "1", + "1.1.12.89": "1", + "1.1.12.90": "1", + "1.1.12.91": "1", + "1.1.12.92": "1", + "1.1.12.93": "1", + "1.1.12.94": "1", + "1.1.12.95": "1", + "1.1.12.96": "1", + "1.1.12.97": "1", + "1.1.12.98": "1", + "1.1.12.99": "1", + "1.1.12.100": "1", + "1.1.12.101": "1", + "1.1.12.102": "1", + "1.1.12.103": "1", + "1.1.12.104": "1", + "1.1.12.105": "1", + "1.1.12.106": "1", + "1.1.12.107": "1", + "1.1.12.108": "1", + "1.1.12.109": "1", + "1.1.12.110": "1", + "1.1.12.111": "1", + "1.1.12.112": "1", + "1.1.12.113": "1", + "1.1.12.114": "1", + "1.1.12.115": "1", + "1.1.12.116": "1", + "1.1.12.117": "1", + "1.1.12.118": "1", + "1.1.12.119": "1", + "1.1.12.120": "1", + "1.1.12.121": "1", + "1.1.12.122": "1", + "1.1.12.123": "1", + "1.1.12.124": "1", + "1.1.12.125": "1", + "1.1.12.126": "1", + "1.1.12.127": "1", + "1.1.12.128": "1", + "1.1.12.129": "1", + "1.1.12.130": "1", + "1.1.12.131": "1", + "1.1.12.132": "1", + "1.1.12.133": "1", + "1.1.12.134": "1", + "1.1.12.135": "1", + "1.1.12.136": "1", + "1.1.12.137": "1", + "1.1.12.138": "1", + "1.1.12.139": "1", + "1.1.12.140": "1", + "1.1.12.141": "1", + "1.1.12.142": "1", + "1.1.12.143": "1", + "1.1.12.144": "1", + "1.1.12.145": "1", + "1.1.12.146": "1", + "1.1.12.147": "1", + "1.1.12.148": "1", + "1.1.12.149": "1", + "1.1.12.150": "1", + "1.1.12.151": "1", + "1.1.12.152": "1", + "1.1.12.153": "1", + "1.1.12.154": "1", + "1.1.12.155": "1", + "1.1.12.156": "1", + "1.1.12.157": "1", + "1.1.12.158": "1", + "1.1.12.159": "1", + "1.1.12.160": "1", + "1.1.12.161": "1", + "1.1.12.162": "1", + "1.1.12.163": "1", + "1.1.12.164": "1", + "1.1.12.165": "1", + "1.1.12.166": "1", + "1.1.12.167": "1", + "1.1.12.168": "1", + "1.1.12.169": "1", + "1.1.12.170": "1", + "1.1.12.171": "1", + "1.1.12.172": "1", + "1.1.12.173": "1", + "1.1.12.174": "1", + "1.1.12.175": "1", + "1.1.12.176": "1", + "1.1.12.177": "1", + "1.1.12.178": "1", + "1.1.12.179": "1", + "1.1.12.180": "1", + "1.1.12.181": "1", + "1.1.12.182": "1", + "1.1.12.183": "1", + "1.1.12.184": "1", + "1.1.12.185": "1", + "1.1.12.186": "1", + "1.1.12.187": "1", + "1.1.12.188": "1", + "1.1.12.189": "1", + "1.1.12.190": "1", + "1.1.12.191": "1", + "1.1.12.192": "1", + "1.1.12.193": "1", + "1.1.12.194": "1", + "1.1.12.195": "1", + "1.1.12.196": "1", + "1.1.12.197": "1", + "1.1.12.198": "1", + "1.1.12.199": "1", + "1.1.12.200": "1", + "1.1.12.201": "1", + "1.1.12.202": "1", + "1.1.12.203": "1", + "1.1.12.204": "1", + "1.1.12.205": "1", + "1.1.12.206": "1", + "1.1.12.207": "1", + "1.1.12.208": "1", + "1.1.12.209": "1", + "1.1.12.210": "1", + "1.1.12.211": "1", + "1.1.12.212": "1", + "1.1.12.213": "1", + "1.1.12.214": "1", + "1.1.12.215": "1", + "1.1.12.216": "1", + "1.1.12.217": "1", + "1.1.12.218": "1", + "1.1.12.219": "1", + "1.1.12.220": "1", + "1.1.12.221": "1", + "1.1.12.222": "1", + "1.1.12.223": "1", + "1.1.12.224": "1", + "1.1.12.225": "1", + "1.1.12.226": "1", + "1.1.12.227": "1", + "1.1.12.228": "1", + "1.1.12.229": "1", + "1.1.12.230": "1", + "1.1.12.231": "1", + "1.1.12.232": "1", + "1.1.12.233": "1", + "1.1.12.234": "1", + "1.1.12.235": "1", + "1.1.12.236": "1", + "1.1.12.237": "1", + "1.1.12.238": "1", + "1.1.12.239": "1", + "1.1.12.240": "1", + "1.1.12.241": "1", + "1.1.12.242": "1", + "1.1.12.243": "1", + "1.1.12.244": "1", + "1.1.12.245": "1", + "1.1.12.246": "1", + "1.1.12.247": "1", + "1.1.12.248": "1", + "1.1.12.249": "1", + "1.1.12.250": "1", + "1.1.12.251": "1", + "1.1.12.252": "1", + "1.1.12.253": "1", + "1.1.12.254": "1", + "1.1.12.255": "1", + "1.1.12.256": "1", + "1.1.12.257": "1", + "1.1.12.258": "1", + "1.1.12.259": "1", + "1.1.12.260": "1", + "1.1.12.261": "1", + "1.1.12.262": "1", + "1.1.12.263": "1", + "1.1.12.264": "1", + "1.1.12.265": "1", + "1.1.12.266": "1", + "1.1.12.267": "1", + "1.1.12.268": "1", + "1.1.12.269": "1", + "1.1.12.270": "1", + "1.1.12.271": "1", + "1.1.12.272": "1", + "1.1.12.273": "1", + "1.1.12.274": "1", + "1.1.12.275": "1", + "1.1.12.276": "1", + "1.1.12.277": "1", + "1.1.12.278": "1", + "1.1.12.279": "1", + "1.1.12.280": "1", + "1.1.12.281": "1", + "1.1.12.282": "1", + "1.1.12.283": "1", + "1.1.12.284": "1", + "1.1.12.285": "1", + "1.1.12.286": "1", + "1.1.12.287": "1", + "1.1.12.288": "1", + "1.1.12.289": "1", + "1.1.12.290": "1", + "1.1.12.291": "1", + "1.1.12.292": "1", + "1.1.12.293": "1", + "1.1.12.294": "1", + "1.1.12.295": "1", + "1.1.12.296": "1", + "1.1.12.297": "1", + "1.1.12.298": "1", + "1.1.12.299": "1", + "1.1.12.300": "1", + "1.1.12.301": "1", + "1.1.12.302": "1", + "1.1.12.303": "1", + "1.1.12.304": "1", + "1.1.12.305": "1", + "1.1.12.306": "1", + "1.1.12.307": "1", + "1.1.12.308": "1", + "1.1.12.309": "1", + "1.1.12.310": "1", + "1.1.12.311": "1", + "1.1.12.312": "1", + "1.1.12.313": "1", + "1.1.12.314": "1", + "1.1.12.315": "1", + "1.1.12.316": "1", + "1.1.12.317": "1", + "1.1.12.318": "1", + "1.1.12.319": "1", + "1.1.12.320": "1", + "1.1.12.321": "1", + "1.1.12.322": "1", + "1.1.12.323": "1", + "1.1.12.324": "1", + "1.1.12.325": "1", + "1.1.12.326": "1", + "1.1.12.327": "1", + "1.1.12.328": "1", + "1.1.12.329": "1", + "1.1.12.330": "1", + "1.1.12.331": "1", + "1.1.12.332": "1", + "1.1.12.333": "1", + "1.1.12.334": "1", + "1.1.12.335": "1", + "1.1.12.336": "1", + "1.1.12.337": "1", + "1.1.12.338": "1", + "1.1.12.339": "1", + "1.1.12.340": "1", + "1.1.12.341": "1", + "1.1.12.342": "1", + "1.1.12.343": "1", + "1.1.12.344": "1", + "1.1.12.345": "1", + "1.1.12.346": "1", + "1.1.12.347": "1", + "1.1.12.348": "1", + "1.1.12.349": "1", + "1.1.12.350": "1", + "1.1.12.351": "1", + "1.1.12.352": "1", + "1.1.12.353": "1", + "1.1.12.354": "1", + "1.1.12.355": "1", + "1.1.12.356": "1", + "1.1.12.357": "1", + "1.1.12.358": "1", + "1.1.12.359": "1", + "1.1.12.360": "1", + "1.1.12.361": "1", + "1.1.12.362": "1", + "1.1.12.363": "1", + "1.1.12.364": "1", + "1.1.12.365": "1", + "1.1.12.366": "1", + "1.1.12.367": "1", + "1.1.12.368": "1", + "1.1.12.369": "1", + "1.1.12.370": "1", + "1.1.12.371": "1", + "1.1.12.372": "1", + "1.1.12.373": "1", + "1.1.12.374": "1", + "1.1.12.375": "1", + "1.1.12.376": "1", + "1.1.12.377": "1", + "1.1.12.378": "1", + "1.1.12.379": "1", + "1.1.12.380": "1", + "1.1.12.381": "1", + "1.1.12.382": "1", + "1.1.12.383": "1", + "1.1.12.384": "1", + "1.1.12.385": "1", + "1.1.12.386": "1", + "1.1.12.387": "1", + "1.1.12.388": "1", + "1.1.12.389": "1", + "1.1.12.390": "1", + "1.1.12.391": "1", + "1.1.12.392": "1", + "1.1.12.393": "1", + "1.1.12.394": "1", + "1.1.12.395": "1", + "1.1.12.396": "1", + "1.1.12.397": "1", + "1.1.12.398": "1", + "1.1.12.399": "1", + "1.1.12.400": "1", + "1.1.13.1": "2", + "1.1.13.2": "2", + "1.1.13.3": "2", + "1.1.13.4": "2", + "1.1.13.5": "2", + "1.1.13.6": "2", + "1.1.13.7": "2", + "1.1.13.8": "2", + "1.1.13.9": "2", + "1.1.13.10": "2", + "1.1.13.11": "2", + "1.1.13.12": "2", + "1.1.13.13": "2", + "1.1.13.14": "2", + "1.1.13.15": "2", + "1.1.13.16": "2", + "1.1.13.17": "2", + "1.1.13.18": "2", + "1.1.13.19": "2", + "1.1.13.20": "2", + "1.1.13.21": "2", + "1.1.13.22": "2", + "1.1.13.23": "2", + "1.1.13.24": "2", + "1.1.13.25": "2", + "1.1.13.26": "2", + "1.1.13.27": "2", + "1.1.13.28": "2", + "1.1.13.29": "2", + "1.1.13.30": "2", + "1.1.13.31": "2", + "1.1.13.32": "2", + "1.1.13.33": "2", + "1.1.13.34": "2", + "1.1.13.35": "2", + "1.1.13.36": "2", + "1.1.13.37": "2", + "1.1.13.38": "2", + "1.1.13.39": "2", + "1.1.13.40": "2", + "1.1.13.41": "2", + "1.1.13.42": "2", + "1.1.13.43": "2", + "1.1.13.44": "2", + "1.1.13.45": "2", + "1.1.13.46": "2", + "1.1.13.47": "2", + "1.1.13.48": "2", + "1.1.13.49": "2", + "1.1.13.50": "2", + "1.1.13.51": "2", + "1.1.13.52": "2", + "1.1.13.53": "2", + "1.1.13.54": "2", + "1.1.13.55": "2", + "1.1.13.56": "2", + "1.1.13.57": "2", + "1.1.13.58": "2", + "1.1.13.59": "2", + "1.1.13.60": "2", + "1.1.13.61": "2", + "1.1.13.62": "2", + "1.1.13.63": "2", + "1.1.13.64": "2", + "1.1.13.65": "2", + "1.1.13.66": "2", + "1.1.13.67": "2", + "1.1.13.68": "2", + "1.1.13.69": "2", + "1.1.13.70": "2", + "1.1.13.71": "2", + "1.1.13.72": "2", + "1.1.13.73": "2", + "1.1.13.74": "2", + "1.1.13.75": "2", + "1.1.13.76": "2", + "1.1.13.77": "2", + "1.1.13.78": "2", + "1.1.13.79": "2", + "1.1.13.80": "2", + "1.1.13.81": "2", + "1.1.13.82": "2", + "1.1.13.83": "2", + "1.1.13.84": "2", + "1.1.13.85": "2", + "1.1.13.86": "2", + "1.1.13.87": "2", + "1.1.13.88": "2", + "1.1.13.89": "2", + "1.1.13.90": "2", + "1.1.13.91": "2", + "1.1.13.92": "2", + "1.1.13.93": "2", + "1.1.13.94": "2", + "1.1.13.95": "2", + "1.1.13.96": "2", + "1.1.13.97": "2", + "1.1.13.98": "2", + "1.1.13.99": "2", + "1.1.13.100": "2", + "1.1.13.101": "2", + "1.1.13.102": "2", + "1.1.13.103": "2", + "1.1.13.104": "2", + "1.1.13.105": "2", + "1.1.13.106": "2", + "1.1.13.107": "2", + "1.1.13.108": "2", + "1.1.13.109": "2", + "1.1.13.110": "2", + "1.1.13.111": "2", + "1.1.13.112": "2", + "1.1.13.113": "2", + "1.1.13.114": "2", + "1.1.13.115": "2", + "1.1.13.116": "2", + "1.1.13.117": "2", + "1.1.13.118": "2", + "1.1.13.119": "2", + "1.1.13.120": "2", + "1.1.13.121": "2", + "1.1.13.122": "2", + "1.1.13.123": "2", + "1.1.13.124": "2", + "1.1.13.125": "2", + "1.1.13.126": "2", + "1.1.13.127": "2", + "1.1.13.128": "2", + "1.1.13.129": "2", + "1.1.13.130": "2", + "1.1.13.131": "2", + "1.1.13.132": "2", + "1.1.13.133": "2", + "1.1.13.134": "2", + "1.1.13.135": "2", + "1.1.13.136": "2", + "1.1.13.137": "2", + "1.1.13.138": "2", + "1.1.13.139": "2", + "1.1.13.140": "2", + "1.1.13.141": "2", + "1.1.13.142": "2", + "1.1.13.143": "2", + "1.1.13.144": "2", + "1.1.13.145": "2", + "1.1.13.146": "2", + "1.1.13.147": "2", + "1.1.13.148": "2", + "1.1.13.149": "2", + "1.1.13.150": "2", + "1.1.13.151": "2", + "1.1.13.152": "2", + "1.1.13.153": "2", + "1.1.13.154": "2", + "1.1.13.155": "2", + "1.1.13.156": "2", + "1.1.13.157": "2", + "1.1.13.158": "2", + "1.1.13.159": "2", + "1.1.13.160": "2", + "1.1.13.161": "2", + "1.1.13.162": "2", + "1.1.13.163": "2", + "1.1.13.164": "2", + "1.1.13.165": "2", + "1.1.13.166": "2", + "1.1.13.167": "2", + "1.1.13.168": "2", + "1.1.13.169": "2", + "1.1.13.170": "2", + "1.1.13.171": "2", + "1.1.13.172": "2", + "1.1.13.173": "2", + "1.1.13.174": "2", + "1.1.13.175": "2", + "1.1.13.176": "2", + "1.1.13.177": "2", + "1.1.13.178": "2", + "1.1.13.179": "2", + "1.1.13.180": "2", + "1.1.13.181": "2", + "1.1.13.182": "2", + "1.1.13.183": "2", + "1.1.13.184": "2", + "1.1.13.185": "2", + "1.1.13.186": "2", + "1.1.13.187": "2", + "1.1.13.188": "2", + "1.1.13.189": "2", + "1.1.13.190": "2", + "1.1.13.191": "2", + "1.1.13.192": "2", + "1.1.13.193": "2", + "1.1.13.194": "2", + "1.1.13.195": "2", + "1.1.13.196": "2", + "1.1.13.197": "2", + "1.1.13.198": "2", + "1.1.13.199": "2", + "1.1.13.200": "2", + "1.1.13.201": "2", + "1.1.13.202": "2", + "1.1.13.203": "2", + "1.1.13.204": "2", + "1.1.13.205": "2", + "1.1.13.206": "2", + "1.1.13.207": "2", + "1.1.13.208": "2", + "1.1.13.209": "2", + "1.1.13.210": "2", + "1.1.13.211": "2", + "1.1.13.212": "2", + "1.1.13.213": "2", + "1.1.13.214": "2", + "1.1.13.215": "2", + "1.1.13.216": "2", + "1.1.13.217": "2", + "1.1.13.218": "2", + "1.1.13.219": "2", + "1.1.13.220": "2", + "1.1.13.221": "2", + "1.1.13.222": "2", + "1.1.13.223": "2", + "1.1.13.224": "2", + "1.1.13.225": "2", + "1.1.13.226": "2", + "1.1.13.227": "2", + "1.1.13.228": "2", + "1.1.13.229": "2", + "1.1.13.230": "2", + "1.1.13.231": "2", + "1.1.13.232": "2", + "1.1.13.233": "2", + "1.1.13.234": "2", + "1.1.13.235": "2", + "1.1.13.236": "2", + "1.1.13.237": "2", + "1.1.13.238": "2", + "1.1.13.239": "2", + "1.1.13.240": "2", + "1.1.13.241": "2", + "1.1.13.242": "2", + "1.1.13.243": "2", + "1.1.13.244": "2", + "1.1.13.245": "2", + "1.1.13.246": "2", + "1.1.13.247": "2", + "1.1.13.248": "2", + "1.1.13.249": "2", + "1.1.13.250": "2", + "1.1.13.251": "2", + "1.1.13.252": "2", + "1.1.13.253": "2", + "1.1.13.254": "2", + "1.1.13.255": "2", + "1.1.13.256": "2", + "1.1.13.257": "2", + "1.1.13.258": "2", + "1.1.13.259": "2", + "1.1.13.260": "2", + "1.1.13.261": "2", + "1.1.13.262": "2", + "1.1.13.263": "2", + "1.1.13.264": "2", + "1.1.13.265": "2", + "1.1.13.266": "2", + "1.1.13.267": "2", + "1.1.13.268": "2", + "1.1.13.269": "2", + "1.1.13.270": "2", + "1.1.13.271": "2", + "1.1.13.272": "2", + "1.1.13.273": "2", + "1.1.13.274": "2", + "1.1.13.275": "2", + "1.1.13.276": "2", + "1.1.13.277": "2", + "1.1.13.278": "2", + "1.1.13.279": "2", + "1.1.13.280": "2", + "1.1.13.281": "2", + "1.1.13.282": "2", + "1.1.13.283": "2", + "1.1.13.284": "2", + "1.1.13.285": "2", + "1.1.13.286": "2", + "1.1.13.287": "2", + "1.1.13.288": "2", + "1.1.13.289": "2", + "1.1.13.290": "2", + "1.1.13.291": "2", + "1.1.13.292": "2", + "1.1.13.293": "2", + "1.1.13.294": "2", + "1.1.13.295": "2", + "1.1.13.296": "2", + "1.1.13.297": "2", + "1.1.13.298": "2", + "1.1.13.299": "2", + "1.1.13.300": "2", + "1.1.13.301": "2", + "1.1.13.302": "2", + "1.1.13.303": "2", + "1.1.13.304": "2", + "1.1.13.305": "2", + "1.1.13.306": "2", + "1.1.13.307": "2", + "1.1.13.308": "2", + "1.1.13.309": "2", + "1.1.13.310": "2", + "1.1.13.311": "2", + "1.1.13.312": "2", + "1.1.13.313": "2", + "1.1.13.314": "2", + "1.1.13.315": "2", + "1.1.13.316": "2", + "1.1.13.317": "2", + "1.1.13.318": "2", + "1.1.13.319": "2", + "1.1.13.320": "2", + "1.1.13.321": "2", + "1.1.13.322": "2", + "1.1.13.323": "2", + "1.1.13.324": "2", + "1.1.13.325": "2", + "1.1.13.326": "2", + "1.1.13.327": "2", + "1.1.13.328": "2", + "1.1.13.329": "2", + "1.1.13.330": "2", + "1.1.13.331": "2", + "1.1.13.332": "2", + "1.1.13.333": "2", + "1.1.13.334": "2", + "1.1.13.335": "2", + "1.1.13.336": "2", + "1.1.13.337": "2", + "1.1.13.338": "2", + "1.1.13.339": "2", + "1.1.13.340": "2", + "1.1.13.341": "2", + "1.1.13.342": "2", + "1.1.13.343": "2", + "1.1.13.344": "2", + "1.1.13.345": "2", + "1.1.13.346": "2", + "1.1.13.347": "2", + "1.1.13.348": "2", + "1.1.13.349": "2", + "1.1.13.350": "2", + "1.1.13.351": "2", + "1.1.13.352": "2", + "1.1.13.353": "2", + "1.1.13.354": "2", + "1.1.13.355": "2", + "1.1.13.356": "2", + "1.1.13.357": "2", + "1.1.13.358": "2", + "1.1.13.359": "2", + "1.1.13.360": "2", + "1.1.13.361": "2", + "1.1.13.362": "2", + "1.1.13.363": "2", + "1.1.13.364": "2", + "1.1.13.365": "2", + "1.1.13.366": "2", + "1.1.13.367": "2", + "1.1.13.368": "2", + "1.1.13.369": "2", + "1.1.13.370": "2", + "1.1.13.371": "2", + "1.1.13.372": "2", + "1.1.13.373": "2", + "1.1.13.374": "2", + "1.1.13.375": "2", + "1.1.13.376": "2", + "1.1.13.377": "2", + "1.1.13.378": "2", + "1.1.13.379": "2", + "1.1.13.380": "2", + "1.1.13.381": "2", + "1.1.13.382": "2", + "1.1.13.383": "2", + "1.1.13.384": "2", + "1.1.13.385": "2", + "1.1.13.386": "2", + "1.1.13.387": "2", + "1.1.13.388": "2", + "1.1.13.389": "2", + "1.1.13.390": "2", + "1.1.13.391": "2", + "1.1.13.392": "2", + "1.1.13.393": "2", + "1.1.13.394": "2", + "1.1.13.395": "2", + "1.1.13.396": "2", + "1.1.13.397": "2", + "1.1.13.398": "2", + "1.1.13.399": "2", + "1.1.13.400": "2", + "1.1.14.1": "1", + "1.1.14.2": "1", + "1.1.14.3": "1", + "1.1.14.4": "1", + "1.1.14.5": "1", + "1.1.14.6": "3", + "1.1.14.7": "1", + "1.1.14.8": "1", + "1.1.14.9": "1", + "1.1.14.10": "1", + "1.1.14.11": "1", + "1.1.14.12": "1", + "1.1.14.13": "1", + "1.1.14.14": "1", + "1.1.14.15": "1", + "1.1.14.16": "1", + "1.1.14.17": "1", + "1.1.14.18": "1", + "1.1.14.19": "1", + "1.1.14.20": "1", + "1.1.14.21": "1", + "1.1.14.22": "1", + "1.1.14.23": "1", + "1.1.14.24": "1", + "1.1.14.25": "1", + "1.1.14.26": "1", + "1.1.14.27": "1", + "1.1.14.28": "1", + "1.1.14.29": "1", + "1.1.14.30": "1", + "1.1.14.31": "1", + "1.1.14.32": "1", + "1.1.14.33": "1", + "1.1.14.34": "1", + "1.1.14.35": "1", + "1.1.14.36": "1", + "1.1.14.37": "1", + "1.1.14.38": "1", + "1.1.14.39": "1", + "1.1.14.40": "1", + "1.1.14.41": "1", + "1.1.14.42": "1", + "1.1.14.43": "1", + "1.1.14.44": "1", + "1.1.14.45": "1", + "1.1.14.46": "1", + "1.1.14.47": "1", + "1.1.14.48": "1", + "1.1.14.49": "1", + "1.1.14.50": "1", + "1.1.14.51": "1", + "1.1.14.52": "1", + "1.1.14.53": "1", + "1.1.14.54": "1", + "1.1.14.55": "1", + "1.1.14.56": "1", + "1.1.14.57": "1", + "1.1.14.58": "1", + "1.1.14.59": "1", + "1.1.14.60": "1", + "1.1.14.61": "1", + "1.1.14.62": "1", + "1.1.14.63": "1", + "1.1.14.64": "1", + "1.1.14.65": "1", + "1.1.14.66": "1", + "1.1.14.67": "1", + "1.1.14.68": "1", + "1.1.14.69": "1", + "1.1.14.70": "1", + "1.1.14.71": "1", + "1.1.14.72": "1", + "1.1.14.73": "1", + "1.1.14.74": "1", + "1.1.14.75": "1", + "1.1.14.76": "1", + "1.1.14.77": "1", + "1.1.14.78": "1", + "1.1.14.79": "1", + "1.1.14.80": "1", + "1.1.14.81": "1", + "1.1.14.82": "1", + "1.1.14.83": "1", + "1.1.14.84": "1", + "1.1.14.85": "1", + "1.1.14.86": "1", + "1.1.14.87": "1", + "1.1.14.88": "1", + "1.1.14.89": "1", + "1.1.14.90": "1", + "1.1.14.91": "1", + "1.1.14.92": "1", + "1.1.14.93": "1", + "1.1.14.94": "1", + "1.1.14.95": "1", + "1.1.14.96": "1", + "1.1.14.97": "1", + "1.1.14.98": "1", + "1.1.14.99": "1", + "1.1.14.100": "1", + "1.1.14.101": "1", + "1.1.14.102": "1", + "1.1.14.103": "1", + "1.1.14.104": "1", + "1.1.14.105": "1", + "1.1.14.106": "1", + "1.1.14.107": "1", + "1.1.14.108": "1", + "1.1.14.109": "1", + "1.1.14.110": "1", + "1.1.14.111": "1", + "1.1.14.112": "1", + "1.1.14.113": "1", + "1.1.14.114": "1", + "1.1.14.115": "1", + "1.1.14.116": "1", + "1.1.14.117": "1", + "1.1.14.118": "1", + "1.1.14.119": "1", + "1.1.14.120": "1", + "1.1.14.121": "1", + "1.1.14.122": "1", + "1.1.14.123": "1", + "1.1.14.124": "1", + "1.1.14.125": "1", + "1.1.14.126": "1", + "1.1.14.127": "1", + "1.1.14.128": "1", + "1.1.14.129": "1", + "1.1.14.130": "1", + "1.1.14.131": "1", + "1.1.14.132": "1", + "1.1.14.133": "1", + "1.1.14.134": "1", + "1.1.14.135": "1", + "1.1.14.136": "1", + "1.1.14.137": "1", + "1.1.14.138": "1", + "1.1.14.139": "1", + "1.1.14.140": "1", + "1.1.14.141": "1", + "1.1.14.142": "1", + "1.1.14.143": "1", + "1.1.14.144": "1", + "1.1.14.145": "1", + "1.1.14.146": "1", + "1.1.14.147": "1", + "1.1.14.148": "1", + "1.1.14.149": "1", + "1.1.14.150": "1", + "1.1.14.151": "1", + "1.1.14.152": "1", + "1.1.14.153": "1", + "1.1.14.154": "1", + "1.1.14.155": "1", + "1.1.14.156": "1", + "1.1.14.157": "1", + "1.1.14.158": "1", + "1.1.14.159": "1", + "1.1.14.160": "1", + "1.1.14.161": "1", + "1.1.14.162": "1", + "1.1.14.163": "1", + "1.1.14.164": "1", + "1.1.14.165": "1", + "1.1.14.166": "1", + "1.1.14.167": "1", + "1.1.14.168": "1", + "1.1.14.169": "1", + "1.1.14.170": "1", + "1.1.14.171": "1", + "1.1.14.172": "1", + "1.1.14.173": "1", + "1.1.14.174": "1", + "1.1.14.175": "1", + "1.1.14.176": "1", + "1.1.14.177": "1", + "1.1.14.178": "1", + "1.1.14.179": "1", + "1.1.14.180": "1", + "1.1.14.181": "1", + "1.1.14.182": "1", + "1.1.14.183": "1", + "1.1.14.184": "1", + "1.1.14.185": "1", + "1.1.14.186": "1", + "1.1.14.187": "1", + "1.1.14.188": "1", + "1.1.14.189": "1", + "1.1.14.190": "1", + "1.1.14.191": "1", + "1.1.14.192": "1", + "1.1.14.193": "1", + "1.1.14.194": "1", + "1.1.14.195": "1", + "1.1.14.196": "1", + "1.1.14.197": "1", + "1.1.14.198": "1", + "1.1.14.199": "1", + "1.1.14.200": "1", + "1.1.14.201": "1", + "1.1.14.202": "1", + "1.1.14.203": "1", + "1.1.14.204": "1", + "1.1.14.205": "1", + "1.1.14.206": "2", + "1.1.14.207": "1", + "1.1.14.208": "1", + "1.1.14.209": "1", + "1.1.14.210": "1", + "1.1.14.211": "1", + "1.1.14.212": "1", + "1.1.14.213": "1", + "1.1.14.214": "1", + "1.1.14.215": "1", + "1.1.14.216": "1", + "1.1.14.217": "1", + "1.1.14.218": "1", + "1.1.14.219": "1", + "1.1.14.220": "1", + "1.1.14.221": "1", + "1.1.14.222": "1", + "1.1.14.223": "1", + "1.1.14.224": "1", + "1.1.14.225": "1", + "1.1.14.226": "1", + "1.1.14.227": "1", + "1.1.14.228": "1", + "1.1.14.229": "1", + "1.1.14.230": "1", + "1.1.14.231": "1", + "1.1.14.232": "1", + "1.1.14.233": "1", + "1.1.14.234": "1", + "1.1.14.235": "1", + "1.1.14.236": "1", + "1.1.14.237": "1", + "1.1.14.238": "1", + "1.1.14.239": "1", + "1.1.14.240": "1", + "1.1.14.241": "1", + "1.1.14.242": "1", + "1.1.14.243": "1", + "1.1.14.244": "1", + "1.1.14.245": "1", + "1.1.14.246": "1", + "1.1.14.247": "1", + "1.1.14.248": "1", + "1.1.14.249": "1", + "1.1.14.250": "1", + "1.1.14.251": "1", + "1.1.14.252": "1", + "1.1.14.253": "1", + "1.1.14.254": "1", + "1.1.14.255": "1", + "1.1.14.256": "1", + "1.1.14.257": "1", + "1.1.14.258": "1", + "1.1.14.259": "1", + "1.1.14.260": "1", + "1.1.14.261": "1", + "1.1.14.262": "1", + "1.1.14.263": "1", + "1.1.14.264": "1", + "1.1.14.265": "1", + "1.1.14.266": "1", + "1.1.14.267": "1", + "1.1.14.268": "1", + "1.1.14.269": "1", + "1.1.14.270": "1", + "1.1.14.271": "1", + "1.1.14.272": "1", + "1.1.14.273": "1", + "1.1.14.274": "1", + "1.1.14.275": "1", + "1.1.14.276": "1", + "1.1.14.277": "1", + "1.1.14.278": "1", + "1.1.14.279": "1", + "1.1.14.280": "1", + "1.1.14.281": "1", + "1.1.14.282": "1", + "1.1.14.283": "1", + "1.1.14.284": "1", + "1.1.14.285": "1", + "1.1.14.286": "1", + "1.1.14.287": "1", + "1.1.14.288": "1", + "1.1.14.289": "1", + "1.1.14.290": "1", + "1.1.14.291": "1", + "1.1.14.292": "1", + "1.1.14.293": "1", + "1.1.14.294": "1", + "1.1.14.295": "1", + "1.1.14.296": "1", + "1.1.14.297": "1", + "1.1.14.298": "1", + "1.1.14.299": "1", + "1.1.14.300": "1", + "1.1.14.301": "1", + "1.1.14.302": "1", + "1.1.14.303": "1", + "1.1.14.304": "1", + "1.1.14.305": "1", + "1.1.14.306": "1", + "1.1.14.307": "1", + "1.1.14.308": "1", + "1.1.14.309": "1", + "1.1.14.310": "1", + "1.1.14.311": "1", + "1.1.14.312": "1", + "1.1.14.313": "1", + "1.1.14.314": "1", + "1.1.14.315": "1", + "1.1.14.316": "1", + "1.1.14.317": "1", + "1.1.14.318": "1", + "1.1.14.319": "1", + "1.1.14.320": "1", + "1.1.14.321": "1", + "1.1.14.322": "1", + "1.1.14.323": "1", + "1.1.14.324": "1", + "1.1.14.325": "1", + "1.1.14.326": "1", + "1.1.14.327": "1", + "1.1.14.328": "1", + "1.1.14.329": "1", + "1.1.14.330": "1", + "1.1.14.331": "1", + "1.1.14.332": "1", + "1.1.14.333": "1", + "1.1.14.334": "1", + "1.1.14.335": "1", + "1.1.14.336": "1", + "1.1.14.337": "1", + "1.1.14.338": "1", + "1.1.14.339": "1", + "1.1.14.340": "1", + "1.1.14.341": "1", + "1.1.14.342": "1", + "1.1.14.343": "1", + "1.1.14.344": "1", + "1.1.14.345": "1", + "1.1.14.346": "1", + "1.1.14.347": "1", + "1.1.14.348": "1", + "1.1.14.349": "1", + "1.1.14.350": "1", + "1.1.14.351": "1", + "1.1.14.352": "1", + "1.1.14.353": "1", + "1.1.14.354": "1", + "1.1.14.355": "1", + "1.1.14.356": "1", + "1.1.14.357": "1", + "1.1.14.358": "1", + "1.1.14.359": "1", + "1.1.14.360": "1", + "1.1.14.361": "1", + "1.1.14.362": "1", + "1.1.14.363": "1", + "1.1.14.364": "1", + "1.1.14.365": "1", + "1.1.14.366": "1", + "1.1.14.367": "1", + "1.1.14.368": "1", + "1.1.14.369": "1", + "1.1.14.370": "1", + "1.1.14.371": "1", + "1.1.14.372": "1", + "1.1.14.373": "1", + "1.1.14.374": "1", + "1.1.14.375": "1", + "1.1.14.376": "1", + "1.1.14.377": "1", + "1.1.14.378": "1", + "1.1.14.379": "1", + "1.1.14.380": "1", + "1.1.14.381": "1", + "1.1.14.382": "1", + "1.1.14.383": "1", + "1.1.14.384": "1", + "1.1.14.385": "1", + "1.1.14.386": "1", + "1.1.14.387": "1", + "1.1.14.388": "1", + "1.1.14.389": "1", + "1.1.14.390": "1", + "1.1.14.391": "1", + "1.1.14.392": "1", + "1.1.14.393": "1", + "1.1.14.394": "1", + "1.1.14.395": "1", + "1.1.14.396": "1", + "1.1.14.397": "1", + "1.1.14.398": "1", + "1.1.14.399": "1", + "1.1.14.400": "1", + "1.1.15.1": "1", + "1.1.15.2": "1", + "1.1.15.3": "1", + "1.1.15.4": "1", + "1.1.15.5": "1", + "1.1.15.6": "1", + "1.1.15.7": "1", + "1.1.15.8": "1", + "1.1.15.9": "1", + "1.1.15.10": "1", + "1.1.15.11": "1", + "1.1.15.12": "1", + "1.1.15.13": "1", + "1.1.15.14": "1", + "1.1.15.15": "1", + "1.1.15.16": "1", + "1.1.15.17": "1", + "1.1.15.18": "1", + "1.1.15.19": "1", + "1.1.15.20": "1", + "1.1.15.21": "1", + "1.1.15.22": "1", + "1.1.15.23": "1", + "1.1.15.24": "1", + "1.1.15.25": "1", + "1.1.15.26": "1", + "1.1.15.27": "1", + "1.1.15.28": "1", + "1.1.15.29": "1", + "1.1.15.30": "1", + "1.1.15.31": "1", + "1.1.15.32": "1", + "1.1.15.33": "1", + "1.1.15.34": "1", + "1.1.15.35": "1", + "1.1.15.36": "1", + "1.1.15.37": "1", + "1.1.15.38": "1", + "1.1.15.39": "1", + "1.1.15.40": "1", + "1.1.15.41": "1", + "1.1.15.42": "1", + "1.1.15.43": "1", + "1.1.15.44": "1", + "1.1.15.45": "1", + "1.1.15.46": "1", + "1.1.15.47": "1", + "1.1.15.48": "1", + "1.1.15.49": "1", + "1.1.15.50": "1", + "1.1.15.51": "1", + "1.1.15.52": "1", + "1.1.15.53": "1", + "1.1.15.54": "1", + "1.1.15.55": "1", + "1.1.15.56": "1", + "1.1.15.57": "1", + "1.1.15.58": "1", + "1.1.15.59": "1", + "1.1.15.60": "1", + "1.1.15.61": "1", + "1.1.15.62": "1", + "1.1.15.63": "1", + "1.1.15.64": "1", + "1.1.15.65": "1", + "1.1.15.66": "1", + "1.1.15.67": "1", + "1.1.15.68": "1", + "1.1.15.69": "1", + "1.1.15.70": "1", + "1.1.15.71": "1", + "1.1.15.72": "1", + "1.1.15.73": "1", + "1.1.15.74": "1", + "1.1.15.75": "1", + "1.1.15.76": "1", + "1.1.15.77": "1", + "1.1.15.78": "1", + "1.1.15.79": "1", + "1.1.15.80": "1", + "1.1.15.81": "1", + "1.1.15.82": "1", + "1.1.15.83": "1", + "1.1.15.84": "1", + "1.1.15.85": "1", + "1.1.15.86": "1", + "1.1.15.87": "1", + "1.1.15.88": "1", + "1.1.15.89": "1", + "1.1.15.90": "1", + "1.1.15.91": "1", + "1.1.15.92": "1", + "1.1.15.93": "1", + "1.1.15.94": "1", + "1.1.15.95": "1", + "1.1.15.96": "1", + "1.1.15.97": "1", + "1.1.15.98": "1", + "1.1.15.99": "1", + "1.1.15.100": "1", + "1.1.15.101": "1", + "1.1.15.102": "1", + "1.1.15.103": "1", + "1.1.15.104": "1", + "1.1.15.105": "1", + "1.1.15.106": "1", + "1.1.15.107": "1", + "1.1.15.108": "1", + "1.1.15.109": "1", + "1.1.15.110": "1", + "1.1.15.111": "1", + "1.1.15.112": "1", + "1.1.15.113": "1", + "1.1.15.114": "1", + "1.1.15.115": "1", + "1.1.15.116": "1", + "1.1.15.117": "1", + "1.1.15.118": "1", + "1.1.15.119": "1", + "1.1.15.120": "1", + "1.1.15.121": "1", + "1.1.15.122": "1", + "1.1.15.123": "1", + "1.1.15.124": "1", + "1.1.15.125": "1", + "1.1.15.126": "1", + "1.1.15.127": "1", + "1.1.15.128": "1", + "1.1.15.129": "1", + "1.1.15.130": "1", + "1.1.15.131": "1", + "1.1.15.132": "1", + "1.1.15.133": "1", + "1.1.15.134": "1", + "1.1.15.135": "1", + "1.1.15.136": "1", + "1.1.15.137": "1", + "1.1.15.138": "1", + "1.1.15.139": "1", + "1.1.15.140": "1", + "1.1.15.141": "1", + "1.1.15.142": "1", + "1.1.15.143": "1", + "1.1.15.144": "1", + "1.1.15.145": "1", + "1.1.15.146": "1", + "1.1.15.147": "1", + "1.1.15.148": "1", + "1.1.15.149": "1", + "1.1.15.150": "1", + "1.1.15.151": "1", + "1.1.15.152": "1", + "1.1.15.153": "1", + "1.1.15.154": "1", + "1.1.15.155": "1", + "1.1.15.156": "1", + "1.1.15.157": "1", + "1.1.15.158": "1", + "1.1.15.159": "1", + "1.1.15.160": "1", + "1.1.15.161": "1", + "1.1.15.162": "1", + "1.1.15.163": "1", + "1.1.15.164": "1", + "1.1.15.165": "1", + "1.1.15.166": "1", + "1.1.15.167": "1", + "1.1.15.168": "1", + "1.1.15.169": "1", + "1.1.15.170": "1", + "1.1.15.171": "1", + "1.1.15.172": "1", + "1.1.15.173": "1", + "1.1.15.174": "1", + "1.1.15.175": "1", + "1.1.15.176": "1", + "1.1.15.177": "1", + "1.1.15.178": "1", + "1.1.15.179": "1", + "1.1.15.180": "1", + "1.1.15.181": "1", + "1.1.15.182": "1", + "1.1.15.183": "1", + "1.1.15.184": "1", + "1.1.15.185": "1", + "1.1.15.186": "1", + "1.1.15.187": "1", + "1.1.15.188": "1", + "1.1.15.189": "1", + "1.1.15.190": "1", + "1.1.15.191": "1", + "1.1.15.192": "1", + "1.1.15.193": "1", + "1.1.15.194": "1", + "1.1.15.195": "1", + "1.1.15.196": "1", + "1.1.15.197": "1", + "1.1.15.198": "1", + "1.1.15.199": "1", + "1.1.15.200": "1", + "1.1.15.201": "1", + "1.1.15.202": "1", + "1.1.15.203": "1", + "1.1.15.204": "1", + "1.1.15.205": "1", + "1.1.15.206": "1", + "1.1.15.207": "1", + "1.1.15.208": "1", + "1.1.15.209": "1", + "1.1.15.210": "1", + "1.1.15.211": "1", + "1.1.15.212": "1", + "1.1.15.213": "1", + "1.1.15.214": "1", + "1.1.15.215": "1", + "1.1.15.216": "1", + "1.1.15.217": "1", + "1.1.15.218": "1", + "1.1.15.219": "1", + "1.1.15.220": "1", + "1.1.15.221": "1", + "1.1.15.222": "1", + "1.1.15.223": "1", + "1.1.15.224": "1", + "1.1.15.225": "1", + "1.1.15.226": "1", + "1.1.15.227": "1", + "1.1.15.228": "1", + "1.1.15.229": "1", + "1.1.15.230": "1", + "1.1.15.231": "1", + "1.1.15.232": "1", + "1.1.15.233": "1", + "1.1.15.234": "1", + "1.1.15.235": "1", + "1.1.15.236": "1", + "1.1.15.237": "1", + "1.1.15.238": "1", + "1.1.15.239": "1", + "1.1.15.240": "1", + "1.1.15.241": "1", + "1.1.15.242": "1", + "1.1.15.243": "1", + "1.1.15.244": "1", + "1.1.15.245": "1", + "1.1.15.246": "1", + "1.1.15.247": "1", + "1.1.15.248": "1", + "1.1.15.249": "1", + "1.1.15.250": "1", + "1.1.15.251": "1", + "1.1.15.252": "1", + "1.1.15.253": "1", + "1.1.15.254": "1", + "1.1.15.255": "1", + "1.1.15.256": "1", + "1.1.15.257": "1", + "1.1.15.258": "1", + "1.1.15.259": "1", + "1.1.15.260": "1", + "1.1.15.261": "1", + "1.1.15.262": "1", + "1.1.15.263": "1", + "1.1.15.264": "1", + "1.1.15.265": "1", + "1.1.15.266": "1", + "1.1.15.267": "1", + "1.1.15.268": "1", + "1.1.15.269": "1", + "1.1.15.270": "1", + "1.1.15.271": "1", + "1.1.15.272": "1", + "1.1.15.273": "1", + "1.1.15.274": "1", + "1.1.15.275": "1", + "1.1.15.276": "1", + "1.1.15.277": "1", + "1.1.15.278": "1", + "1.1.15.279": "1", + "1.1.15.280": "1", + "1.1.15.281": "1", + "1.1.15.282": "1", + "1.1.15.283": "1", + "1.1.15.284": "1", + "1.1.15.285": "1", + "1.1.15.286": "1", + "1.1.15.287": "1", + "1.1.15.288": "1", + "1.1.15.289": "1", + "1.1.15.290": "1", + "1.1.15.291": "1", + "1.1.15.292": "1", + "1.1.15.293": "1", + "1.1.15.294": "1", + "1.1.15.295": "1", + "1.1.15.296": "1", + "1.1.15.297": "1", + "1.1.15.298": "1", + "1.1.15.299": "1", + "1.1.15.300": "1", + "1.1.15.301": "1", + "1.1.15.302": "1", + "1.1.15.303": "1", + "1.1.15.304": "1", + "1.1.15.305": "1", + "1.1.15.306": "1", + "1.1.15.307": "2", + "1.1.15.308": "2", + "1.1.15.309": "1", + "1.1.15.310": "1", + "1.1.15.311": "1", + "1.1.15.312": "1", + "1.1.15.313": "1", + "1.1.15.314": "1", + "1.1.15.315": "1", + "1.1.15.316": "1", + "1.1.15.317": "1", + "1.1.15.318": "1", + "1.1.15.319": "1", + "1.1.15.320": "1", + "1.1.15.321": "1", + "1.1.15.322": "1", + "1.1.15.323": "1", + "1.1.15.324": "1", + "1.1.15.325": "1", + "1.1.15.326": "1", + "1.1.15.327": "1", + "1.1.15.328": "1", + "1.1.15.329": "1", + "1.1.15.330": "1", + "1.1.15.331": "1", + "1.1.15.332": "1", + "1.1.15.333": "1", + "1.1.15.334": "1", + "1.1.15.335": "1", + "1.1.15.336": "1", + "1.1.15.337": "1", + "1.1.15.338": "1", + "1.1.15.339": "1", + "1.1.15.340": "1", + "1.1.15.341": "1", + "1.1.15.342": "1", + "1.1.15.343": "1", + "1.1.15.344": "1", + "1.1.15.345": "1", + "1.1.15.346": "1", + "1.1.15.347": "1", + "1.1.15.348": "1", + "1.1.15.349": "1", + "1.1.15.350": "1", + "1.1.15.351": "1", + "1.1.15.352": "1", + "1.1.15.353": "1", + "1.1.15.354": "1", + "1.1.15.355": "1", + "1.1.15.356": "1", + "1.1.15.357": "1", + "1.1.15.358": "1", + "1.1.15.359": "1", + "1.1.15.360": "1", + "1.1.15.361": "1", + "1.1.15.362": "1", + "1.1.15.363": "1", + "1.1.15.364": "1", + "1.1.15.365": "1", + "1.1.15.366": "1", + "1.1.15.367": "1", + "1.1.15.368": "1", + "1.1.15.369": "1", + "1.1.15.370": "1", + "1.1.15.371": "1", + "1.1.15.372": "1", + "1.1.15.373": "1", + "1.1.15.374": "1", + "1.1.15.375": "1", + "1.1.15.376": "1", + "1.1.15.377": "1", + "1.1.15.378": "1", + "1.1.15.379": "1", + "1.1.15.380": "1", + "1.1.15.381": "1", + "1.1.15.382": "1", + "1.1.15.383": "1", + "1.1.15.384": "1", + "1.1.15.385": "1", + "1.1.15.386": "1", + "1.1.15.387": "1", + "1.1.15.388": "1", + "1.1.15.389": "1", + "1.1.15.390": "1", + "1.1.15.391": "1", + "1.1.15.392": "1", + "1.1.15.393": "1", + "1.1.15.394": "1", + "1.1.15.395": "1", + "1.1.15.396": "1", + "1.1.15.397": "1", + "1.1.15.398": "1", + "1.1.15.399": "1", + "1.1.15.400": "1", + "1.1.16.1": "0", + "1.1.16.2": "0", + "1.1.16.3": "0", + "1.1.16.4": "0", + "1.1.16.5": "0", + "1.1.16.6": "0", + "1.1.16.7": "0", + "1.1.16.8": "0", + "1.1.16.9": "0", + "1.1.16.10": "0", + "1.1.16.11": "0", + "1.1.16.12": "0", + "1.1.16.13": "0", + "1.1.16.14": "0", + "1.1.16.15": "0", + "1.1.16.16": "0", + "1.1.16.17": "0", + "1.1.16.18": "0", + "1.1.16.19": "0", + "1.1.16.20": "0", + "1.1.16.21": "0", + "1.1.16.22": "0", + "1.1.16.23": "0", + "1.1.16.24": "0", + "1.1.16.25": "0", + "1.1.16.26": "0", + "1.1.16.27": "0", + "1.1.16.28": "0", + "1.1.16.29": "0", + "1.1.16.30": "0", + "1.1.16.31": "0", + "1.1.16.32": "0", + "1.1.16.33": "0", + "1.1.16.34": "0", + "1.1.16.35": "0", + "1.1.16.36": "0", + "1.1.16.37": "0", + "1.1.16.38": "0", + "1.1.16.39": "0", + "1.1.16.40": "0", + "1.1.16.41": "0", + "1.1.16.42": "0", + "1.1.16.43": "0", + "1.1.16.44": "0", + "1.1.16.45": "0", + "1.1.16.46": "0", + "1.1.16.47": "0", + "1.1.16.48": "0", + "1.1.16.49": "0", + "1.1.16.50": "0", + "1.1.16.51": "0", + "1.1.16.52": "0", + "1.1.16.53": "0", + "1.1.16.54": "0", + "1.1.16.55": "0", + "1.1.16.56": "0", + "1.1.16.57": "0", + "1.1.16.58": "0", + "1.1.16.59": "0", + "1.1.16.60": "0", + "1.1.16.61": "0", + "1.1.16.62": "0", + "1.1.16.63": "0", + "1.1.16.64": "0", + "1.1.16.65": "0", + "1.1.16.66": "0", + "1.1.16.67": "0", + "1.1.16.68": "0", + "1.1.16.69": "0", + "1.1.16.70": "0", + "1.1.16.71": "0", + "1.1.16.72": "0", + "1.1.16.73": "0", + "1.1.16.74": "0", + "1.1.16.75": "0", + "1.1.16.76": "0", + "1.1.16.77": "0", + "1.1.16.78": "0", + "1.1.16.79": "0", + "1.1.16.80": "0", + "1.1.16.81": "0", + "1.1.16.82": "0", + "1.1.16.83": "0", + "1.1.16.84": "0", + "1.1.16.85": "0", + "1.1.16.86": "0", + "1.1.16.87": "0", + "1.1.16.88": "0", + "1.1.16.89": "0", + "1.1.16.90": "0", + "1.1.16.91": "0", + "1.1.16.92": "0", + "1.1.16.93": "0", + "1.1.16.94": "0", + "1.1.16.95": "0", + "1.1.16.96": "0", + "1.1.16.97": "0", + "1.1.16.98": "0", + "1.1.16.99": "0", + "1.1.16.100": "0", + "1.1.16.101": "0", + "1.1.16.102": "0", + "1.1.16.103": "0", + "1.1.16.104": "0", + "1.1.16.105": "0", + "1.1.16.106": "0", + "1.1.16.107": "0", + "1.1.16.108": "0", + "1.1.16.109": "0", + "1.1.16.110": "0", + "1.1.16.111": "0", + "1.1.16.112": "0", + "1.1.16.113": "0", + "1.1.16.114": "0", + "1.1.16.115": "0", + "1.1.16.116": "0", + "1.1.16.117": "0", + "1.1.16.118": "0", + "1.1.16.119": "0", + "1.1.16.120": "0", + "1.1.16.121": "0", + "1.1.16.122": "0", + "1.1.16.123": "0", + "1.1.16.124": "0", + "1.1.16.125": "0", + "1.1.16.126": "0", + "1.1.16.127": "0", + "1.1.16.128": "0", + "1.1.16.129": "0", + "1.1.16.130": "0", + "1.1.16.131": "0", + "1.1.16.132": "0", + "1.1.16.133": "0", + "1.1.16.134": "0", + "1.1.16.135": "0", + "1.1.16.136": "0", + "1.1.16.137": "0", + "1.1.16.138": "0", + "1.1.16.139": "0", + "1.1.16.140": "0", + "1.1.16.141": "0", + "1.1.16.142": "0", + "1.1.16.143": "0", + "1.1.16.144": "0", + "1.1.16.145": "0", + "1.1.16.146": "0", + "1.1.16.147": "0", + "1.1.16.148": "0", + "1.1.16.149": "0", + "1.1.16.150": "0", + "1.1.16.151": "0", + "1.1.16.152": "0", + "1.1.16.153": "0", + "1.1.16.154": "0", + "1.1.16.155": "0", + "1.1.16.156": "0", + "1.1.16.157": "0", + "1.1.16.158": "0", + "1.1.16.159": "0", + "1.1.16.160": "0", + "1.1.16.161": "0", + "1.1.16.162": "0", + "1.1.16.163": "0", + "1.1.16.164": "0", + "1.1.16.165": "0", + "1.1.16.166": "0", + "1.1.16.167": "0", + "1.1.16.168": "0", + "1.1.16.169": "0", + "1.1.16.170": "0", + "1.1.16.171": "0", + "1.1.16.172": "0", + "1.1.16.173": "0", + "1.1.16.174": "0", + "1.1.16.175": "0", + "1.1.16.176": "0", + "1.1.16.177": "0", + "1.1.16.178": "0", + "1.1.16.179": "0", + "1.1.16.180": "0", + "1.1.16.181": "0", + "1.1.16.182": "0", + "1.1.16.183": "0", + "1.1.16.184": "0", + "1.1.16.185": "0", + "1.1.16.186": "0", + "1.1.16.187": "0", + "1.1.16.188": "0", + "1.1.16.189": "0", + "1.1.16.190": "0", + "1.1.16.191": "0", + "1.1.16.192": "0", + "1.1.16.193": "0", + "1.1.16.194": "0", + "1.1.16.195": "0", + "1.1.16.196": "0", + "1.1.16.197": "0", + "1.1.16.198": "0", + "1.1.16.199": "0", + "1.1.16.200": "0", + "1.1.16.201": "0", + "1.1.16.202": "0", + "1.1.16.203": "0", + "1.1.16.204": "0", + "1.1.16.205": "0", + "1.1.16.206": "3999", + "1.1.16.207": "0", + "1.1.16.208": "0", + "1.1.16.209": "0", + "1.1.16.210": "0", + "1.1.16.211": "0", + "1.1.16.212": "0", + "1.1.16.213": "0", + "1.1.16.214": "0", + "1.1.16.215": "0", + "1.1.16.216": "0", + "1.1.16.217": "0", + "1.1.16.218": "0", + "1.1.16.219": "0", + "1.1.16.220": "0", + "1.1.16.221": "0", + "1.1.16.222": "0", + "1.1.16.223": "0", + "1.1.16.224": "0", + "1.1.16.225": "0", + "1.1.16.226": "0", + "1.1.16.227": "0", + "1.1.16.228": "0", + "1.1.16.229": "0", + "1.1.16.230": "0", + "1.1.16.231": "0", + "1.1.16.232": "0", + "1.1.16.233": "0", + "1.1.16.234": "0", + "1.1.16.235": "0", + "1.1.16.236": "0", + "1.1.16.237": "0", + "1.1.16.238": "0", + "1.1.16.239": "0", + "1.1.16.240": "0", + "1.1.16.241": "0", + "1.1.16.242": "0", + "1.1.16.243": "0", + "1.1.16.244": "0", + "1.1.16.245": "0", + "1.1.16.246": "0", + "1.1.16.247": "0", + "1.1.16.248": "0", + "1.1.16.249": "0", + "1.1.16.250": "0", + "1.1.16.251": "0", + "1.1.16.252": "0", + "1.1.16.253": "0", + "1.1.16.254": "0", + "1.1.16.255": "0", + "1.1.16.256": "0", + "1.1.16.257": "0", + "1.1.16.258": "0", + "1.1.16.259": "0", + "1.1.16.260": "0", + "1.1.16.261": "0", + "1.1.16.262": "0", + "1.1.16.263": "0", + "1.1.16.264": "0", + "1.1.16.265": "0", + "1.1.16.266": "0", + "1.1.16.267": "0", + "1.1.16.268": "0", + "1.1.16.269": "0", + "1.1.16.270": "0", + "1.1.16.271": "0", + "1.1.16.272": "0", + "1.1.16.273": "0", + "1.1.16.274": "0", + "1.1.16.275": "0", + "1.1.16.276": "0", + "1.1.16.277": "0", + "1.1.16.278": "0", + "1.1.16.279": "0", + "1.1.16.280": "0", + "1.1.16.281": "0", + "1.1.16.282": "0", + "1.1.16.283": "0", + "1.1.16.284": "0", + "1.1.16.285": "0", + "1.1.16.286": "0", + "1.1.16.287": "0", + "1.1.16.288": "0", + "1.1.16.289": "0", + "1.1.16.290": "0", + "1.1.16.291": "0", + "1.1.16.292": "0", + "1.1.16.293": "0", + "1.1.16.294": "0", + "1.1.16.295": "0", + "1.1.16.296": "0", + "1.1.16.297": "0", + "1.1.16.298": "0", + "1.1.16.299": "0", + "1.1.16.300": "0", + "1.1.16.301": "0", + "1.1.16.302": "0", + "1.1.16.303": "0", + "1.1.16.304": "0", + "1.1.16.305": "0", + "1.1.16.306": "0", + "1.1.16.307": "2216", + "1.1.16.308": "2217", + "1.1.16.309": "0", + "1.1.16.310": "0", + "1.1.16.311": "0", + "1.1.16.312": "0", + "1.1.16.313": "0", + "1.1.16.314": "0", + "1.1.16.315": "0", + "1.1.16.316": "0", + "1.1.16.317": "0", + "1.1.16.318": "0", + "1.1.16.319": "0", + "1.1.16.320": "0", + "1.1.16.321": "0", + "1.1.16.322": "0", + "1.1.16.323": "0", + "1.1.16.324": "0", + "1.1.16.325": "0", + "1.1.16.326": "0", + "1.1.16.327": "0", + "1.1.16.328": "0", + "1.1.16.329": "0", + "1.1.16.330": "0", + "1.1.16.331": "0", + "1.1.16.332": "0", + "1.1.16.333": "0", + "1.1.16.334": "0", + "1.1.16.335": "0", + "1.1.16.336": "0", + "1.1.16.337": "0", + "1.1.16.338": "0", + "1.1.16.339": "0", + "1.1.16.340": "0", + "1.1.16.341": "0", + "1.1.16.342": "0", + "1.1.16.343": "0", + "1.1.16.344": "0", + "1.1.16.345": "0", + "1.1.16.346": "0", + "1.1.16.347": "0", + "1.1.16.348": "0", + "1.1.16.349": "0", + "1.1.16.350": "0", + "1.1.16.351": "0", + "1.1.16.352": "0", + "1.1.16.353": "0", + "1.1.16.354": "0", + "1.1.16.355": "0", + "1.1.16.356": "0", + "1.1.16.357": "0", + "1.1.16.358": "0", + "1.1.16.359": "0", + "1.1.16.360": "0", + "1.1.16.361": "0", + "1.1.16.362": "0", + "1.1.16.363": "0", + "1.1.16.364": "0", + "1.1.16.365": "0", + "1.1.16.366": "0", + "1.1.16.367": "0", + "1.1.16.368": "0", + "1.1.16.369": "0", + "1.1.16.370": "0", + "1.1.16.371": "0", + "1.1.16.372": "0", + "1.1.16.373": "0", + "1.1.16.374": "0", + "1.1.16.375": "0", + "1.1.16.376": "0", + "1.1.16.377": "0", + "1.1.16.378": "0", + "1.1.16.379": "0", + "1.1.16.380": "0", + "1.1.16.381": "0", + "1.1.16.382": "0", + "1.1.16.383": "0", + "1.1.16.384": "0", + "1.1.16.385": "0", + "1.1.16.386": "0", + "1.1.16.387": "0", + "1.1.16.388": "0", + "1.1.16.389": "0", + "1.1.16.390": "0", + "1.1.16.391": "0", + "1.1.16.392": "0", + "1.1.16.393": "0", + "1.1.16.394": "0", + "1.1.16.395": "0", + "1.1.16.396": "0", + "1.1.16.397": "0", + "1.1.16.398": "0", + "1.1.16.399": "0", + "1.1.16.400": "0", + "1.1.17.1": "1", + "1.1.17.2": "1", + "1.1.17.3": "1", + "1.1.17.4": "1", + "1.1.17.5": "1", + "1.1.17.6": "1", + "1.1.17.7": "1", + "1.1.17.8": "1", + "1.1.17.9": "1", + "1.1.17.10": "1", + "1.1.17.11": "1", + "1.1.17.12": "1", + "1.1.17.13": "1", + "1.1.17.14": "1", + "1.1.17.15": "1", + "1.1.17.16": "1", + "1.1.17.17": "1", + "1.1.17.18": "1", + "1.1.17.19": "1", + "1.1.17.20": "1", + "1.1.17.21": "1", + "1.1.17.22": "1", + "1.1.17.23": "1", + "1.1.17.24": "1", + "1.1.17.25": "1", + "1.1.17.26": "1", + "1.1.17.27": "1", + "1.1.17.28": "1", + "1.1.17.29": "1", + "1.1.17.30": "1", + "1.1.17.31": "1", + "1.1.17.32": "1", + "1.1.17.33": "1", + "1.1.17.34": "1", + "1.1.17.35": "1", + "1.1.17.36": "1", + "1.1.17.37": "1", + "1.1.17.38": "1", + "1.1.17.39": "1", + "1.1.17.40": "1", + "1.1.17.41": "1", + "1.1.17.42": "1", + "1.1.17.43": "1", + "1.1.17.44": "1", + "1.1.17.45": "1", + "1.1.17.46": "1", + "1.1.17.47": "1", + "1.1.17.48": "1", + "1.1.17.49": "1", + "1.1.17.50": "1", + "1.1.17.51": "1", + "1.1.17.52": "1", + "1.1.17.53": "1", + "1.1.17.54": "1", + "1.1.17.55": "1", + "1.1.17.56": "1", + "1.1.17.57": "1", + "1.1.17.58": "1", + "1.1.17.59": "1", + "1.1.17.60": "1", + "1.1.17.61": "1", + "1.1.17.62": "1", + "1.1.17.63": "1", + "1.1.17.64": "1", + "1.1.17.65": "1", + "1.1.17.66": "1", + "1.1.17.67": "1", + "1.1.17.68": "1", + "1.1.17.69": "1", + "1.1.17.70": "1", + "1.1.17.71": "1", + "1.1.17.72": "1", + "1.1.17.73": "1", + "1.1.17.74": "1", + "1.1.17.75": "1", + "1.1.17.76": "1", + "1.1.17.77": "1", + "1.1.17.78": "1", + "1.1.17.79": "1", + "1.1.17.80": "1", + "1.1.17.81": "1", + "1.1.17.82": "1", + "1.1.17.83": "1", + "1.1.17.84": "1", + "1.1.17.85": "1", + "1.1.17.86": "1", + "1.1.17.87": "1", + "1.1.17.88": "1", + "1.1.17.89": "1", + "1.1.17.90": "1", + "1.1.17.91": "1", + "1.1.17.92": "1", + "1.1.17.93": "1", + "1.1.17.94": "1", + "1.1.17.95": "1", + "1.1.17.96": "1", + "1.1.17.97": "1", + "1.1.17.98": "1", + "1.1.17.99": "1", + "1.1.17.100": "1", + "1.1.17.101": "1", + "1.1.17.102": "1", + "1.1.17.103": "1", + "1.1.17.104": "1", + "1.1.17.105": "1", + "1.1.17.106": "1", + "1.1.17.107": "1", + "1.1.17.108": "1", + "1.1.17.109": "1", + "1.1.17.110": "1", + "1.1.17.111": "1", + "1.1.17.112": "1", + "1.1.17.113": "1", + "1.1.17.114": "1", + "1.1.17.115": "1", + "1.1.17.116": "1", + "1.1.17.117": "1", + "1.1.17.118": "1", + "1.1.17.119": "1", + "1.1.17.120": "1", + "1.1.17.121": "1", + "1.1.17.122": "1", + "1.1.17.123": "1", + "1.1.17.124": "1", + "1.1.17.125": "1", + "1.1.17.126": "1", + "1.1.17.127": "1", + "1.1.17.128": "1", + "1.1.17.129": "1", + "1.1.17.130": "1", + "1.1.17.131": "1", + "1.1.17.132": "1", + "1.1.17.133": "1", + "1.1.17.134": "1", + "1.1.17.135": "1", + "1.1.17.136": "1", + "1.1.17.137": "1", + "1.1.17.138": "1", + "1.1.17.139": "1", + "1.1.17.140": "1", + "1.1.17.141": "1", + "1.1.17.142": "1", + "1.1.17.143": "1", + "1.1.17.144": "1", + "1.1.17.145": "1", + "1.1.17.146": "1", + "1.1.17.147": "1", + "1.1.17.148": "1", + "1.1.17.149": "1", + "1.1.17.150": "1", + "1.1.17.151": "1", + "1.1.17.152": "1", + "1.1.17.153": "1", + "1.1.17.154": "1", + "1.1.17.155": "1", + "1.1.17.156": "1", + "1.1.17.157": "1", + "1.1.17.158": "1", + "1.1.17.159": "1", + "1.1.17.160": "1", + "1.1.17.161": "1", + "1.1.17.162": "1", + "1.1.17.163": "1", + "1.1.17.164": "1", + "1.1.17.165": "1", + "1.1.17.166": "1", + "1.1.17.167": "1", + "1.1.17.168": "1", + "1.1.17.169": "1", + "1.1.17.170": "1", + "1.1.17.171": "1", + "1.1.17.172": "1", + "1.1.17.173": "1", + "1.1.17.174": "1", + "1.1.17.175": "1", + "1.1.17.176": "1", + "1.1.17.177": "1", + "1.1.17.178": "1", + "1.1.17.179": "1", + "1.1.17.180": "1", + "1.1.17.181": "1", + "1.1.17.182": "1", + "1.1.17.183": "1", + "1.1.17.184": "1", + "1.1.17.185": "1", + "1.1.17.186": "1", + "1.1.17.187": "1", + "1.1.17.188": "1", + "1.1.17.189": "1", + "1.1.17.190": "1", + "1.1.17.191": "1", + "1.1.17.192": "1", + "1.1.17.193": "1", + "1.1.17.194": "1", + "1.1.17.195": "1", + "1.1.17.196": "1", + "1.1.17.197": "1", + "1.1.17.198": "1", + "1.1.17.199": "1", + "1.1.17.200": "1", + "1.1.17.201": "1", + "1.1.17.202": "1", + "1.1.17.203": "1", + "1.1.17.204": "1", + "1.1.17.205": "1", + "1.1.17.206": "1", + "1.1.17.207": "1", + "1.1.17.208": "1", + "1.1.17.209": "1", + "1.1.17.210": "1", + "1.1.17.211": "1", + "1.1.17.212": "1", + "1.1.17.213": "1", + "1.1.17.214": "1", + "1.1.17.215": "1", + "1.1.17.216": "1", + "1.1.17.217": "1", + "1.1.17.218": "1", + "1.1.17.219": "1", + "1.1.17.220": "1", + "1.1.17.221": "1", + "1.1.17.222": "1", + "1.1.17.223": "1", + "1.1.17.224": "1", + "1.1.17.225": "1", + "1.1.17.226": "1", + "1.1.17.227": "1", + "1.1.17.228": "1", + "1.1.17.229": "1", + "1.1.17.230": "1", + "1.1.17.231": "1", + "1.1.17.232": "1", + "1.1.17.233": "1", + "1.1.17.234": "1", + "1.1.17.235": "1", + "1.1.17.236": "1", + "1.1.17.237": "1", + "1.1.17.238": "1", + "1.1.17.239": "1", + "1.1.17.240": "1", + "1.1.17.241": "1", + "1.1.17.242": "1", + "1.1.17.243": "1", + "1.1.17.244": "1", + "1.1.17.245": "1", + "1.1.17.246": "1", + "1.1.17.247": "1", + "1.1.17.248": "1", + "1.1.17.249": "1", + "1.1.17.250": "1", + "1.1.17.251": "1", + "1.1.17.252": "1", + "1.1.17.253": "1", + "1.1.17.254": "1", + "1.1.17.255": "1", + "1.1.17.256": "1", + "1.1.17.257": "1", + "1.1.17.258": "1", + "1.1.17.259": "1", + "1.1.17.260": "1", + "1.1.17.261": "1", + "1.1.17.262": "1", + "1.1.17.263": "1", + "1.1.17.264": "1", + "1.1.17.265": "1", + "1.1.17.266": "1", + "1.1.17.267": "1", + "1.1.17.268": "1", + "1.1.17.269": "1", + "1.1.17.270": "1", + "1.1.17.271": "1", + "1.1.17.272": "1", + "1.1.17.273": "1", + "1.1.17.274": "1", + "1.1.17.275": "1", + "1.1.17.276": "1", + "1.1.17.277": "1", + "1.1.17.278": "1", + "1.1.17.279": "1", + "1.1.17.280": "1", + "1.1.17.281": "1", + "1.1.17.282": "1", + "1.1.17.283": "1", + "1.1.17.284": "1", + "1.1.17.285": "1", + "1.1.17.286": "1", + "1.1.17.287": "1", + "1.1.17.288": "1", + "1.1.17.289": "1", + "1.1.17.290": "1", + "1.1.17.291": "1", + "1.1.17.292": "1", + "1.1.17.293": "1", + "1.1.17.294": "1", + "1.1.17.295": "1", + "1.1.17.296": "1", + "1.1.17.297": "1", + "1.1.17.298": "1", + "1.1.17.299": "1", + "1.1.17.300": "1", + "1.1.17.301": "1", + "1.1.17.302": "1", + "1.1.17.303": "1", + "1.1.17.304": "1", + "1.1.17.305": "1", + "1.1.17.306": "1", + "1.1.17.307": "1", + "1.1.17.308": "1", + "1.1.17.309": "1", + "1.1.17.310": "1", + "1.1.17.311": "1", + "1.1.17.312": "1", + "1.1.17.313": "1", + "1.1.17.314": "1", + "1.1.17.315": "1", + "1.1.17.316": "1", + "1.1.17.317": "1", + "1.1.17.318": "1", + "1.1.17.319": "1", + "1.1.17.320": "1", + "1.1.17.321": "1", + "1.1.17.322": "1", + "1.1.17.323": "1", + "1.1.17.324": "1", + "1.1.17.325": "1", + "1.1.17.326": "1", + "1.1.17.327": "1", + "1.1.17.328": "1", + "1.1.17.329": "1", + "1.1.17.330": "1", + "1.1.17.331": "1", + "1.1.17.332": "1", + "1.1.17.333": "1", + "1.1.17.334": "1", + "1.1.17.335": "1", + "1.1.17.336": "1", + "1.1.17.337": "1", + "1.1.17.338": "1", + "1.1.17.339": "1", + "1.1.17.340": "1", + "1.1.17.341": "1", + "1.1.17.342": "1", + "1.1.17.343": "1", + "1.1.17.344": "1", + "1.1.17.345": "1", + "1.1.17.346": "1", + "1.1.17.347": "1", + "1.1.17.348": "1", + "1.1.17.349": "1", + "1.1.17.350": "1", + "1.1.17.351": "1", + "1.1.17.352": "1", + "1.1.17.353": "1", + "1.1.17.354": "1", + "1.1.17.355": "1", + "1.1.17.356": "1", + "1.1.17.357": "1", + "1.1.17.358": "1", + "1.1.17.359": "1", + "1.1.17.360": "1", + "1.1.17.361": "1", + "1.1.17.362": "1", + "1.1.17.363": "1", + "1.1.17.364": "1", + "1.1.17.365": "1", + "1.1.17.366": "1", + "1.1.17.367": "1", + "1.1.17.368": "1", + "1.1.17.369": "1", + "1.1.17.370": "1", + "1.1.17.371": "1", + "1.1.17.372": "1", + "1.1.17.373": "1", + "1.1.17.374": "1", + "1.1.17.375": "1", + "1.1.17.376": "1", + "1.1.17.377": "1", + "1.1.17.378": "1", + "1.1.17.379": "1", + "1.1.17.380": "1", + "1.1.17.381": "1", + "1.1.17.382": "1", + "1.1.17.383": "1", + "1.1.17.384": "1", + "1.1.17.385": "1", + "1.1.17.386": "1", + "1.1.17.387": "1", + "1.1.17.388": "1", + "1.1.17.389": "1", + "1.1.17.390": "1", + "1.1.17.391": "1", + "1.1.17.392": "1", + "1.1.17.393": "1", + "1.1.17.394": "1", + "1.1.17.395": "1", + "1.1.17.396": "1", + "1.1.17.397": "1", + "1.1.17.398": "1", + "1.1.17.399": "1", + "1.1.17.400": "1", + "1.1.18.1": "2", + "1.1.18.2": "2", + "1.1.18.3": "2", + "1.1.18.4": "2", + "1.1.18.5": "2", + "1.1.18.6": "2", + "1.1.18.7": "2", + "1.1.18.8": "2", + "1.1.18.9": "2", + "1.1.18.10": "2", + "1.1.18.11": "2", + "1.1.18.12": "2", + "1.1.18.13": "2", + "1.1.18.14": "2", + "1.1.18.15": "2", + "1.1.18.16": "2", + "1.1.18.17": "2", + "1.1.18.18": "2", + "1.1.18.19": "2", + "1.1.18.20": "2", + "1.1.18.21": "2", + "1.1.18.22": "2", + "1.1.18.23": "2", + "1.1.18.24": "2", + "1.1.18.25": "2", + "1.1.18.26": "2", + "1.1.18.27": "2", + "1.1.18.28": "2", + "1.1.18.29": "2", + "1.1.18.30": "2", + "1.1.18.31": "2", + "1.1.18.32": "2", + "1.1.18.33": "2", + "1.1.18.34": "2", + "1.1.18.35": "2", + "1.1.18.36": "2", + "1.1.18.37": "2", + "1.1.18.38": "2", + "1.1.18.39": "2", + "1.1.18.40": "2", + "1.1.18.41": "2", + "1.1.18.42": "2", + "1.1.18.43": "2", + "1.1.18.44": "2", + "1.1.18.45": "2", + "1.1.18.46": "2", + "1.1.18.47": "2", + "1.1.18.48": "2", + "1.1.18.49": "2", + "1.1.18.50": "2", + "1.1.18.51": "2", + "1.1.18.52": "2", + "1.1.18.53": "2", + "1.1.18.54": "2", + "1.1.18.55": "2", + "1.1.18.56": "2", + "1.1.18.57": "2", + "1.1.18.58": "2", + "1.1.18.59": "2", + "1.1.18.60": "2", + "1.1.18.61": "2", + "1.1.18.62": "2", + "1.1.18.63": "2", + "1.1.18.64": "2", + "1.1.18.65": "2", + "1.1.18.66": "2", + "1.1.18.67": "2", + "1.1.18.68": "2", + "1.1.18.69": "2", + "1.1.18.70": "2", + "1.1.18.71": "2", + "1.1.18.72": "2", + "1.1.18.73": "2", + "1.1.18.74": "2", + "1.1.18.75": "2", + "1.1.18.76": "2", + "1.1.18.77": "2", + "1.1.18.78": "2", + "1.1.18.79": "2", + "1.1.18.80": "2", + "1.1.18.81": "2", + "1.1.18.82": "2", + "1.1.18.83": "2", + "1.1.18.84": "2", + "1.1.18.85": "2", + "1.1.18.86": "2", + "1.1.18.87": "2", + "1.1.18.88": "2", + "1.1.18.89": "2", + "1.1.18.90": "2", + "1.1.18.91": "2", + "1.1.18.92": "2", + "1.1.18.93": "2", + "1.1.18.94": "2", + "1.1.18.95": "2", + "1.1.18.96": "2", + "1.1.18.97": "2", + "1.1.18.98": "2", + "1.1.18.99": "2", + "1.1.18.100": "2", + "1.1.18.101": "2", + "1.1.18.102": "2", + "1.1.18.103": "2", + "1.1.18.104": "2", + "1.1.18.105": "2", + "1.1.18.106": "2", + "1.1.18.107": "2", + "1.1.18.108": "2", + "1.1.18.109": "2", + "1.1.18.110": "2", + "1.1.18.111": "2", + "1.1.18.112": "2", + "1.1.18.113": "2", + "1.1.18.114": "2", + "1.1.18.115": "2", + "1.1.18.116": "2", + "1.1.18.117": "2", + "1.1.18.118": "2", + "1.1.18.119": "2", + "1.1.18.120": "2", + "1.1.18.121": "2", + "1.1.18.122": "2", + "1.1.18.123": "2", + "1.1.18.124": "2", + "1.1.18.125": "2", + "1.1.18.126": "2", + "1.1.18.127": "2", + "1.1.18.128": "2", + "1.1.18.129": "2", + "1.1.18.130": "2", + "1.1.18.131": "2", + "1.1.18.132": "2", + "1.1.18.133": "2", + "1.1.18.134": "2", + "1.1.18.135": "2", + "1.1.18.136": "2", + "1.1.18.137": "2", + "1.1.18.138": "2", + "1.1.18.139": "2", + "1.1.18.140": "2", + "1.1.18.141": "2", + "1.1.18.142": "2", + "1.1.18.143": "2", + "1.1.18.144": "2", + "1.1.18.145": "2", + "1.1.18.146": "2", + "1.1.18.147": "2", + "1.1.18.148": "2", + "1.1.18.149": "2", + "1.1.18.150": "2", + "1.1.18.151": "2", + "1.1.18.152": "2", + "1.1.18.153": "2", + "1.1.18.154": "2", + "1.1.18.155": "2", + "1.1.18.156": "2", + "1.1.18.157": "2", + "1.1.18.158": "2", + "1.1.18.159": "2", + "1.1.18.160": "2", + "1.1.18.161": "2", + "1.1.18.162": "2", + "1.1.18.163": "2", + "1.1.18.164": "2", + "1.1.18.165": "2", + "1.1.18.166": "2", + "1.1.18.167": "2", + "1.1.18.168": "2", + "1.1.18.169": "2", + "1.1.18.170": "2", + "1.1.18.171": "2", + "1.1.18.172": "2", + "1.1.18.173": "2", + "1.1.18.174": "2", + "1.1.18.175": "2", + "1.1.18.176": "2", + "1.1.18.177": "2", + "1.1.18.178": "2", + "1.1.18.179": "2", + "1.1.18.180": "2", + "1.1.18.181": "2", + "1.1.18.182": "2", + "1.1.18.183": "2", + "1.1.18.184": "2", + "1.1.18.185": "2", + "1.1.18.186": "2", + "1.1.18.187": "2", + "1.1.18.188": "2", + "1.1.18.189": "2", + "1.1.18.190": "2", + "1.1.18.191": "2", + "1.1.18.192": "2", + "1.1.18.193": "2", + "1.1.18.194": "2", + "1.1.18.195": "2", + "1.1.18.196": "2", + "1.1.18.197": "2", + "1.1.18.198": "2", + "1.1.18.199": "2", + "1.1.18.200": "2", + "1.1.18.201": "2", + "1.1.18.202": "2", + "1.1.18.203": "2", + "1.1.18.204": "2", + "1.1.18.205": "2", + "1.1.18.206": "2", + "1.1.18.207": "2", + "1.1.18.208": "2", + "1.1.18.209": "2", + "1.1.18.210": "2", + "1.1.18.211": "2", + "1.1.18.212": "2", + "1.1.18.213": "2", + "1.1.18.214": "2", + "1.1.18.215": "2", + "1.1.18.216": "2", + "1.1.18.217": "2", + "1.1.18.218": "2", + "1.1.18.219": "2", + "1.1.18.220": "2", + "1.1.18.221": "2", + "1.1.18.222": "2", + "1.1.18.223": "2", + "1.1.18.224": "2", + "1.1.18.225": "2", + "1.1.18.226": "2", + "1.1.18.227": "2", + "1.1.18.228": "2", + "1.1.18.229": "2", + "1.1.18.230": "2", + "1.1.18.231": "2", + "1.1.18.232": "2", + "1.1.18.233": "2", + "1.1.18.234": "2", + "1.1.18.235": "2", + "1.1.18.236": "2", + "1.1.18.237": "2", + "1.1.18.238": "2", + "1.1.18.239": "2", + "1.1.18.240": "2", + "1.1.18.241": "2", + "1.1.18.242": "2", + "1.1.18.243": "2", + "1.1.18.244": "2", + "1.1.18.245": "2", + "1.1.18.246": "2", + "1.1.18.247": "2", + "1.1.18.248": "2", + "1.1.18.249": "2", + "1.1.18.250": "2", + "1.1.18.251": "2", + "1.1.18.252": "2", + "1.1.18.253": "2", + "1.1.18.254": "2", + "1.1.18.255": "2", + "1.1.18.256": "2", + "1.1.18.257": "2", + "1.1.18.258": "2", + "1.1.18.259": "2", + "1.1.18.260": "2", + "1.1.18.261": "2", + "1.1.18.262": "2", + "1.1.18.263": "2", + "1.1.18.264": "2", + "1.1.18.265": "2", + "1.1.18.266": "2", + "1.1.18.267": "2", + "1.1.18.268": "2", + "1.1.18.269": "2", + "1.1.18.270": "2", + "1.1.18.271": "2", + "1.1.18.272": "2", + "1.1.18.273": "2", + "1.1.18.274": "2", + "1.1.18.275": "2", + "1.1.18.276": "2", + "1.1.18.277": "2", + "1.1.18.278": "2", + "1.1.18.279": "2", + "1.1.18.280": "2", + "1.1.18.281": "2", + "1.1.18.282": "2", + "1.1.18.283": "2", + "1.1.18.284": "2", + "1.1.18.285": "2", + "1.1.18.286": "2", + "1.1.18.287": "2", + "1.1.18.288": "2", + "1.1.18.289": "2", + "1.1.18.290": "2", + "1.1.18.291": "2", + "1.1.18.292": "2", + "1.1.18.293": "2", + "1.1.18.294": "2", + "1.1.18.295": "2", + "1.1.18.296": "2", + "1.1.18.297": "2", + "1.1.18.298": "2", + "1.1.18.299": "2", + "1.1.18.300": "2", + "1.1.18.301": "2", + "1.1.18.302": "2", + "1.1.18.303": "2", + "1.1.18.304": "2", + "1.1.18.305": "2", + "1.1.18.306": "2", + "1.1.18.307": "2", + "1.1.18.308": "2", + "1.1.18.309": "2", + "1.1.18.310": "2", + "1.1.18.311": "2", + "1.1.18.312": "2", + "1.1.18.313": "2", + "1.1.18.314": "2", + "1.1.18.315": "2", + "1.1.18.316": "2", + "1.1.18.317": "2", + "1.1.18.318": "2", + "1.1.18.319": "2", + "1.1.18.320": "2", + "1.1.18.321": "2", + "1.1.18.322": "2", + "1.1.18.323": "2", + "1.1.18.324": "2", + "1.1.18.325": "2", + "1.1.18.326": "2", + "1.1.18.327": "2", + "1.1.18.328": "2", + "1.1.18.329": "2", + "1.1.18.330": "2", + "1.1.18.331": "2", + "1.1.18.332": "2", + "1.1.18.333": "2", + "1.1.18.334": "2", + "1.1.18.335": "2", + "1.1.18.336": "2", + "1.1.18.337": "2", + "1.1.18.338": "2", + "1.1.18.339": "2", + "1.1.18.340": "2", + "1.1.18.341": "2", + "1.1.18.342": "2", + "1.1.18.343": "2", + "1.1.18.344": "2", + "1.1.18.345": "2", + "1.1.18.346": "2", + "1.1.18.347": "2", + "1.1.18.348": "2", + "1.1.18.349": "2", + "1.1.18.350": "2", + "1.1.18.351": "2", + "1.1.18.352": "2", + "1.1.18.353": "2", + "1.1.18.354": "2", + "1.1.18.355": "2", + "1.1.18.356": "2", + "1.1.18.357": "2", + "1.1.18.358": "2", + "1.1.18.359": "2", + "1.1.18.360": "2", + "1.1.18.361": "2", + "1.1.18.362": "2", + "1.1.18.363": "2", + "1.1.18.364": "2", + "1.1.18.365": "2", + "1.1.18.366": "2", + "1.1.18.367": "2", + "1.1.18.368": "2", + "1.1.18.369": "2", + "1.1.18.370": "2", + "1.1.18.371": "2", + "1.1.18.372": "2", + "1.1.18.373": "2", + "1.1.18.374": "2", + "1.1.18.375": "2", + "1.1.18.376": "2", + "1.1.18.377": "2", + "1.1.18.378": "2", + "1.1.18.379": "2", + "1.1.18.380": "2", + "1.1.18.381": "2", + "1.1.18.382": "2", + "1.1.18.383": "2", + "1.1.18.384": "2", + "1.1.18.385": "2", + "1.1.18.386": "2", + "1.1.18.387": "2", + "1.1.18.388": "2", + "1.1.18.389": "2", + "1.1.18.390": "2", + "1.1.18.391": "2", + "1.1.18.392": "2", + "1.1.18.393": "2", + "1.1.18.394": "2", + "1.1.18.395": "2", + "1.1.18.396": "2", + "1.1.18.397": "2", + "1.1.18.398": "2", + "1.1.18.399": "2", + "1.1.18.400": "2", + "1.1.19.1": "1", + "1.1.19.2": "1", + "1.1.19.3": "1", + "1.1.19.4": "1", + "1.1.19.5": "1", + "1.1.19.6": "1", + "1.1.19.7": "1", + "1.1.19.8": "1", + "1.1.19.9": "1", + "1.1.19.10": "1", + "1.1.19.11": "1", + "1.1.19.12": "1", + "1.1.19.13": "1", + "1.1.19.14": "1", + "1.1.19.15": "1", + "1.1.19.16": "1", + "1.1.19.17": "1", + "1.1.19.18": "1", + "1.1.19.19": "1", + "1.1.19.20": "1", + "1.1.19.21": "1", + "1.1.19.22": "1", + "1.1.19.23": "1", + "1.1.19.24": "1", + "1.1.19.25": "1", + "1.1.19.26": "1", + "1.1.19.27": "1", + "1.1.19.28": "1", + "1.1.19.29": "1", + "1.1.19.30": "1", + "1.1.19.31": "1", + "1.1.19.32": "1", + "1.1.19.33": "1", + "1.1.19.34": "1", + "1.1.19.35": "1", + "1.1.19.36": "1", + "1.1.19.37": "1", + "1.1.19.38": "1", + "1.1.19.39": "1", + "1.1.19.40": "1", + "1.1.19.41": "1", + "1.1.19.42": "1", + "1.1.19.43": "1", + "1.1.19.44": "1", + "1.1.19.45": "1", + "1.1.19.46": "1", + "1.1.19.47": "1", + "1.1.19.48": "1", + "1.1.19.49": "1", + "1.1.19.50": "1", + "1.1.19.51": "1", + "1.1.19.52": "1", + "1.1.19.53": "1", + "1.1.19.54": "1", + "1.1.19.55": "1", + "1.1.19.56": "1", + "1.1.19.57": "1", + "1.1.19.58": "1", + "1.1.19.59": "1", + "1.1.19.60": "1", + "1.1.19.61": "1", + "1.1.19.62": "1", + "1.1.19.63": "1", + "1.1.19.64": "1", + "1.1.19.65": "1", + "1.1.19.66": "1", + "1.1.19.67": "1", + "1.1.19.68": "1", + "1.1.19.69": "1", + "1.1.19.70": "1", + "1.1.19.71": "1", + "1.1.19.72": "1", + "1.1.19.73": "1", + "1.1.19.74": "1", + "1.1.19.75": "1", + "1.1.19.76": "1", + "1.1.19.77": "1", + "1.1.19.78": "1", + "1.1.19.79": "1", + "1.1.19.80": "1", + "1.1.19.81": "1", + "1.1.19.82": "1", + "1.1.19.83": "1", + "1.1.19.84": "1", + "1.1.19.85": "1", + "1.1.19.86": "1", + "1.1.19.87": "1", + "1.1.19.88": "1", + "1.1.19.89": "1", + "1.1.19.90": "1", + "1.1.19.91": "1", + "1.1.19.92": "1", + "1.1.19.93": "1", + "1.1.19.94": "1", + "1.1.19.95": "1", + "1.1.19.96": "1", + "1.1.19.97": "1", + "1.1.19.98": "1", + "1.1.19.99": "1", + "1.1.19.100": "1", + "1.1.19.101": "1", + "1.1.19.102": "1", + "1.1.19.103": "1", + "1.1.19.104": "1", + "1.1.19.105": "1", + "1.1.19.106": "1", + "1.1.19.107": "1", + "1.1.19.108": "1", + "1.1.19.109": "1", + "1.1.19.110": "1", + "1.1.19.111": "1", + "1.1.19.112": "1", + "1.1.19.113": "1", + "1.1.19.114": "1", + "1.1.19.115": "1", + "1.1.19.116": "1", + "1.1.19.117": "1", + "1.1.19.118": "1", + "1.1.19.119": "1", + "1.1.19.120": "1", + "1.1.19.121": "1", + "1.1.19.122": "1", + "1.1.19.123": "1", + "1.1.19.124": "1", + "1.1.19.125": "1", + "1.1.19.126": "1", + "1.1.19.127": "1", + "1.1.19.128": "1", + "1.1.19.129": "1", + "1.1.19.130": "1", + "1.1.19.131": "1", + "1.1.19.132": "1", + "1.1.19.133": "1", + "1.1.19.134": "1", + "1.1.19.135": "1", + "1.1.19.136": "1", + "1.1.19.137": "1", + "1.1.19.138": "1", + "1.1.19.139": "1", + "1.1.19.140": "1", + "1.1.19.141": "1", + "1.1.19.142": "1", + "1.1.19.143": "1", + "1.1.19.144": "1", + "1.1.19.145": "1", + "1.1.19.146": "1", + "1.1.19.147": "1", + "1.1.19.148": "1", + "1.1.19.149": "1", + "1.1.19.150": "1", + "1.1.19.151": "1", + "1.1.19.152": "1", + "1.1.19.153": "1", + "1.1.19.154": "1", + "1.1.19.155": "1", + "1.1.19.156": "1", + "1.1.19.157": "1", + "1.1.19.158": "1", + "1.1.19.159": "1", + "1.1.19.160": "1", + "1.1.19.161": "1", + "1.1.19.162": "1", + "1.1.19.163": "1", + "1.1.19.164": "1", + "1.1.19.165": "1", + "1.1.19.166": "1", + "1.1.19.167": "1", + "1.1.19.168": "1", + "1.1.19.169": "1", + "1.1.19.170": "1", + "1.1.19.171": "1", + "1.1.19.172": "1", + "1.1.19.173": "1", + "1.1.19.174": "1", + "1.1.19.175": "1", + "1.1.19.176": "1", + "1.1.19.177": "1", + "1.1.19.178": "1", + "1.1.19.179": "1", + "1.1.19.180": "1", + "1.1.19.181": "1", + "1.1.19.182": "1", + "1.1.19.183": "1", + "1.1.19.184": "1", + "1.1.19.185": "1", + "1.1.19.186": "1", + "1.1.19.187": "1", + "1.1.19.188": "1", + "1.1.19.189": "1", + "1.1.19.190": "1", + "1.1.19.191": "1", + "1.1.19.192": "1", + "1.1.19.193": "1", + "1.1.19.194": "1", + "1.1.19.195": "1", + "1.1.19.196": "1", + "1.1.19.197": "1", + "1.1.19.198": "1", + "1.1.19.199": "1", + "1.1.19.200": "1", + "1.1.19.201": "1", + "1.1.19.202": "1", + "1.1.19.203": "1", + "1.1.19.204": "1", + "1.1.19.205": "1", + "1.1.19.206": "1", + "1.1.19.207": "1", + "1.1.19.208": "1", + "1.1.19.209": "1", + "1.1.19.210": "1", + "1.1.19.211": "1", + "1.1.19.212": "1", + "1.1.19.213": "1", + "1.1.19.214": "1", + "1.1.19.215": "1", + "1.1.19.216": "1", + "1.1.19.217": "1", + "1.1.19.218": "1", + "1.1.19.219": "1", + "1.1.19.220": "1", + "1.1.19.221": "1", + "1.1.19.222": "1", + "1.1.19.223": "1", + "1.1.19.224": "1", + "1.1.19.225": "1", + "1.1.19.226": "1", + "1.1.19.227": "1", + "1.1.19.228": "1", + "1.1.19.229": "1", + "1.1.19.230": "1", + "1.1.19.231": "1", + "1.1.19.232": "1", + "1.1.19.233": "1", + "1.1.19.234": "1", + "1.1.19.235": "1", + "1.1.19.236": "1", + "1.1.19.237": "1", + "1.1.19.238": "1", + "1.1.19.239": "1", + "1.1.19.240": "1", + "1.1.19.241": "1", + "1.1.19.242": "1", + "1.1.19.243": "1", + "1.1.19.244": "1", + "1.1.19.245": "1", + "1.1.19.246": "1", + "1.1.19.247": "1", + "1.1.19.248": "1", + "1.1.19.249": "1", + "1.1.19.250": "1", + "1.1.19.251": "1", + "1.1.19.252": "1", + "1.1.19.253": "1", + "1.1.19.254": "1", + "1.1.19.255": "1", + "1.1.19.256": "1", + "1.1.19.257": "1", + "1.1.19.258": "1", + "1.1.19.259": "1", + "1.1.19.260": "1", + "1.1.19.261": "1", + "1.1.19.262": "1", + "1.1.19.263": "1", + "1.1.19.264": "1", + "1.1.19.265": "1", + "1.1.19.266": "1", + "1.1.19.267": "1", + "1.1.19.268": "1", + "1.1.19.269": "1", + "1.1.19.270": "1", + "1.1.19.271": "1", + "1.1.19.272": "1", + "1.1.19.273": "1", + "1.1.19.274": "1", + "1.1.19.275": "1", + "1.1.19.276": "1", + "1.1.19.277": "1", + "1.1.19.278": "1", + "1.1.19.279": "1", + "1.1.19.280": "1", + "1.1.19.281": "1", + "1.1.19.282": "1", + "1.1.19.283": "1", + "1.1.19.284": "1", + "1.1.19.285": "1", + "1.1.19.286": "1", + "1.1.19.287": "1", + "1.1.19.288": "1", + "1.1.19.289": "1", + "1.1.19.290": "1", + "1.1.19.291": "1", + "1.1.19.292": "1", + "1.1.19.293": "1", + "1.1.19.294": "1", + "1.1.19.295": "1", + "1.1.19.296": "1", + "1.1.19.297": "1", + "1.1.19.298": "1", + "1.1.19.299": "1", + "1.1.19.300": "1", + "1.1.19.301": "1", + "1.1.19.302": "1", + "1.1.19.303": "1", + "1.1.19.304": "1", + "1.1.19.305": "1", + "1.1.19.306": "1", + "1.1.19.307": "1", + "1.1.19.308": "1", + "1.1.19.309": "1", + "1.1.19.310": "1", + "1.1.19.311": "1", + "1.1.19.312": "1", + "1.1.19.313": "1", + "1.1.19.314": "1", + "1.1.19.315": "1", + "1.1.19.316": "1", + "1.1.19.317": "1", + "1.1.19.318": "1", + "1.1.19.319": "1", + "1.1.19.320": "1", + "1.1.19.321": "1", + "1.1.19.322": "1", + "1.1.19.323": "1", + "1.1.19.324": "1", + "1.1.19.325": "1", + "1.1.19.326": "1", + "1.1.19.327": "1", + "1.1.19.328": "1", + "1.1.19.329": "1", + "1.1.19.330": "1", + "1.1.19.331": "1", + "1.1.19.332": "1", + "1.1.19.333": "1", + "1.1.19.334": "1", + "1.1.19.335": "1", + "1.1.19.336": "1", + "1.1.19.337": "1", + "1.1.19.338": "1", + "1.1.19.339": "1", + "1.1.19.340": "1", + "1.1.19.341": "1", + "1.1.19.342": "1", + "1.1.19.343": "1", + "1.1.19.344": "1", + "1.1.19.345": "1", + "1.1.19.346": "1", + "1.1.19.347": "1", + "1.1.19.348": "1", + "1.1.19.349": "1", + "1.1.19.350": "1", + "1.1.19.351": "1", + "1.1.19.352": "1", + "1.1.19.353": "1", + "1.1.19.354": "1", + "1.1.19.355": "1", + "1.1.19.356": "1", + "1.1.19.357": "1", + "1.1.19.358": "1", + "1.1.19.359": "1", + "1.1.19.360": "1", + "1.1.19.361": "1", + "1.1.19.362": "1", + "1.1.19.363": "1", + "1.1.19.364": "1", + "1.1.19.365": "1", + "1.1.19.366": "1", + "1.1.19.367": "1", + "1.1.19.368": "1", + "1.1.19.369": "1", + "1.1.19.370": "1", + "1.1.19.371": "1", + "1.1.19.372": "1", + "1.1.19.373": "1", + "1.1.19.374": "1", + "1.1.19.375": "1", + "1.1.19.376": "1", + "1.1.19.377": "1", + "1.1.19.378": "1", + "1.1.19.379": "1", + "1.1.19.380": "1", + "1.1.19.381": "1", + "1.1.19.382": "1", + "1.1.19.383": "1", + "1.1.19.384": "1", + "1.1.19.385": "1", + "1.1.19.386": "1", + "1.1.19.387": "1", + "1.1.19.388": "1", + "1.1.19.389": "1", + "1.1.19.390": "1", + "1.1.19.391": "1", + "1.1.19.392": "1", + "1.1.19.393": "1", + "1.1.19.394": "1", + "1.1.19.395": "1", + "1.1.19.396": "1", + "1.1.19.397": "1", + "1.1.19.398": "1", + "1.1.19.399": "1", + "1.1.19.400": "1", + "1.1.20.1": "0", + "1.1.20.2": "0", + "1.1.20.3": "0", + "1.1.20.4": "0", + "1.1.20.5": "0", + "1.1.20.6": "0", + "1.1.20.7": "0", + "1.1.20.8": "0", + "1.1.20.9": "0", + "1.1.20.10": "0", + "1.1.20.11": "0", + "1.1.20.12": "0", + "1.1.20.13": "0", + "1.1.20.14": "0", + "1.1.20.15": "0", + "1.1.20.16": "0", + "1.1.20.17": "0", + "1.1.20.18": "0", + "1.1.20.19": "0", + "1.1.20.20": "0", + "1.1.20.21": "0", + "1.1.20.22": "0", + "1.1.20.23": "0", + "1.1.20.24": "0", + "1.1.20.25": "0", + "1.1.20.26": "0", + "1.1.20.27": "0", + "1.1.20.28": "0", + "1.1.20.29": "0", + "1.1.20.30": "0", + "1.1.20.31": "0", + "1.1.20.32": "0", + "1.1.20.33": "0", + "1.1.20.34": "0", + "1.1.20.35": "0", + "1.1.20.36": "0", + "1.1.20.37": "0", + "1.1.20.38": "0", + "1.1.20.39": "0", + "1.1.20.40": "0", + "1.1.20.41": "0", + "1.1.20.42": "0", + "1.1.20.43": "0", + "1.1.20.44": "0", + "1.1.20.45": "0", + "1.1.20.46": "0", + "1.1.20.47": "0", + "1.1.20.48": "0", + "1.1.20.49": "0", + "1.1.20.50": "0", + "1.1.20.51": "0", + "1.1.20.52": "0", + "1.1.20.53": "0", + "1.1.20.54": "0", + "1.1.20.55": "0", + "1.1.20.56": "0", + "1.1.20.57": "0", + "1.1.20.58": "0", + "1.1.20.59": "0", + "1.1.20.60": "0", + "1.1.20.61": "0", + "1.1.20.62": "0", + "1.1.20.63": "0", + "1.1.20.64": "0", + "1.1.20.65": "0", + "1.1.20.66": "0", + "1.1.20.67": "0", + "1.1.20.68": "0", + "1.1.20.69": "0", + "1.1.20.70": "0", + "1.1.20.71": "0", + "1.1.20.72": "0", + "1.1.20.73": "0", + "1.1.20.74": "0", + "1.1.20.75": "0", + "1.1.20.76": "0", + "1.1.20.77": "0", + "1.1.20.78": "0", + "1.1.20.79": "0", + "1.1.20.80": "0", + "1.1.20.81": "0", + "1.1.20.82": "0", + "1.1.20.83": "0", + "1.1.20.84": "0", + "1.1.20.85": "0", + "1.1.20.86": "0", + "1.1.20.87": "0", + "1.1.20.88": "0", + "1.1.20.89": "0", + "1.1.20.90": "0", + "1.1.20.91": "0", + "1.1.20.92": "0", + "1.1.20.93": "0", + "1.1.20.94": "0", + "1.1.20.95": "0", + "1.1.20.96": "0", + "1.1.20.97": "0", + "1.1.20.98": "0", + "1.1.20.99": "0", + "1.1.20.100": "0", + "1.1.20.101": "0", + "1.1.20.102": "0", + "1.1.20.103": "0", + "1.1.20.104": "0", + "1.1.20.105": "0", + "1.1.20.106": "0", + "1.1.20.107": "0", + "1.1.20.108": "0", + "1.1.20.109": "0", + "1.1.20.110": "0", + "1.1.20.111": "0", + "1.1.20.112": "0", + "1.1.20.113": "0", + "1.1.20.114": "0", + "1.1.20.115": "0", + "1.1.20.116": "0", + "1.1.20.117": "0", + "1.1.20.118": "0", + "1.1.20.119": "0", + "1.1.20.120": "0", + "1.1.20.121": "0", + "1.1.20.122": "0", + "1.1.20.123": "0", + "1.1.20.124": "0", + "1.1.20.125": "0", + "1.1.20.126": "0", + "1.1.20.127": "0", + "1.1.20.128": "0", + "1.1.20.129": "0", + "1.1.20.130": "0", + "1.1.20.131": "0", + "1.1.20.132": "0", + "1.1.20.133": "0", + "1.1.20.134": "0", + "1.1.20.135": "0", + "1.1.20.136": "0", + "1.1.20.137": "0", + "1.1.20.138": "0", + "1.1.20.139": "0", + "1.1.20.140": "0", + "1.1.20.141": "0", + "1.1.20.142": "0", + "1.1.20.143": "0", + "1.1.20.144": "0", + "1.1.20.145": "0", + "1.1.20.146": "0", + "1.1.20.147": "0", + "1.1.20.148": "0", + "1.1.20.149": "0", + "1.1.20.150": "0", + "1.1.20.151": "0", + "1.1.20.152": "0", + "1.1.20.153": "0", + "1.1.20.154": "0", + "1.1.20.155": "0", + "1.1.20.156": "0", + "1.1.20.157": "0", + "1.1.20.158": "0", + "1.1.20.159": "0", + "1.1.20.160": "0", + "1.1.20.161": "0", + "1.1.20.162": "0", + "1.1.20.163": "0", + "1.1.20.164": "0", + "1.1.20.165": "0", + "1.1.20.166": "0", + "1.1.20.167": "0", + "1.1.20.168": "0", + "1.1.20.169": "0", + "1.1.20.170": "0", + "1.1.20.171": "0", + "1.1.20.172": "0", + "1.1.20.173": "0", + "1.1.20.174": "0", + "1.1.20.175": "0", + "1.1.20.176": "0", + "1.1.20.177": "0", + "1.1.20.178": "0", + "1.1.20.179": "0", + "1.1.20.180": "0", + "1.1.20.181": "0", + "1.1.20.182": "0", + "1.1.20.183": "0", + "1.1.20.184": "0", + "1.1.20.185": "0", + "1.1.20.186": "0", + "1.1.20.187": "0", + "1.1.20.188": "0", + "1.1.20.189": "0", + "1.1.20.190": "0", + "1.1.20.191": "0", + "1.1.20.192": "0", + "1.1.20.193": "0", + "1.1.20.194": "0", + "1.1.20.195": "0", + "1.1.20.196": "0", + "1.1.20.197": "0", + "1.1.20.198": "0", + "1.1.20.199": "0", + "1.1.20.200": "0", + "1.1.20.201": "0", + "1.1.20.202": "0", + "1.1.20.203": "0", + "1.1.20.204": "0", + "1.1.20.205": "0", + "1.1.20.206": "0", + "1.1.20.207": "0", + "1.1.20.208": "0", + "1.1.20.209": "0", + "1.1.20.210": "0", + "1.1.20.211": "0", + "1.1.20.212": "0", + "1.1.20.213": "0", + "1.1.20.214": "0", + "1.1.20.215": "0", + "1.1.20.216": "0", + "1.1.20.217": "0", + "1.1.20.218": "0", + "1.1.20.219": "0", + "1.1.20.220": "0", + "1.1.20.221": "0", + "1.1.20.222": "0", + "1.1.20.223": "0", + "1.1.20.224": "0", + "1.1.20.225": "0", + "1.1.20.226": "0", + "1.1.20.227": "0", + "1.1.20.228": "0", + "1.1.20.229": "0", + "1.1.20.230": "0", + "1.1.20.231": "0", + "1.1.20.232": "0", + "1.1.20.233": "0", + "1.1.20.234": "0", + "1.1.20.235": "0", + "1.1.20.236": "0", + "1.1.20.237": "0", + "1.1.20.238": "0", + "1.1.20.239": "0", + "1.1.20.240": "0", + "1.1.20.241": "0", + "1.1.20.242": "0", + "1.1.20.243": "0", + "1.1.20.244": "0", + "1.1.20.245": "0", + "1.1.20.246": "0", + "1.1.20.247": "0", + "1.1.20.248": "0", + "1.1.20.249": "0", + "1.1.20.250": "0", + "1.1.20.251": "0", + "1.1.20.252": "0", + "1.1.20.253": "0", + "1.1.20.254": "0", + "1.1.20.255": "0", + "1.1.20.256": "0", + "1.1.20.257": "0", + "1.1.20.258": "0", + "1.1.20.259": "0", + "1.1.20.260": "0", + "1.1.20.261": "0", + "1.1.20.262": "0", + "1.1.20.263": "0", + "1.1.20.264": "0", + "1.1.20.265": "0", + "1.1.20.266": "0", + "1.1.20.267": "0", + "1.1.20.268": "0", + "1.1.20.269": "0", + "1.1.20.270": "0", + "1.1.20.271": "0", + "1.1.20.272": "0", + "1.1.20.273": "0", + "1.1.20.274": "0", + "1.1.20.275": "0", + "1.1.20.276": "0", + "1.1.20.277": "0", + "1.1.20.278": "0", + "1.1.20.279": "0", + "1.1.20.280": "0", + "1.1.20.281": "0", + "1.1.20.282": "0", + "1.1.20.283": "0", + "1.1.20.284": "0", + "1.1.20.285": "0", + "1.1.20.286": "0", + "1.1.20.287": "0", + "1.1.20.288": "0", + "1.1.20.289": "0", + "1.1.20.290": "0", + "1.1.20.291": "0", + "1.1.20.292": "0", + "1.1.20.293": "0", + "1.1.20.294": "0", + "1.1.20.295": "0", + "1.1.20.296": "0", + "1.1.20.297": "0", + "1.1.20.298": "0", + "1.1.20.299": "0", + "1.1.20.300": "0", + "1.1.20.301": "0", + "1.1.20.302": "0", + "1.1.20.303": "0", + "1.1.20.304": "0", + "1.1.20.305": "0", + "1.1.20.306": "0", + "1.1.20.307": "0", + "1.1.20.308": "0", + "1.1.20.309": "0", + "1.1.20.310": "0", + "1.1.20.311": "0", + "1.1.20.312": "0", + "1.1.20.313": "0", + "1.1.20.314": "0", + "1.1.20.315": "0", + "1.1.20.316": "0", + "1.1.20.317": "0", + "1.1.20.318": "0", + "1.1.20.319": "0", + "1.1.20.320": "0", + "1.1.20.321": "0", + "1.1.20.322": "0", + "1.1.20.323": "0", + "1.1.20.324": "0", + "1.1.20.325": "0", + "1.1.20.326": "0", + "1.1.20.327": "0", + "1.1.20.328": "0", + "1.1.20.329": "0", + "1.1.20.330": "0", + "1.1.20.331": "0", + "1.1.20.332": "0", + "1.1.20.333": "0", + "1.1.20.334": "0", + "1.1.20.335": "0", + "1.1.20.336": "0", + "1.1.20.337": "0", + "1.1.20.338": "0", + "1.1.20.339": "0", + "1.1.20.340": "0", + "1.1.20.341": "0", + "1.1.20.342": "0", + "1.1.20.343": "0", + "1.1.20.344": "0", + "1.1.20.345": "0", + "1.1.20.346": "0", + "1.1.20.347": "0", + "1.1.20.348": "0", + "1.1.20.349": "0", + "1.1.20.350": "0", + "1.1.20.351": "0", + "1.1.20.352": "0", + "1.1.20.353": "0", + "1.1.20.354": "0", + "1.1.20.355": "0", + "1.1.20.356": "0", + "1.1.20.357": "0", + "1.1.20.358": "0", + "1.1.20.359": "0", + "1.1.20.360": "0", + "1.1.20.361": "0", + "1.1.20.362": "0", + "1.1.20.363": "0", + "1.1.20.364": "0", + "1.1.20.365": "0", + "1.1.20.366": "0", + "1.1.20.367": "0", + "1.1.20.368": "0", + "1.1.20.369": "0", + "1.1.20.370": "0", + "1.1.20.371": "0", + "1.1.20.372": "0", + "1.1.20.373": "0", + "1.1.20.374": "0", + "1.1.20.375": "0", + "1.1.20.376": "0", + "1.1.20.377": "0", + "1.1.20.378": "0", + "1.1.20.379": "0", + "1.1.20.380": "0", + "1.1.20.381": "0", + "1.1.20.382": "0", + "1.1.20.383": "0", + "1.1.20.384": "0", + "1.1.20.385": "0", + "1.1.20.386": "0", + "1.1.20.387": "0", + "1.1.20.388": "0", + "1.1.20.389": "0", + "1.1.20.390": "0", + "1.1.20.391": "0", + "1.1.20.392": "0", + "1.1.20.393": "0", + "1.1.20.394": "0", + "1.1.20.395": "0", + "1.1.20.396": "0", + "1.1.20.397": "0", + "1.1.20.398": "0", + "1.1.20.399": "0", + "1.1.20.400": "0", + "1.1.21.1": "0", + "1.1.21.2": "0", + "1.1.21.3": "0", + "1.1.21.4": "0", + "1.1.21.5": "0", + "1.1.21.6": "0", + "1.1.21.7": "0", + "1.1.21.8": "0", + "1.1.21.9": "0", + "1.1.21.10": "0", + "1.1.21.11": "0", + "1.1.21.12": "0", + "1.1.21.13": "0", + "1.1.21.14": "0", + "1.1.21.15": "0", + "1.1.21.16": "0", + "1.1.21.17": "0", + "1.1.21.18": "0", + "1.1.21.19": "0", + "1.1.21.20": "0", + "1.1.21.21": "0", + "1.1.21.22": "0", + "1.1.21.23": "0", + "1.1.21.24": "0", + "1.1.21.25": "0", + "1.1.21.26": "0", + "1.1.21.27": "0", + "1.1.21.28": "0", + "1.1.21.29": "0", + "1.1.21.30": "0", + "1.1.21.31": "0", + "1.1.21.32": "0", + "1.1.21.33": "0", + "1.1.21.34": "0", + "1.1.21.35": "0", + "1.1.21.36": "0", + "1.1.21.37": "0", + "1.1.21.38": "0", + "1.1.21.39": "0", + "1.1.21.40": "0", + "1.1.21.41": "0", + "1.1.21.42": "0", + "1.1.21.43": "0", + "1.1.21.44": "0", + "1.1.21.45": "0", + "1.1.21.46": "0", + "1.1.21.47": "0", + "1.1.21.48": "0", + "1.1.21.49": "0", + "1.1.21.50": "0", + "1.1.21.51": "0", + "1.1.21.52": "0", + "1.1.21.53": "0", + "1.1.21.54": "0", + "1.1.21.55": "0", + "1.1.21.56": "0", + "1.1.21.57": "0", + "1.1.21.58": "0", + "1.1.21.59": "0", + "1.1.21.60": "0", + "1.1.21.61": "0", + "1.1.21.62": "0", + "1.1.21.63": "0", + "1.1.21.64": "0", + "1.1.21.65": "0", + "1.1.21.66": "0", + "1.1.21.67": "0", + "1.1.21.68": "0", + "1.1.21.69": "0", + "1.1.21.70": "0", + "1.1.21.71": "0", + "1.1.21.72": "0", + "1.1.21.73": "0", + "1.1.21.74": "0", + "1.1.21.75": "0", + "1.1.21.76": "0", + "1.1.21.77": "0", + "1.1.21.78": "0", + "1.1.21.79": "0", + "1.1.21.80": "0", + "1.1.21.81": "0", + "1.1.21.82": "0", + "1.1.21.83": "0", + "1.1.21.84": "0", + "1.1.21.85": "0", + "1.1.21.86": "0", + "1.1.21.87": "0", + "1.1.21.88": "0", + "1.1.21.89": "0", + "1.1.21.90": "0", + "1.1.21.91": "0", + "1.1.21.92": "0", + "1.1.21.93": "0", + "1.1.21.94": "0", + "1.1.21.95": "0", + "1.1.21.96": "0", + "1.1.21.97": "0", + "1.1.21.98": "0", + "1.1.21.99": "0", + "1.1.21.100": "0", + "1.1.21.101": "0", + "1.1.21.102": "0", + "1.1.21.103": "0", + "1.1.21.104": "0", + "1.1.21.105": "0", + "1.1.21.106": "0", + "1.1.21.107": "0", + "1.1.21.108": "0", + "1.1.21.109": "0", + "1.1.21.110": "0", + "1.1.21.111": "0", + "1.1.21.112": "0", + "1.1.21.113": "0", + "1.1.21.114": "0", + "1.1.21.115": "0", + "1.1.21.116": "0", + "1.1.21.117": "0", + "1.1.21.118": "0", + "1.1.21.119": "0", + "1.1.21.120": "0", + "1.1.21.121": "0", + "1.1.21.122": "0", + "1.1.21.123": "0", + "1.1.21.124": "0", + "1.1.21.125": "0", + "1.1.21.126": "0", + "1.1.21.127": "0", + "1.1.21.128": "0", + "1.1.21.129": "0", + "1.1.21.130": "0", + "1.1.21.131": "0", + "1.1.21.132": "0", + "1.1.21.133": "0", + "1.1.21.134": "0", + "1.1.21.135": "0", + "1.1.21.136": "0", + "1.1.21.137": "0", + "1.1.21.138": "0", + "1.1.21.139": "0", + "1.1.21.140": "0", + "1.1.21.141": "0", + "1.1.21.142": "0", + "1.1.21.143": "0", + "1.1.21.144": "0", + "1.1.21.145": "0", + "1.1.21.146": "0", + "1.1.21.147": "0", + "1.1.21.148": "0", + "1.1.21.149": "0", + "1.1.21.150": "0", + "1.1.21.151": "0", + "1.1.21.152": "0", + "1.1.21.153": "0", + "1.1.21.154": "0", + "1.1.21.155": "0", + "1.1.21.156": "0", + "1.1.21.157": "0", + "1.1.21.158": "0", + "1.1.21.159": "0", + "1.1.21.160": "0", + "1.1.21.161": "0", + "1.1.21.162": "0", + "1.1.21.163": "0", + "1.1.21.164": "0", + "1.1.21.165": "0", + "1.1.21.166": "0", + "1.1.21.167": "0", + "1.1.21.168": "0", + "1.1.21.169": "0", + "1.1.21.170": "0", + "1.1.21.171": "0", + "1.1.21.172": "0", + "1.1.21.173": "0", + "1.1.21.174": "0", + "1.1.21.175": "0", + "1.1.21.176": "0", + "1.1.21.177": "0", + "1.1.21.178": "0", + "1.1.21.179": "0", + "1.1.21.180": "0", + "1.1.21.181": "0", + "1.1.21.182": "0", + "1.1.21.183": "0", + "1.1.21.184": "0", + "1.1.21.185": "0", + "1.1.21.186": "0", + "1.1.21.187": "0", + "1.1.21.188": "0", + "1.1.21.189": "0", + "1.1.21.190": "0", + "1.1.21.191": "0", + "1.1.21.192": "0", + "1.1.21.193": "0", + "1.1.21.194": "0", + "1.1.21.195": "0", + "1.1.21.196": "0", + "1.1.21.197": "0", + "1.1.21.198": "0", + "1.1.21.199": "0", + "1.1.21.200": "0", + "1.1.21.201": "0", + "1.1.21.202": "0", + "1.1.21.203": "0", + "1.1.21.204": "0", + "1.1.21.205": "0", + "1.1.21.206": "0", + "1.1.21.207": "0", + "1.1.21.208": "0", + "1.1.21.209": "0", + "1.1.21.210": "0", + "1.1.21.211": "0", + "1.1.21.212": "0", + "1.1.21.213": "0", + "1.1.21.214": "0", + "1.1.21.215": "0", + "1.1.21.216": "0", + "1.1.21.217": "0", + "1.1.21.218": "0", + "1.1.21.219": "0", + "1.1.21.220": "0", + "1.1.21.221": "0", + "1.1.21.222": "0", + "1.1.21.223": "0", + "1.1.21.224": "0", + "1.1.21.225": "0", + "1.1.21.226": "0", + "1.1.21.227": "0", + "1.1.21.228": "0", + "1.1.21.229": "0", + "1.1.21.230": "0", + "1.1.21.231": "0", + "1.1.21.232": "0", + "1.1.21.233": "0", + "1.1.21.234": "0", + "1.1.21.235": "0", + "1.1.21.236": "0", + "1.1.21.237": "0", + "1.1.21.238": "0", + "1.1.21.239": "0", + "1.1.21.240": "0", + "1.1.21.241": "0", + "1.1.21.242": "0", + "1.1.21.243": "0", + "1.1.21.244": "0", + "1.1.21.245": "0", + "1.1.21.246": "0", + "1.1.21.247": "0", + "1.1.21.248": "0", + "1.1.21.249": "0", + "1.1.21.250": "0", + "1.1.21.251": "0", + "1.1.21.252": "0", + "1.1.21.253": "0", + "1.1.21.254": "0", + "1.1.21.255": "0", + "1.1.21.256": "0", + "1.1.21.257": "0", + "1.1.21.258": "0", + "1.1.21.259": "0", + "1.1.21.260": "0", + "1.1.21.261": "0", + "1.1.21.262": "0", + "1.1.21.263": "0", + "1.1.21.264": "0", + "1.1.21.265": "0", + "1.1.21.266": "0", + "1.1.21.267": "0", + "1.1.21.268": "0", + "1.1.21.269": "0", + "1.1.21.270": "0", + "1.1.21.271": "0", + "1.1.21.272": "0", + "1.1.21.273": "0", + "1.1.21.274": "0", + "1.1.21.275": "0", + "1.1.21.276": "0", + "1.1.21.277": "0", + "1.1.21.278": "0", + "1.1.21.279": "0", + "1.1.21.280": "0", + "1.1.21.281": "0", + "1.1.21.282": "0", + "1.1.21.283": "0", + "1.1.21.284": "0", + "1.1.21.285": "0", + "1.1.21.286": "0", + "1.1.21.287": "0", + "1.1.21.288": "0", + "1.1.21.289": "0", + "1.1.21.290": "0", + "1.1.21.291": "0", + "1.1.21.292": "0", + "1.1.21.293": "0", + "1.1.21.294": "0", + "1.1.21.295": "0", + "1.1.21.296": "0", + "1.1.21.297": "0", + "1.1.21.298": "0", + "1.1.21.299": "0", + "1.1.21.300": "0", + "1.1.21.301": "0", + "1.1.21.302": "0", + "1.1.21.303": "0", + "1.1.21.304": "0", + "1.1.21.305": "0", + "1.1.21.306": "0", + "1.1.21.307": "0", + "1.1.21.308": "0", + "1.1.21.309": "0", + "1.1.21.310": "0", + "1.1.21.311": "0", + "1.1.21.312": "0", + "1.1.21.313": "0", + "1.1.21.314": "0", + "1.1.21.315": "0", + "1.1.21.316": "0", + "1.1.21.317": "0", + "1.1.21.318": "0", + "1.1.21.319": "0", + "1.1.21.320": "0", + "1.1.21.321": "0", + "1.1.21.322": "0", + "1.1.21.323": "0", + "1.1.21.324": "0", + "1.1.21.325": "0", + "1.1.21.326": "0", + "1.1.21.327": "0", + "1.1.21.328": "0", + "1.1.21.329": "0", + "1.1.21.330": "0", + "1.1.21.331": "0", + "1.1.21.332": "0", + "1.1.21.333": "0", + "1.1.21.334": "0", + "1.1.21.335": "0", + "1.1.21.336": "0", + "1.1.21.337": "0", + "1.1.21.338": "0", + "1.1.21.339": "0", + "1.1.21.340": "0", + "1.1.21.341": "0", + "1.1.21.342": "0", + "1.1.21.343": "0", + "1.1.21.344": "0", + "1.1.21.345": "0", + "1.1.21.346": "0", + "1.1.21.347": "0", + "1.1.21.348": "0", + "1.1.21.349": "0", + "1.1.21.350": "0", + "1.1.21.351": "0", + "1.1.21.352": "0", + "1.1.21.353": "0", + "1.1.21.354": "0", + "1.1.21.355": "0", + "1.1.21.356": "0", + "1.1.21.357": "0", + "1.1.21.358": "0", + "1.1.21.359": "0", + "1.1.21.360": "0", + "1.1.21.361": "0", + "1.1.21.362": "0", + "1.1.21.363": "0", + "1.1.21.364": "0", + "1.1.21.365": "0", + "1.1.21.366": "0", + "1.1.21.367": "0", + "1.1.21.368": "0", + "1.1.21.369": "0", + "1.1.21.370": "0", + "1.1.21.371": "0", + "1.1.21.372": "0", + "1.1.21.373": "0", + "1.1.21.374": "0", + "1.1.21.375": "0", + "1.1.21.376": "0", + "1.1.21.377": "0", + "1.1.21.378": "0", + "1.1.21.379": "0", + "1.1.21.380": "0", + "1.1.21.381": "0", + "1.1.21.382": "0", + "1.1.21.383": "0", + "1.1.21.384": "0", + "1.1.21.385": "0", + "1.1.21.386": "0", + "1.1.21.387": "0", + "1.1.21.388": "0", + "1.1.21.389": "0", + "1.1.21.390": "0", + "1.1.21.391": "0", + "1.1.21.392": "0", + "1.1.21.393": "0", + "1.1.21.394": "0", + "1.1.21.395": "0", + "1.1.21.396": "0", + "1.1.21.397": "0", + "1.1.21.398": "0", + "1.1.21.399": "0", + "1.1.21.400": "0", + "1.1.22.1": "2", + "1.1.22.2": "2", + "1.1.22.3": "2", + "1.1.22.4": "2", + "1.1.22.5": "2", + "1.1.22.6": "2", + "1.1.22.7": "2", + "1.1.22.8": "2", + "1.1.22.9": "2", + "1.1.22.10": "2", + "1.1.22.11": "2", + "1.1.22.12": "2", + "1.1.22.13": "2", + "1.1.22.14": "2", + "1.1.22.15": "2", + "1.1.22.16": "2", + "1.1.22.17": "2", + "1.1.22.18": "2", + "1.1.22.19": "2", + "1.1.22.20": "2", + "1.1.22.21": "2", + "1.1.22.22": "2", + "1.1.22.23": "2", + "1.1.22.24": "2", + "1.1.22.25": "2", + "1.1.22.26": "2", + "1.1.22.27": "2", + "1.1.22.28": "2", + "1.1.22.29": "2", + "1.1.22.30": "2", + "1.1.22.31": "2", + "1.1.22.32": "2", + "1.1.22.33": "2", + "1.1.22.34": "2", + "1.1.22.35": "2", + "1.1.22.36": "2", + "1.1.22.37": "2", + "1.1.22.38": "2", + "1.1.22.39": "2", + "1.1.22.40": "2", + "1.1.22.41": "2", + "1.1.22.42": "2", + "1.1.22.43": "2", + "1.1.22.44": "2", + "1.1.22.45": "2", + "1.1.22.46": "2", + "1.1.22.47": "2", + "1.1.22.48": "2", + "1.1.22.49": "2", + "1.1.22.50": "2", + "1.1.22.51": "2", + "1.1.22.52": "2", + "1.1.22.53": "2", + "1.1.22.54": "2", + "1.1.22.55": "2", + "1.1.22.56": "2", + "1.1.22.57": "2", + "1.1.22.58": "2", + "1.1.22.59": "2", + "1.1.22.60": "2", + "1.1.22.61": "2", + "1.1.22.62": "2", + "1.1.22.63": "2", + "1.1.22.64": "2", + "1.1.22.65": "2", + "1.1.22.66": "2", + "1.1.22.67": "2", + "1.1.22.68": "2", + "1.1.22.69": "2", + "1.1.22.70": "2", + "1.1.22.71": "2", + "1.1.22.72": "2", + "1.1.22.73": "2", + "1.1.22.74": "2", + "1.1.22.75": "2", + "1.1.22.76": "2", + "1.1.22.77": "2", + "1.1.22.78": "2", + "1.1.22.79": "2", + "1.1.22.80": "2", + "1.1.22.81": "2", + "1.1.22.82": "2", + "1.1.22.83": "2", + "1.1.22.84": "2", + "1.1.22.85": "2", + "1.1.22.86": "2", + "1.1.22.87": "2", + "1.1.22.88": "2", + "1.1.22.89": "2", + "1.1.22.90": "2", + "1.1.22.91": "2", + "1.1.22.92": "2", + "1.1.22.93": "2", + "1.1.22.94": "2", + "1.1.22.95": "2", + "1.1.22.96": "2", + "1.1.22.97": "2", + "1.1.22.98": "2", + "1.1.22.99": "2", + "1.1.22.100": "2", + "1.1.22.101": "2", + "1.1.22.102": "2", + "1.1.22.103": "2", + "1.1.22.104": "2", + "1.1.22.105": "2", + "1.1.22.106": "2", + "1.1.22.107": "2", + "1.1.22.108": "2", + "1.1.22.109": "2", + "1.1.22.110": "2", + "1.1.22.111": "2", + "1.1.22.112": "2", + "1.1.22.113": "2", + "1.1.22.114": "2", + "1.1.22.115": "2", + "1.1.22.116": "2", + "1.1.22.117": "2", + "1.1.22.118": "2", + "1.1.22.119": "2", + "1.1.22.120": "2", + "1.1.22.121": "2", + "1.1.22.122": "2", + "1.1.22.123": "2", + "1.1.22.124": "2", + "1.1.22.125": "2", + "1.1.22.126": "2", + "1.1.22.127": "2", + "1.1.22.128": "2", + "1.1.22.129": "2", + "1.1.22.130": "2", + "1.1.22.131": "2", + "1.1.22.132": "2", + "1.1.22.133": "2", + "1.1.22.134": "2", + "1.1.22.135": "2", + "1.1.22.136": "2", + "1.1.22.137": "2", + "1.1.22.138": "2", + "1.1.22.139": "2", + "1.1.22.140": "2", + "1.1.22.141": "2", + "1.1.22.142": "2", + "1.1.22.143": "2", + "1.1.22.144": "2", + "1.1.22.145": "2", + "1.1.22.146": "2", + "1.1.22.147": "2", + "1.1.22.148": "2", + "1.1.22.149": "2", + "1.1.22.150": "2", + "1.1.22.151": "2", + "1.1.22.152": "2", + "1.1.22.153": "2", + "1.1.22.154": "2", + "1.1.22.155": "2", + "1.1.22.156": "2", + "1.1.22.157": "2", + "1.1.22.158": "2", + "1.1.22.159": "2", + "1.1.22.160": "2", + "1.1.22.161": "2", + "1.1.22.162": "2", + "1.1.22.163": "2", + "1.1.22.164": "2", + "1.1.22.165": "2", + "1.1.22.166": "2", + "1.1.22.167": "2", + "1.1.22.168": "2", + "1.1.22.169": "2", + "1.1.22.170": "2", + "1.1.22.171": "2", + "1.1.22.172": "2", + "1.1.22.173": "2", + "1.1.22.174": "2", + "1.1.22.175": "2", + "1.1.22.176": "2", + "1.1.22.177": "2", + "1.1.22.178": "2", + "1.1.22.179": "2", + "1.1.22.180": "2", + "1.1.22.181": "2", + "1.1.22.182": "2", + "1.1.22.183": "2", + "1.1.22.184": "2", + "1.1.22.185": "2", + "1.1.22.186": "2", + "1.1.22.187": "2", + "1.1.22.188": "2", + "1.1.22.189": "2", + "1.1.22.190": "2", + "1.1.22.191": "2", + "1.1.22.192": "2", + "1.1.22.193": "2", + "1.1.22.194": "2", + "1.1.22.195": "2", + "1.1.22.196": "2", + "1.1.22.197": "2", + "1.1.22.198": "2", + "1.1.22.199": "2", + "1.1.22.200": "2", + "1.1.22.201": "2", + "1.1.22.202": "2", + "1.1.22.203": "2", + "1.1.22.204": "2", + "1.1.22.205": "2", + "1.1.22.206": "2", + "1.1.22.207": "2", + "1.1.22.208": "2", + "1.1.22.209": "2", + "1.1.22.210": "2", + "1.1.22.211": "2", + "1.1.22.212": "2", + "1.1.22.213": "2", + "1.1.22.214": "2", + "1.1.22.215": "2", + "1.1.22.216": "2", + "1.1.22.217": "2", + "1.1.22.218": "2", + "1.1.22.219": "2", + "1.1.22.220": "2", + "1.1.22.221": "2", + "1.1.22.222": "2", + "1.1.22.223": "2", + "1.1.22.224": "2", + "1.1.22.225": "2", + "1.1.22.226": "2", + "1.1.22.227": "2", + "1.1.22.228": "2", + "1.1.22.229": "2", + "1.1.22.230": "2", + "1.1.22.231": "2", + "1.1.22.232": "2", + "1.1.22.233": "2", + "1.1.22.234": "2", + "1.1.22.235": "2", + "1.1.22.236": "2", + "1.1.22.237": "2", + "1.1.22.238": "2", + "1.1.22.239": "2", + "1.1.22.240": "2", + "1.1.22.241": "2", + "1.1.22.242": "2", + "1.1.22.243": "2", + "1.1.22.244": "2", + "1.1.22.245": "2", + "1.1.22.246": "2", + "1.1.22.247": "2", + "1.1.22.248": "2", + "1.1.22.249": "2", + "1.1.22.250": "2", + "1.1.22.251": "2", + "1.1.22.252": "2", + "1.1.22.253": "2", + "1.1.22.254": "2", + "1.1.22.255": "2", + "1.1.22.256": "2", + "1.1.22.257": "2", + "1.1.22.258": "2", + "1.1.22.259": "2", + "1.1.22.260": "2", + "1.1.22.261": "2", + "1.1.22.262": "2", + "1.1.22.263": "2", + "1.1.22.264": "2", + "1.1.22.265": "2", + "1.1.22.266": "2", + "1.1.22.267": "2", + "1.1.22.268": "2", + "1.1.22.269": "2", + "1.1.22.270": "2", + "1.1.22.271": "2", + "1.1.22.272": "2", + "1.1.22.273": "2", + "1.1.22.274": "2", + "1.1.22.275": "2", + "1.1.22.276": "2", + "1.1.22.277": "2", + "1.1.22.278": "2", + "1.1.22.279": "2", + "1.1.22.280": "2", + "1.1.22.281": "2", + "1.1.22.282": "2", + "1.1.22.283": "2", + "1.1.22.284": "2", + "1.1.22.285": "2", + "1.1.22.286": "2", + "1.1.22.287": "2", + "1.1.22.288": "2", + "1.1.22.289": "2", + "1.1.22.290": "2", + "1.1.22.291": "2", + "1.1.22.292": "2", + "1.1.22.293": "2", + "1.1.22.294": "2", + "1.1.22.295": "2", + "1.1.22.296": "2", + "1.1.22.297": "2", + "1.1.22.298": "2", + "1.1.22.299": "2", + "1.1.22.300": "2", + "1.1.22.301": "2", + "1.1.22.302": "2", + "1.1.22.303": "2", + "1.1.22.304": "2", + "1.1.22.305": "2", + "1.1.22.306": "2", + "1.1.22.307": "2", + "1.1.22.308": "2", + "1.1.22.309": "2", + "1.1.22.310": "2", + "1.1.22.311": "2", + "1.1.22.312": "2", + "1.1.22.313": "2", + "1.1.22.314": "2", + "1.1.22.315": "2", + "1.1.22.316": "2", + "1.1.22.317": "2", + "1.1.22.318": "2", + "1.1.22.319": "2", + "1.1.22.320": "2", + "1.1.22.321": "2", + "1.1.22.322": "2", + "1.1.22.323": "2", + "1.1.22.324": "2", + "1.1.22.325": "2", + "1.1.22.326": "2", + "1.1.22.327": "2", + "1.1.22.328": "2", + "1.1.22.329": "2", + "1.1.22.330": "2", + "1.1.22.331": "2", + "1.1.22.332": "2", + "1.1.22.333": "2", + "1.1.22.334": "2", + "1.1.22.335": "2", + "1.1.22.336": "2", + "1.1.22.337": "2", + "1.1.22.338": "2", + "1.1.22.339": "2", + "1.1.22.340": "2", + "1.1.22.341": "2", + "1.1.22.342": "2", + "1.1.22.343": "2", + "1.1.22.344": "2", + "1.1.22.345": "2", + "1.1.22.346": "2", + "1.1.22.347": "2", + "1.1.22.348": "2", + "1.1.22.349": "2", + "1.1.22.350": "2", + "1.1.22.351": "2", + "1.1.22.352": "2", + "1.1.22.353": "2", + "1.1.22.354": "2", + "1.1.22.355": "2", + "1.1.22.356": "2", + "1.1.22.357": "2", + "1.1.22.358": "2", + "1.1.22.359": "2", + "1.1.22.360": "2", + "1.1.22.361": "2", + "1.1.22.362": "2", + "1.1.22.363": "2", + "1.1.22.364": "2", + "1.1.22.365": "2", + "1.1.22.366": "2", + "1.1.22.367": "2", + "1.1.22.368": "2", + "1.1.22.369": "2", + "1.1.22.370": "2", + "1.1.22.371": "2", + "1.1.22.372": "2", + "1.1.22.373": "2", + "1.1.22.374": "2", + "1.1.22.375": "2", + "1.1.22.376": "2", + "1.1.22.377": "2", + "1.1.22.378": "2", + "1.1.22.379": "2", + "1.1.22.380": "2", + "1.1.22.381": "2", + "1.1.22.382": "2", + "1.1.22.383": "2", + "1.1.22.384": "2", + "1.1.22.385": "2", + "1.1.22.386": "2", + "1.1.22.387": "2", + "1.1.22.388": "2", + "1.1.22.389": "2", + "1.1.22.390": "2", + "1.1.22.391": "2", + "1.1.22.392": "2", + "1.1.22.393": "2", + "1.1.22.394": "2", + "1.1.22.395": "2", + "1.1.22.396": "2", + "1.1.22.397": "2", + "1.1.22.398": "2", + "1.1.22.399": "2", + "1.1.22.400": "2", + "1.1.23.1": "1", + "1.1.23.2": "1", + "1.1.23.3": "1", + "1.1.23.4": "1", + "1.1.23.5": "1", + "1.1.23.6": "1", + "1.1.23.7": "1", + "1.1.23.8": "1", + "1.1.23.9": "1", + "1.1.23.10": "1", + "1.1.23.11": "1", + "1.1.23.12": "1", + "1.1.23.13": "1", + "1.1.23.14": "1", + "1.1.23.15": "1", + "1.1.23.16": "1", + "1.1.23.17": "1", + "1.1.23.18": "1", + "1.1.23.19": "1", + "1.1.23.20": "1", + "1.1.23.21": "1", + "1.1.23.22": "1", + "1.1.23.23": "1", + "1.1.23.24": "1", + "1.1.23.25": "1", + "1.1.23.26": "1", + "1.1.23.27": "1", + "1.1.23.28": "1", + "1.1.23.29": "1", + "1.1.23.30": "1", + "1.1.23.31": "1", + "1.1.23.32": "1", + "1.1.23.33": "1", + "1.1.23.34": "1", + "1.1.23.35": "1", + "1.1.23.36": "1", + "1.1.23.37": "1", + "1.1.23.38": "1", + "1.1.23.39": "1", + "1.1.23.40": "1", + "1.1.23.41": "1", + "1.1.23.42": "1", + "1.1.23.43": "1", + "1.1.23.44": "1", + "1.1.23.45": "1", + "1.1.23.46": "1", + "1.1.23.47": "1", + "1.1.23.48": "1", + "1.1.23.49": "1", + "1.1.23.50": "1", + "1.1.23.51": "1", + "1.1.23.52": "1", + "1.1.23.53": "1", + "1.1.23.54": "1", + "1.1.23.55": "1", + "1.1.23.56": "1", + "1.1.23.57": "1", + "1.1.23.58": "1", + "1.1.23.59": "1", + "1.1.23.60": "1", + "1.1.23.61": "1", + "1.1.23.62": "1", + "1.1.23.63": "1", + "1.1.23.64": "1", + "1.1.23.65": "1", + "1.1.23.66": "1", + "1.1.23.67": "1", + "1.1.23.68": "1", + "1.1.23.69": "1", + "1.1.23.70": "1", + "1.1.23.71": "1", + "1.1.23.72": "1", + "1.1.23.73": "1", + "1.1.23.74": "1", + "1.1.23.75": "1", + "1.1.23.76": "1", + "1.1.23.77": "1", + "1.1.23.78": "1", + "1.1.23.79": "1", + "1.1.23.80": "1", + "1.1.23.81": "1", + "1.1.23.82": "1", + "1.1.23.83": "1", + "1.1.23.84": "1", + "1.1.23.85": "1", + "1.1.23.86": "1", + "1.1.23.87": "1", + "1.1.23.88": "1", + "1.1.23.89": "1", + "1.1.23.90": "1", + "1.1.23.91": "1", + "1.1.23.92": "1", + "1.1.23.93": "1", + "1.1.23.94": "1", + "1.1.23.95": "1", + "1.1.23.96": "1", + "1.1.23.97": "1", + "1.1.23.98": "1", + "1.1.23.99": "1", + "1.1.23.100": "1", + "1.1.23.101": "1", + "1.1.23.102": "1", + "1.1.23.103": "1", + "1.1.23.104": "1", + "1.1.23.105": "1", + "1.1.23.106": "1", + "1.1.23.107": "1", + "1.1.23.108": "1", + "1.1.23.109": "1", + "1.1.23.110": "1", + "1.1.23.111": "1", + "1.1.23.112": "1", + "1.1.23.113": "1", + "1.1.23.114": "1", + "1.1.23.115": "1", + "1.1.23.116": "1", + "1.1.23.117": "1", + "1.1.23.118": "1", + "1.1.23.119": "1", + "1.1.23.120": "1", + "1.1.23.121": "1", + "1.1.23.122": "1", + "1.1.23.123": "1", + "1.1.23.124": "1", + "1.1.23.125": "1", + "1.1.23.126": "1", + "1.1.23.127": "1", + "1.1.23.128": "1", + "1.1.23.129": "1", + "1.1.23.130": "1", + "1.1.23.131": "1", + "1.1.23.132": "1", + "1.1.23.133": "1", + "1.1.23.134": "1", + "1.1.23.135": "1", + "1.1.23.136": "1", + "1.1.23.137": "1", + "1.1.23.138": "1", + "1.1.23.139": "1", + "1.1.23.140": "1", + "1.1.23.141": "1", + "1.1.23.142": "1", + "1.1.23.143": "1", + "1.1.23.144": "1", + "1.1.23.145": "1", + "1.1.23.146": "1", + "1.1.23.147": "1", + "1.1.23.148": "1", + "1.1.23.149": "1", + "1.1.23.150": "1", + "1.1.23.151": "1", + "1.1.23.152": "1", + "1.1.23.153": "1", + "1.1.23.154": "1", + "1.1.23.155": "1", + "1.1.23.156": "1", + "1.1.23.157": "1", + "1.1.23.158": "1", + "1.1.23.159": "1", + "1.1.23.160": "1", + "1.1.23.161": "1", + "1.1.23.162": "1", + "1.1.23.163": "1", + "1.1.23.164": "1", + "1.1.23.165": "1", + "1.1.23.166": "1", + "1.1.23.167": "1", + "1.1.23.168": "1", + "1.1.23.169": "1", + "1.1.23.170": "1", + "1.1.23.171": "1", + "1.1.23.172": "1", + "1.1.23.173": "1", + "1.1.23.174": "1", + "1.1.23.175": "1", + "1.1.23.176": "1", + "1.1.23.177": "1", + "1.1.23.178": "1", + "1.1.23.179": "1", + "1.1.23.180": "1", + "1.1.23.181": "1", + "1.1.23.182": "1", + "1.1.23.183": "1", + "1.1.23.184": "1", + "1.1.23.185": "1", + "1.1.23.186": "1", + "1.1.23.187": "1", + "1.1.23.188": "1", + "1.1.23.189": "1", + "1.1.23.190": "1", + "1.1.23.191": "1", + "1.1.23.192": "1", + "1.1.23.193": "1", + "1.1.23.194": "1", + "1.1.23.195": "1", + "1.1.23.196": "1", + "1.1.23.197": "1", + "1.1.23.198": "1", + "1.1.23.199": "1", + "1.1.23.200": "1", + "1.1.23.201": "1", + "1.1.23.202": "1", + "1.1.23.203": "1", + "1.1.23.204": "1", + "1.1.23.205": "1", + "1.1.23.206": "1", + "1.1.23.207": "1", + "1.1.23.208": "1", + "1.1.23.209": "1", + "1.1.23.210": "1", + "1.1.23.211": "1", + "1.1.23.212": "1", + "1.1.23.213": "1", + "1.1.23.214": "1", + "1.1.23.215": "1", + "1.1.23.216": "1", + "1.1.23.217": "1", + "1.1.23.218": "1", + "1.1.23.219": "1", + "1.1.23.220": "1", + "1.1.23.221": "1", + "1.1.23.222": "1", + "1.1.23.223": "1", + "1.1.23.224": "1", + "1.1.23.225": "1", + "1.1.23.226": "1", + "1.1.23.227": "1", + "1.1.23.228": "1", + "1.1.23.229": "1", + "1.1.23.230": "1", + "1.1.23.231": "1", + "1.1.23.232": "1", + "1.1.23.233": "1", + "1.1.23.234": "1", + "1.1.23.235": "1", + "1.1.23.236": "1", + "1.1.23.237": "1", + "1.1.23.238": "1", + "1.1.23.239": "1", + "1.1.23.240": "1", + "1.1.23.241": "1", + "1.1.23.242": "1", + "1.1.23.243": "1", + "1.1.23.244": "1", + "1.1.23.245": "1", + "1.1.23.246": "1", + "1.1.23.247": "1", + "1.1.23.248": "1", + "1.1.23.249": "1", + "1.1.23.250": "1", + "1.1.23.251": "1", + "1.1.23.252": "1", + "1.1.23.253": "1", + "1.1.23.254": "1", + "1.1.23.255": "1", + "1.1.23.256": "1", + "1.1.23.257": "1", + "1.1.23.258": "1", + "1.1.23.259": "1", + "1.1.23.260": "1", + "1.1.23.261": "1", + "1.1.23.262": "1", + "1.1.23.263": "1", + "1.1.23.264": "1", + "1.1.23.265": "1", + "1.1.23.266": "1", + "1.1.23.267": "1", + "1.1.23.268": "1", + "1.1.23.269": "1", + "1.1.23.270": "1", + "1.1.23.271": "1", + "1.1.23.272": "1", + "1.1.23.273": "1", + "1.1.23.274": "1", + "1.1.23.275": "1", + "1.1.23.276": "1", + "1.1.23.277": "1", + "1.1.23.278": "1", + "1.1.23.279": "1", + "1.1.23.280": "1", + "1.1.23.281": "1", + "1.1.23.282": "1", + "1.1.23.283": "1", + "1.1.23.284": "1", + "1.1.23.285": "1", + "1.1.23.286": "1", + "1.1.23.287": "1", + "1.1.23.288": "1", + "1.1.23.289": "1", + "1.1.23.290": "1", + "1.1.23.291": "1", + "1.1.23.292": "1", + "1.1.23.293": "1", + "1.1.23.294": "1", + "1.1.23.295": "1", + "1.1.23.296": "1", + "1.1.23.297": "1", + "1.1.23.298": "1", + "1.1.23.299": "1", + "1.1.23.300": "1", + "1.1.23.301": "1", + "1.1.23.302": "1", + "1.1.23.303": "1", + "1.1.23.304": "1", + "1.1.23.305": "1", + "1.1.23.306": "1", + "1.1.23.307": "1", + "1.1.23.308": "1", + "1.1.23.309": "1", + "1.1.23.310": "1", + "1.1.23.311": "1", + "1.1.23.312": "1", + "1.1.23.313": "1", + "1.1.23.314": "1", + "1.1.23.315": "1", + "1.1.23.316": "1", + "1.1.23.317": "1", + "1.1.23.318": "1", + "1.1.23.319": "1", + "1.1.23.320": "1", + "1.1.23.321": "1", + "1.1.23.322": "1", + "1.1.23.323": "1", + "1.1.23.324": "1", + "1.1.23.325": "1", + "1.1.23.326": "1", + "1.1.23.327": "1", + "1.1.23.328": "1", + "1.1.23.329": "1", + "1.1.23.330": "1", + "1.1.23.331": "1", + "1.1.23.332": "1", + "1.1.23.333": "1", + "1.1.23.334": "1", + "1.1.23.335": "1", + "1.1.23.336": "1", + "1.1.23.337": "1", + "1.1.23.338": "1", + "1.1.23.339": "1", + "1.1.23.340": "1", + "1.1.23.341": "1", + "1.1.23.342": "1", + "1.1.23.343": "1", + "1.1.23.344": "1", + "1.1.23.345": "1", + "1.1.23.346": "1", + "1.1.23.347": "1", + "1.1.23.348": "1", + "1.1.23.349": "1", + "1.1.23.350": "1", + "1.1.23.351": "1", + "1.1.23.352": "1", + "1.1.23.353": "1", + "1.1.23.354": "1", + "1.1.23.355": "1", + "1.1.23.356": "1", + "1.1.23.357": "1", + "1.1.23.358": "1", + "1.1.23.359": "1", + "1.1.23.360": "1", + "1.1.23.361": "1", + "1.1.23.362": "1", + "1.1.23.363": "1", + "1.1.23.364": "1", + "1.1.23.365": "1", + "1.1.23.366": "1", + "1.1.23.367": "1", + "1.1.23.368": "1", + "1.1.23.369": "1", + "1.1.23.370": "1", + "1.1.23.371": "1", + "1.1.23.372": "1", + "1.1.23.373": "1", + "1.1.23.374": "1", + "1.1.23.375": "1", + "1.1.23.376": "1", + "1.1.23.377": "1", + "1.1.23.378": "1", + "1.1.23.379": "1", + "1.1.23.380": "1", + "1.1.23.381": "1", + "1.1.23.382": "1", + "1.1.23.383": "1", + "1.1.23.384": "1", + "1.1.23.385": "1", + "1.1.23.386": "1", + "1.1.23.387": "1", + "1.1.23.388": "1", + "1.1.23.389": "1", + "1.1.23.390": "1", + "1.1.23.391": "1", + "1.1.23.392": "1", + "1.1.23.393": "1", + "1.1.23.394": "1", + "1.1.23.395": "1", + "1.1.23.396": "1", + "1.1.23.397": "1", + "1.1.23.398": "1", + "1.1.23.399": "1", + "1.1.23.400": "1", + "1.1.24.1": "0", + "1.1.24.2": "0", + "1.1.24.3": "0", + "1.1.24.4": "0", + "1.1.24.5": "0", + "1.1.24.6": "0", + "1.1.24.7": "0", + "1.1.24.8": "0", + "1.1.24.9": "0", + "1.1.24.10": "0", + "1.1.24.11": "0", + "1.1.24.12": "0", + "1.1.24.13": "0", + "1.1.24.14": "0", + "1.1.24.15": "0", + "1.1.24.16": "0", + "1.1.24.17": "0", + "1.1.24.18": "0", + "1.1.24.19": "0", + "1.1.24.20": "0", + "1.1.24.21": "0", + "1.1.24.22": "0", + "1.1.24.23": "0", + "1.1.24.24": "0", + "1.1.24.25": "0", + "1.1.24.26": "0", + "1.1.24.27": "0", + "1.1.24.28": "0", + "1.1.24.29": "0", + "1.1.24.30": "0", + "1.1.24.31": "0", + "1.1.24.32": "0", + "1.1.24.33": "0", + "1.1.24.34": "0", + "1.1.24.35": "0", + "1.1.24.36": "0", + "1.1.24.37": "0", + "1.1.24.38": "0", + "1.1.24.39": "0", + "1.1.24.40": "0", + "1.1.24.41": "0", + "1.1.24.42": "0", + "1.1.24.43": "0", + "1.1.24.44": "0", + "1.1.24.45": "0", + "1.1.24.46": "0", + "1.1.24.47": "0", + "1.1.24.48": "0", + "1.1.24.49": "0", + "1.1.24.50": "0", + "1.1.24.51": "0", + "1.1.24.52": "0", + "1.1.24.53": "0", + "1.1.24.54": "0", + "1.1.24.55": "0", + "1.1.24.56": "0", + "1.1.24.57": "0", + "1.1.24.58": "0", + "1.1.24.59": "0", + "1.1.24.60": "0", + "1.1.24.61": "0", + "1.1.24.62": "0", + "1.1.24.63": "0", + "1.1.24.64": "0", + "1.1.24.65": "0", + "1.1.24.66": "0", + "1.1.24.67": "0", + "1.1.24.68": "0", + "1.1.24.69": "0", + "1.1.24.70": "0", + "1.1.24.71": "0", + "1.1.24.72": "0", + "1.1.24.73": "0", + "1.1.24.74": "0", + "1.1.24.75": "0", + "1.1.24.76": "0", + "1.1.24.77": "0", + "1.1.24.78": "0", + "1.1.24.79": "0", + "1.1.24.80": "0", + "1.1.24.81": "0", + "1.1.24.82": "0", + "1.1.24.83": "0", + "1.1.24.84": "0", + "1.1.24.85": "0", + "1.1.24.86": "0", + "1.1.24.87": "0", + "1.1.24.88": "0", + "1.1.24.89": "0", + "1.1.24.90": "0", + "1.1.24.91": "0", + "1.1.24.92": "0", + "1.1.24.93": "0", + "1.1.24.94": "0", + "1.1.24.95": "0", + "1.1.24.96": "0", + "1.1.24.97": "0", + "1.1.24.98": "0", + "1.1.24.99": "0", + "1.1.24.100": "0", + "1.1.24.101": "0", + "1.1.24.102": "0", + "1.1.24.103": "0", + "1.1.24.104": "0", + "1.1.24.105": "0", + "1.1.24.106": "0", + "1.1.24.107": "0", + "1.1.24.108": "0", + "1.1.24.109": "0", + "1.1.24.110": "0", + "1.1.24.111": "0", + "1.1.24.112": "0", + "1.1.24.113": "0", + "1.1.24.114": "0", + "1.1.24.115": "0", + "1.1.24.116": "0", + "1.1.24.117": "0", + "1.1.24.118": "0", + "1.1.24.119": "0", + "1.1.24.120": "0", + "1.1.24.121": "0", + "1.1.24.122": "0", + "1.1.24.123": "0", + "1.1.24.124": "0", + "1.1.24.125": "0", + "1.1.24.126": "0", + "1.1.24.127": "0", + "1.1.24.128": "0", + "1.1.24.129": "0", + "1.1.24.130": "0", + "1.1.24.131": "0", + "1.1.24.132": "0", + "1.1.24.133": "0", + "1.1.24.134": "0", + "1.1.24.135": "0", + "1.1.24.136": "0", + "1.1.24.137": "0", + "1.1.24.138": "0", + "1.1.24.139": "0", + "1.1.24.140": "0", + "1.1.24.141": "0", + "1.1.24.142": "0", + "1.1.24.143": "0", + "1.1.24.144": "0", + "1.1.24.145": "0", + "1.1.24.146": "0", + "1.1.24.147": "0", + "1.1.24.148": "0", + "1.1.24.149": "0", + "1.1.24.150": "0", + "1.1.24.151": "0", + "1.1.24.152": "0", + "1.1.24.153": "0", + "1.1.24.154": "0", + "1.1.24.155": "0", + "1.1.24.156": "0", + "1.1.24.157": "0", + "1.1.24.158": "0", + "1.1.24.159": "0", + "1.1.24.160": "0", + "1.1.24.161": "0", + "1.1.24.162": "0", + "1.1.24.163": "0", + "1.1.24.164": "0", + "1.1.24.165": "0", + "1.1.24.166": "0", + "1.1.24.167": "0", + "1.1.24.168": "0", + "1.1.24.169": "0", + "1.1.24.170": "0", + "1.1.24.171": "0", + "1.1.24.172": "0", + "1.1.24.173": "0", + "1.1.24.174": "0", + "1.1.24.175": "0", + "1.1.24.176": "0", + "1.1.24.177": "0", + "1.1.24.178": "0", + "1.1.24.179": "0", + "1.1.24.180": "0", + "1.1.24.181": "0", + "1.1.24.182": "0", + "1.1.24.183": "0", + "1.1.24.184": "0", + "1.1.24.185": "0", + "1.1.24.186": "0", + "1.1.24.187": "0", + "1.1.24.188": "0", + "1.1.24.189": "0", + "1.1.24.190": "0", + "1.1.24.191": "0", + "1.1.24.192": "0", + "1.1.24.193": "0", + "1.1.24.194": "0", + "1.1.24.195": "0", + "1.1.24.196": "0", + "1.1.24.197": "0", + "1.1.24.198": "0", + "1.1.24.199": "0", + "1.1.24.200": "0", + "1.1.24.201": "0", + "1.1.24.202": "0", + "1.1.24.203": "0", + "1.1.24.204": "0", + "1.1.24.205": "0", + "1.1.24.206": "0", + "1.1.24.207": "0", + "1.1.24.208": "0", + "1.1.24.209": "0", + "1.1.24.210": "0", + "1.1.24.211": "0", + "1.1.24.212": "0", + "1.1.24.213": "0", + "1.1.24.214": "0", + "1.1.24.215": "0", + "1.1.24.216": "0", + "1.1.24.217": "0", + "1.1.24.218": "0", + "1.1.24.219": "0", + "1.1.24.220": "0", + "1.1.24.221": "0", + "1.1.24.222": "0", + "1.1.24.223": "0", + "1.1.24.224": "0", + "1.1.24.225": "0", + "1.1.24.226": "0", + "1.1.24.227": "0", + "1.1.24.228": "0", + "1.1.24.229": "0", + "1.1.24.230": "0", + "1.1.24.231": "0", + "1.1.24.232": "0", + "1.1.24.233": "0", + "1.1.24.234": "0", + "1.1.24.235": "0", + "1.1.24.236": "0", + "1.1.24.237": "0", + "1.1.24.238": "0", + "1.1.24.239": "0", + "1.1.24.240": "0", + "1.1.24.241": "0", + "1.1.24.242": "0", + "1.1.24.243": "0", + "1.1.24.244": "0", + "1.1.24.245": "0", + "1.1.24.246": "0", + "1.1.24.247": "0", + "1.1.24.248": "0", + "1.1.24.249": "0", + "1.1.24.250": "0", + "1.1.24.251": "0", + "1.1.24.252": "0", + "1.1.24.253": "0", + "1.1.24.254": "0", + "1.1.24.255": "0", + "1.1.24.256": "0", + "1.1.24.257": "0", + "1.1.24.258": "0", + "1.1.24.259": "0", + "1.1.24.260": "0", + "1.1.24.261": "0", + "1.1.24.262": "0", + "1.1.24.263": "0", + "1.1.24.264": "0", + "1.1.24.265": "0", + "1.1.24.266": "0", + "1.1.24.267": "0", + "1.1.24.268": "0", + "1.1.24.269": "0", + "1.1.24.270": "0", + "1.1.24.271": "0", + "1.1.24.272": "0", + "1.1.24.273": "0", + "1.1.24.274": "0", + "1.1.24.275": "0", + "1.1.24.276": "0", + "1.1.24.277": "0", + "1.1.24.278": "0", + "1.1.24.279": "0", + "1.1.24.280": "0", + "1.1.24.281": "0", + "1.1.24.282": "0", + "1.1.24.283": "0", + "1.1.24.284": "0", + "1.1.24.285": "0", + "1.1.24.286": "0", + "1.1.24.287": "0", + "1.1.24.288": "0", + "1.1.24.289": "0", + "1.1.24.290": "0", + "1.1.24.291": "0", + "1.1.24.292": "0", + "1.1.24.293": "0", + "1.1.24.294": "0", + "1.1.24.295": "0", + "1.1.24.296": "0", + "1.1.24.297": "0", + "1.1.24.298": "0", + "1.1.24.299": "0", + "1.1.24.300": "0", + "1.1.24.301": "0", + "1.1.24.302": "0", + "1.1.24.303": "0", + "1.1.24.304": "0", + "1.1.24.305": "0", + "1.1.24.306": "0", + "1.1.24.307": "0", + "1.1.24.308": "0", + "1.1.24.309": "0", + "1.1.24.310": "0", + "1.1.24.311": "0", + "1.1.24.312": "0", + "1.1.24.313": "0", + "1.1.24.314": "0", + "1.1.24.315": "0", + "1.1.24.316": "0", + "1.1.24.317": "0", + "1.1.24.318": "0", + "1.1.24.319": "0", + "1.1.24.320": "0", + "1.1.24.321": "0", + "1.1.24.322": "0", + "1.1.24.323": "0", + "1.1.24.324": "0", + "1.1.24.325": "0", + "1.1.24.326": "0", + "1.1.24.327": "0", + "1.1.24.328": "0", + "1.1.24.329": "0", + "1.1.24.330": "0", + "1.1.24.331": "0", + "1.1.24.332": "0", + "1.1.24.333": "0", + "1.1.24.334": "0", + "1.1.24.335": "0", + "1.1.24.336": "0", + "1.1.24.337": "0", + "1.1.24.338": "0", + "1.1.24.339": "0", + "1.1.24.340": "0", + "1.1.24.341": "0", + "1.1.24.342": "0", + "1.1.24.343": "0", + "1.1.24.344": "0", + "1.1.24.345": "0", + "1.1.24.346": "0", + "1.1.24.347": "0", + "1.1.24.348": "0", + "1.1.24.349": "0", + "1.1.24.350": "0", + "1.1.24.351": "0", + "1.1.24.352": "0", + "1.1.24.353": "0", + "1.1.24.354": "0", + "1.1.24.355": "0", + "1.1.24.356": "0", + "1.1.24.357": "0", + "1.1.24.358": "0", + "1.1.24.359": "0", + "1.1.24.360": "0", + "1.1.24.361": "0", + "1.1.24.362": "0", + "1.1.24.363": "0", + "1.1.24.364": "0", + "1.1.24.365": "0", + "1.1.24.366": "0", + "1.1.24.367": "0", + "1.1.24.368": "0", + "1.1.24.369": "0", + "1.1.24.370": "0", + "1.1.24.371": "0", + "1.1.24.372": "0", + "1.1.24.373": "0", + "1.1.24.374": "0", + "1.1.24.375": "0", + "1.1.24.376": "0", + "1.1.24.377": "0", + "1.1.24.378": "0", + "1.1.24.379": "0", + "1.1.24.380": "0", + "1.1.24.381": "0", + "1.1.24.382": "0", + "1.1.24.383": "0", + "1.1.24.384": "0", + "1.1.24.385": "0", + "1.1.24.386": "0", + "1.1.24.387": "0", + "1.1.24.388": "0", + "1.1.24.389": "0", + "1.1.24.390": "0", + "1.1.24.391": "0", + "1.1.24.392": "0", + "1.1.24.393": "0", + "1.1.24.394": "0", + "1.1.24.395": "0", + "1.1.24.396": "0", + "1.1.24.397": "0", + "1.1.24.398": "0", + "1.1.24.399": "0", + "1.1.24.400": "0", + "1.1.25.1": "0", + "1.1.25.2": "0", + "1.1.25.3": "0", + "1.1.25.4": "0", + "1.1.25.5": "0", + "1.1.25.6": "0", + "1.1.25.7": "0", + "1.1.25.8": "0", + "1.1.25.9": "0", + "1.1.25.10": "0", + "1.1.25.11": "0", + "1.1.25.12": "0", + "1.1.25.13": "0", + "1.1.25.14": "0", + "1.1.25.15": "0", + "1.1.25.16": "0", + "1.1.25.17": "0", + "1.1.25.18": "0", + "1.1.25.19": "0", + "1.1.25.20": "0", + "1.1.25.21": "0", + "1.1.25.22": "0", + "1.1.25.23": "0", + "1.1.25.24": "0", + "1.1.25.25": "0", + "1.1.25.26": "0", + "1.1.25.27": "0", + "1.1.25.28": "0", + "1.1.25.29": "0", + "1.1.25.30": "0", + "1.1.25.31": "0", + "1.1.25.32": "0", + "1.1.25.33": "0", + "1.1.25.34": "0", + "1.1.25.35": "0", + "1.1.25.36": "0", + "1.1.25.37": "0", + "1.1.25.38": "0", + "1.1.25.39": "0", + "1.1.25.40": "0", + "1.1.25.41": "0", + "1.1.25.42": "0", + "1.1.25.43": "0", + "1.1.25.44": "0", + "1.1.25.45": "0", + "1.1.25.46": "0", + "1.1.25.47": "0", + "1.1.25.48": "0", + "1.1.25.49": "0", + "1.1.25.50": "0", + "1.1.25.51": "0", + "1.1.25.52": "0", + "1.1.25.53": "0", + "1.1.25.54": "0", + "1.1.25.55": "0", + "1.1.25.56": "0", + "1.1.25.57": "0", + "1.1.25.58": "0", + "1.1.25.59": "0", + "1.1.25.60": "0", + "1.1.25.61": "0", + "1.1.25.62": "0", + "1.1.25.63": "0", + "1.1.25.64": "0", + "1.1.25.65": "0", + "1.1.25.66": "0", + "1.1.25.67": "0", + "1.1.25.68": "0", + "1.1.25.69": "0", + "1.1.25.70": "0", + "1.1.25.71": "0", + "1.1.25.72": "0", + "1.1.25.73": "0", + "1.1.25.74": "0", + "1.1.25.75": "0", + "1.1.25.76": "0", + "1.1.25.77": "0", + "1.1.25.78": "0", + "1.1.25.79": "0", + "1.1.25.80": "0", + "1.1.25.81": "0", + "1.1.25.82": "0", + "1.1.25.83": "0", + "1.1.25.84": "0", + "1.1.25.85": "0", + "1.1.25.86": "0", + "1.1.25.87": "0", + "1.1.25.88": "0", + "1.1.25.89": "0", + "1.1.25.90": "0", + "1.1.25.91": "0", + "1.1.25.92": "0", + "1.1.25.93": "0", + "1.1.25.94": "0", + "1.1.25.95": "0", + "1.1.25.96": "0", + "1.1.25.97": "0", + "1.1.25.98": "0", + "1.1.25.99": "0", + "1.1.25.100": "0", + "1.1.25.101": "0", + "1.1.25.102": "0", + "1.1.25.103": "0", + "1.1.25.104": "0", + "1.1.25.105": "0", + "1.1.25.106": "0", + "1.1.25.107": "0", + "1.1.25.108": "0", + "1.1.25.109": "0", + "1.1.25.110": "0", + "1.1.25.111": "0", + "1.1.25.112": "0", + "1.1.25.113": "0", + "1.1.25.114": "0", + "1.1.25.115": "0", + "1.1.25.116": "0", + "1.1.25.117": "0", + "1.1.25.118": "0", + "1.1.25.119": "0", + "1.1.25.120": "0", + "1.1.25.121": "0", + "1.1.25.122": "0", + "1.1.25.123": "0", + "1.1.25.124": "0", + "1.1.25.125": "0", + "1.1.25.126": "0", + "1.1.25.127": "0", + "1.1.25.128": "0", + "1.1.25.129": "0", + "1.1.25.130": "0", + "1.1.25.131": "0", + "1.1.25.132": "0", + "1.1.25.133": "0", + "1.1.25.134": "0", + "1.1.25.135": "0", + "1.1.25.136": "0", + "1.1.25.137": "0", + "1.1.25.138": "0", + "1.1.25.139": "0", + "1.1.25.140": "0", + "1.1.25.141": "0", + "1.1.25.142": "0", + "1.1.25.143": "0", + "1.1.25.144": "0", + "1.1.25.145": "0", + "1.1.25.146": "0", + "1.1.25.147": "0", + "1.1.25.148": "0", + "1.1.25.149": "0", + "1.1.25.150": "0", + "1.1.25.151": "0", + "1.1.25.152": "0", + "1.1.25.153": "0", + "1.1.25.154": "0", + "1.1.25.155": "0", + "1.1.25.156": "0", + "1.1.25.157": "0", + "1.1.25.158": "0", + "1.1.25.159": "0", + "1.1.25.160": "0", + "1.1.25.161": "0", + "1.1.25.162": "0", + "1.1.25.163": "0", + "1.1.25.164": "0", + "1.1.25.165": "0", + "1.1.25.166": "0", + "1.1.25.167": "0", + "1.1.25.168": "0", + "1.1.25.169": "0", + "1.1.25.170": "0", + "1.1.25.171": "0", + "1.1.25.172": "0", + "1.1.25.173": "0", + "1.1.25.174": "0", + "1.1.25.175": "0", + "1.1.25.176": "0", + "1.1.25.177": "0", + "1.1.25.178": "0", + "1.1.25.179": "0", + "1.1.25.180": "0", + "1.1.25.181": "0", + "1.1.25.182": "0", + "1.1.25.183": "0", + "1.1.25.184": "0", + "1.1.25.185": "0", + "1.1.25.186": "0", + "1.1.25.187": "0", + "1.1.25.188": "0", + "1.1.25.189": "0", + "1.1.25.190": "0", + "1.1.25.191": "0", + "1.1.25.192": "0", + "1.1.25.193": "0", + "1.1.25.194": "0", + "1.1.25.195": "0", + "1.1.25.196": "0", + "1.1.25.197": "0", + "1.1.25.198": "0", + "1.1.25.199": "0", + "1.1.25.200": "0", + "1.1.25.201": "0", + "1.1.25.202": "0", + "1.1.25.203": "0", + "1.1.25.204": "0", + "1.1.25.205": "0", + "1.1.25.206": "0", + "1.1.25.207": "0", + "1.1.25.208": "0", + "1.1.25.209": "0", + "1.1.25.210": "0", + "1.1.25.211": "0", + "1.1.25.212": "0", + "1.1.25.213": "0", + "1.1.25.214": "0", + "1.1.25.215": "0", + "1.1.25.216": "0", + "1.1.25.217": "0", + "1.1.25.218": "0", + "1.1.25.219": "0", + "1.1.25.220": "0", + "1.1.25.221": "0", + "1.1.25.222": "0", + "1.1.25.223": "0", + "1.1.25.224": "0", + "1.1.25.225": "0", + "1.1.25.226": "0", + "1.1.25.227": "0", + "1.1.25.228": "0", + "1.1.25.229": "0", + "1.1.25.230": "0", + "1.1.25.231": "0", + "1.1.25.232": "0", + "1.1.25.233": "0", + "1.1.25.234": "0", + "1.1.25.235": "0", + "1.1.25.236": "0", + "1.1.25.237": "0", + "1.1.25.238": "0", + "1.1.25.239": "0", + "1.1.25.240": "0", + "1.1.25.241": "0", + "1.1.25.242": "0", + "1.1.25.243": "0", + "1.1.25.244": "0", + "1.1.25.245": "0", + "1.1.25.246": "0", + "1.1.25.247": "0", + "1.1.25.248": "0", + "1.1.25.249": "0", + "1.1.25.250": "0", + "1.1.25.251": "0", + "1.1.25.252": "0", + "1.1.25.253": "0", + "1.1.25.254": "0", + "1.1.25.255": "0", + "1.1.25.256": "0", + "1.1.25.257": "0", + "1.1.25.258": "0", + "1.1.25.259": "0", + "1.1.25.260": "0", + "1.1.25.261": "0", + "1.1.25.262": "0", + "1.1.25.263": "0", + "1.1.25.264": "0", + "1.1.25.265": "0", + "1.1.25.266": "0", + "1.1.25.267": "0", + "1.1.25.268": "0", + "1.1.25.269": "0", + "1.1.25.270": "0", + "1.1.25.271": "0", + "1.1.25.272": "0", + "1.1.25.273": "0", + "1.1.25.274": "0", + "1.1.25.275": "0", + "1.1.25.276": "0", + "1.1.25.277": "0", + "1.1.25.278": "0", + "1.1.25.279": "0", + "1.1.25.280": "0", + "1.1.25.281": "0", + "1.1.25.282": "0", + "1.1.25.283": "0", + "1.1.25.284": "0", + "1.1.25.285": "0", + "1.1.25.286": "0", + "1.1.25.287": "0", + "1.1.25.288": "0", + "1.1.25.289": "0", + "1.1.25.290": "0", + "1.1.25.291": "0", + "1.1.25.292": "0", + "1.1.25.293": "0", + "1.1.25.294": "0", + "1.1.25.295": "0", + "1.1.25.296": "0", + "1.1.25.297": "0", + "1.1.25.298": "0", + "1.1.25.299": "0", + "1.1.25.300": "0", + "1.1.25.301": "0", + "1.1.25.302": "0", + "1.1.25.303": "0", + "1.1.25.304": "0", + "1.1.25.305": "0", + "1.1.25.306": "0", + "1.1.25.307": "0", + "1.1.25.308": "0", + "1.1.25.309": "0", + "1.1.25.310": "0", + "1.1.25.311": "0", + "1.1.25.312": "0", + "1.1.25.313": "0", + "1.1.25.314": "0", + "1.1.25.315": "0", + "1.1.25.316": "0", + "1.1.25.317": "0", + "1.1.25.318": "0", + "1.1.25.319": "0", + "1.1.25.320": "0", + "1.1.25.321": "0", + "1.1.25.322": "0", + "1.1.25.323": "0", + "1.1.25.324": "0", + "1.1.25.325": "0", + "1.1.25.326": "0", + "1.1.25.327": "0", + "1.1.25.328": "0", + "1.1.25.329": "0", + "1.1.25.330": "0", + "1.1.25.331": "0", + "1.1.25.332": "0", + "1.1.25.333": "0", + "1.1.25.334": "0", + "1.1.25.335": "0", + "1.1.25.336": "0", + "1.1.25.337": "0", + "1.1.25.338": "0", + "1.1.25.339": "0", + "1.1.25.340": "0", + "1.1.25.341": "0", + "1.1.25.342": "0", + "1.1.25.343": "0", + "1.1.25.344": "0", + "1.1.25.345": "0", + "1.1.25.346": "0", + "1.1.25.347": "0", + "1.1.25.348": "0", + "1.1.25.349": "0", + "1.1.25.350": "0", + "1.1.25.351": "0", + "1.1.25.352": "0", + "1.1.25.353": "0", + "1.1.25.354": "0", + "1.1.25.355": "0", + "1.1.25.356": "0", + "1.1.25.357": "0", + "1.1.25.358": "0", + "1.1.25.359": "0", + "1.1.25.360": "0", + "1.1.25.361": "0", + "1.1.25.362": "0", + "1.1.25.363": "0", + "1.1.25.364": "0", + "1.1.25.365": "0", + "1.1.25.366": "0", + "1.1.25.367": "0", + "1.1.25.368": "0", + "1.1.25.369": "0", + "1.1.25.370": "0", + "1.1.25.371": "0", + "1.1.25.372": "0", + "1.1.25.373": "0", + "1.1.25.374": "0", + "1.1.25.375": "0", + "1.1.25.376": "0", + "1.1.25.377": "0", + "1.1.25.378": "0", + "1.1.25.379": "0", + "1.1.25.380": "0", + "1.1.25.381": "0", + "1.1.25.382": "0", + "1.1.25.383": "0", + "1.1.25.384": "0", + "1.1.25.385": "0", + "1.1.25.386": "0", + "1.1.25.387": "0", + "1.1.25.388": "0", + "1.1.25.389": "0", + "1.1.25.390": "0", + "1.1.25.391": "0", + "1.1.25.392": "0", + "1.1.25.393": "0", + "1.1.25.394": "0", + "1.1.25.395": "0", + "1.1.25.396": "0", + "1.1.25.397": "0", + "1.1.25.398": "0", + "1.1.25.399": "0", + "1.1.25.400": "0", + "1.1.26.1": "0", + "1.1.26.2": "0", + "1.1.26.3": "0", + "1.1.26.4": "0", + "1.1.26.5": "0", + "1.1.26.6": "0", + "1.1.26.7": "0", + "1.1.26.8": "0", + "1.1.26.9": "0", + "1.1.26.10": "0", + "1.1.26.11": "0", + "1.1.26.12": "0", + "1.1.26.13": "0", + "1.1.26.14": "0", + "1.1.26.15": "0", + "1.1.26.16": "0", + "1.1.26.17": "0", + "1.1.26.18": "0", + "1.1.26.19": "0", + "1.1.26.20": "0", + "1.1.26.21": "0", + "1.1.26.22": "0", + "1.1.26.23": "0", + "1.1.26.24": "0", + "1.1.26.25": "0", + "1.1.26.26": "0", + "1.1.26.27": "0", + "1.1.26.28": "0", + "1.1.26.29": "0", + "1.1.26.30": "0", + "1.1.26.31": "0", + "1.1.26.32": "0", + "1.1.26.33": "0", + "1.1.26.34": "0", + "1.1.26.35": "0", + "1.1.26.36": "0", + "1.1.26.37": "0", + "1.1.26.38": "0", + "1.1.26.39": "0", + "1.1.26.40": "0", + "1.1.26.41": "0", + "1.1.26.42": "0", + "1.1.26.43": "0", + "1.1.26.44": "0", + "1.1.26.45": "0", + "1.1.26.46": "0", + "1.1.26.47": "0", + "1.1.26.48": "0", + "1.1.26.49": "0", + "1.1.26.50": "0", + "1.1.26.51": "0", + "1.1.26.52": "0", + "1.1.26.53": "0", + "1.1.26.54": "0", + "1.1.26.55": "0", + "1.1.26.56": "0", + "1.1.26.57": "0", + "1.1.26.58": "0", + "1.1.26.59": "0", + "1.1.26.60": "0", + "1.1.26.61": "0", + "1.1.26.62": "0", + "1.1.26.63": "0", + "1.1.26.64": "0", + "1.1.26.65": "0", + "1.1.26.66": "0", + "1.1.26.67": "0", + "1.1.26.68": "0", + "1.1.26.69": "0", + "1.1.26.70": "0", + "1.1.26.71": "0", + "1.1.26.72": "0", + "1.1.26.73": "0", + "1.1.26.74": "0", + "1.1.26.75": "0", + "1.1.26.76": "0", + "1.1.26.77": "0", + "1.1.26.78": "0", + "1.1.26.79": "0", + "1.1.26.80": "0", + "1.1.26.81": "0", + "1.1.26.82": "0", + "1.1.26.83": "0", + "1.1.26.84": "0", + "1.1.26.85": "0", + "1.1.26.86": "0", + "1.1.26.87": "0", + "1.1.26.88": "0", + "1.1.26.89": "0", + "1.1.26.90": "0", + "1.1.26.91": "0", + "1.1.26.92": "0", + "1.1.26.93": "0", + "1.1.26.94": "0", + "1.1.26.95": "0", + "1.1.26.96": "0", + "1.1.26.97": "0", + "1.1.26.98": "0", + "1.1.26.99": "0", + "1.1.26.100": "0", + "1.1.26.101": "0", + "1.1.26.102": "0", + "1.1.26.103": "0", + "1.1.26.104": "0", + "1.1.26.105": "0", + "1.1.26.106": "0", + "1.1.26.107": "0", + "1.1.26.108": "0", + "1.1.26.109": "0", + "1.1.26.110": "0", + "1.1.26.111": "0", + "1.1.26.112": "0", + "1.1.26.113": "0", + "1.1.26.114": "0", + "1.1.26.115": "0", + "1.1.26.116": "0", + "1.1.26.117": "0", + "1.1.26.118": "0", + "1.1.26.119": "0", + "1.1.26.120": "0", + "1.1.26.121": "0", + "1.1.26.122": "0", + "1.1.26.123": "0", + "1.1.26.124": "0", + "1.1.26.125": "0", + "1.1.26.126": "0", + "1.1.26.127": "0", + "1.1.26.128": "0", + "1.1.26.129": "0", + "1.1.26.130": "0", + "1.1.26.131": "0", + "1.1.26.132": "0", + "1.1.26.133": "0", + "1.1.26.134": "0", + "1.1.26.135": "0", + "1.1.26.136": "0", + "1.1.26.137": "0", + "1.1.26.138": "0", + "1.1.26.139": "0", + "1.1.26.140": "0", + "1.1.26.141": "0", + "1.1.26.142": "0", + "1.1.26.143": "0", + "1.1.26.144": "0", + "1.1.26.145": "0", + "1.1.26.146": "0", + "1.1.26.147": "0", + "1.1.26.148": "0", + "1.1.26.149": "0", + "1.1.26.150": "0", + "1.1.26.151": "0", + "1.1.26.152": "0", + "1.1.26.153": "0", + "1.1.26.154": "0", + "1.1.26.155": "0", + "1.1.26.156": "0", + "1.1.26.157": "0", + "1.1.26.158": "0", + "1.1.26.159": "0", + "1.1.26.160": "0", + "1.1.26.161": "0", + "1.1.26.162": "0", + "1.1.26.163": "0", + "1.1.26.164": "0", + "1.1.26.165": "0", + "1.1.26.166": "0", + "1.1.26.167": "0", + "1.1.26.168": "0", + "1.1.26.169": "0", + "1.1.26.170": "0", + "1.1.26.171": "0", + "1.1.26.172": "0", + "1.1.26.173": "0", + "1.1.26.174": "0", + "1.1.26.175": "0", + "1.1.26.176": "0", + "1.1.26.177": "0", + "1.1.26.178": "0", + "1.1.26.179": "0", + "1.1.26.180": "0", + "1.1.26.181": "0", + "1.1.26.182": "0", + "1.1.26.183": "0", + "1.1.26.184": "0", + "1.1.26.185": "0", + "1.1.26.186": "0", + "1.1.26.187": "0", + "1.1.26.188": "0", + "1.1.26.189": "0", + "1.1.26.190": "0", + "1.1.26.191": "0", + "1.1.26.192": "0", + "1.1.26.193": "0", + "1.1.26.194": "0", + "1.1.26.195": "0", + "1.1.26.196": "0", + "1.1.26.197": "0", + "1.1.26.198": "0", + "1.1.26.199": "0", + "1.1.26.200": "0", + "1.1.26.201": "0", + "1.1.26.202": "0", + "1.1.26.203": "0", + "1.1.26.204": "0", + "1.1.26.205": "0", + "1.1.26.206": "0", + "1.1.26.207": "0", + "1.1.26.208": "0", + "1.1.26.209": "0", + "1.1.26.210": "0", + "1.1.26.211": "0", + "1.1.26.212": "0", + "1.1.26.213": "0", + "1.1.26.214": "0", + "1.1.26.215": "0", + "1.1.26.216": "0", + "1.1.26.217": "0", + "1.1.26.218": "0", + "1.1.26.219": "0", + "1.1.26.220": "0", + "1.1.26.221": "0", + "1.1.26.222": "0", + "1.1.26.223": "0", + "1.1.26.224": "0", + "1.1.26.225": "0", + "1.1.26.226": "0", + "1.1.26.227": "0", + "1.1.26.228": "0", + "1.1.26.229": "0", + "1.1.26.230": "0", + "1.1.26.231": "0", + "1.1.26.232": "0", + "1.1.26.233": "0", + "1.1.26.234": "0", + "1.1.26.235": "0", + "1.1.26.236": "0", + "1.1.26.237": "0", + "1.1.26.238": "0", + "1.1.26.239": "0", + "1.1.26.240": "0", + "1.1.26.241": "0", + "1.1.26.242": "0", + "1.1.26.243": "0", + "1.1.26.244": "0", + "1.1.26.245": "0", + "1.1.26.246": "0", + "1.1.26.247": "0", + "1.1.26.248": "0", + "1.1.26.249": "0", + "1.1.26.250": "0", + "1.1.26.251": "0", + "1.1.26.252": "0", + "1.1.26.253": "0", + "1.1.26.254": "0", + "1.1.26.255": "0", + "1.1.26.256": "0", + "1.1.26.257": "0", + "1.1.26.258": "0", + "1.1.26.259": "0", + "1.1.26.260": "0", + "1.1.26.261": "0", + "1.1.26.262": "0", + "1.1.26.263": "0", + "1.1.26.264": "0", + "1.1.26.265": "0", + "1.1.26.266": "0", + "1.1.26.267": "0", + "1.1.26.268": "0", + "1.1.26.269": "0", + "1.1.26.270": "0", + "1.1.26.271": "0", + "1.1.26.272": "0", + "1.1.26.273": "0", + "1.1.26.274": "0", + "1.1.26.275": "0", + "1.1.26.276": "0", + "1.1.26.277": "0", + "1.1.26.278": "0", + "1.1.26.279": "0", + "1.1.26.280": "0", + "1.1.26.281": "0", + "1.1.26.282": "0", + "1.1.26.283": "0", + "1.1.26.284": "0", + "1.1.26.285": "0", + "1.1.26.286": "0", + "1.1.26.287": "0", + "1.1.26.288": "0", + "1.1.26.289": "0", + "1.1.26.290": "0", + "1.1.26.291": "0", + "1.1.26.292": "0", + "1.1.26.293": "0", + "1.1.26.294": "0", + "1.1.26.295": "0", + "1.1.26.296": "0", + "1.1.26.297": "0", + "1.1.26.298": "0", + "1.1.26.299": "0", + "1.1.26.300": "0", + "1.1.26.301": "0", + "1.1.26.302": "0", + "1.1.26.303": "0", + "1.1.26.304": "0", + "1.1.26.305": "0", + "1.1.26.306": "0", + "1.1.26.307": "0", + "1.1.26.308": "0", + "1.1.26.309": "0", + "1.1.26.310": "0", + "1.1.26.311": "0", + "1.1.26.312": "0", + "1.1.26.313": "0", + "1.1.26.314": "0", + "1.1.26.315": "0", + "1.1.26.316": "0", + "1.1.26.317": "0", + "1.1.26.318": "0", + "1.1.26.319": "0", + "1.1.26.320": "0", + "1.1.26.321": "0", + "1.1.26.322": "0", + "1.1.26.323": "0", + "1.1.26.324": "0", + "1.1.26.325": "0", + "1.1.26.326": "0", + "1.1.26.327": "0", + "1.1.26.328": "0", + "1.1.26.329": "0", + "1.1.26.330": "0", + "1.1.26.331": "0", + "1.1.26.332": "0", + "1.1.26.333": "0", + "1.1.26.334": "0", + "1.1.26.335": "0", + "1.1.26.336": "0", + "1.1.26.337": "0", + "1.1.26.338": "0", + "1.1.26.339": "0", + "1.1.26.340": "0", + "1.1.26.341": "0", + "1.1.26.342": "0", + "1.1.26.343": "0", + "1.1.26.344": "0", + "1.1.26.345": "0", + "1.1.26.346": "0", + "1.1.26.347": "0", + "1.1.26.348": "0", + "1.1.26.349": "0", + "1.1.26.350": "0", + "1.1.26.351": "0", + "1.1.26.352": "0", + "1.1.26.353": "0", + "1.1.26.354": "0", + "1.1.26.355": "0", + "1.1.26.356": "0", + "1.1.26.357": "0", + "1.1.26.358": "0", + "1.1.26.359": "0", + "1.1.26.360": "0", + "1.1.26.361": "0", + "1.1.26.362": "0", + "1.1.26.363": "0", + "1.1.26.364": "0", + "1.1.26.365": "0", + "1.1.26.366": "0", + "1.1.26.367": "0", + "1.1.26.368": "0", + "1.1.26.369": "0", + "1.1.26.370": "0", + "1.1.26.371": "0", + "1.1.26.372": "0", + "1.1.26.373": "0", + "1.1.26.374": "0", + "1.1.26.375": "0", + "1.1.26.376": "0", + "1.1.26.377": "0", + "1.1.26.378": "0", + "1.1.26.379": "0", + "1.1.26.380": "0", + "1.1.26.381": "0", + "1.1.26.382": "0", + "1.1.26.383": "0", + "1.1.26.384": "0", + "1.1.26.385": "0", + "1.1.26.386": "0", + "1.1.26.387": "0", + "1.1.26.388": "0", + "1.1.26.389": "0", + "1.1.26.390": "0", + "1.1.26.391": "0", + "1.1.26.392": "0", + "1.1.26.393": "0", + "1.1.26.394": "0", + "1.1.26.395": "0", + "1.1.26.396": "0", + "1.1.26.397": "0", + "1.1.26.398": "0", + "1.1.26.399": "0", + "1.1.26.400": "0", + "1.1.27.1": "0", + "1.1.27.2": "0", + "1.1.27.3": "0", + "1.1.27.4": "0", + "1.1.27.5": "0", + "1.1.27.6": "0", + "1.1.27.7": "5", + "1.1.27.8": "5", + "1.1.27.9": "5", + "1.1.27.10": "0", + "1.1.27.11": "0", + "1.1.27.12": "0", + "1.1.27.13": "0", + "1.1.27.14": "0", + "1.1.27.15": "0", + "1.1.27.16": "0", + "1.1.27.17": "0", + "1.1.27.18": "0", + "1.1.27.19": "0", + "1.1.27.20": "0", + "1.1.27.21": "0", + "1.1.27.22": "0", + "1.1.27.23": "0", + "1.1.27.24": "0", + "1.1.27.25": "0", + "1.1.27.26": "0", + "1.1.27.27": "0", + "1.1.27.28": "0", + "1.1.27.29": "0", + "1.1.27.30": "0", + "1.1.27.31": "0", + "1.1.27.32": "0", + "1.1.27.33": "0", + "1.1.27.34": "0", + "1.1.27.35": "0", + "1.1.27.36": "0", + "1.1.27.37": "0", + "1.1.27.38": "0", + "1.1.27.39": "0", + "1.1.27.40": "0", + "1.1.27.41": "0", + "1.1.27.42": "0", + "1.1.27.43": "0", + "1.1.27.44": "0", + "1.1.27.45": "0", + "1.1.27.46": "0", + "1.1.27.47": "0", + "1.1.27.48": "0", + "1.1.27.49": "0", + "1.1.27.50": "0", + "1.1.27.51": "0", + "1.1.27.52": "0", + "1.1.27.53": "0", + "1.1.27.54": "0", + "1.1.27.55": "0", + "1.1.27.56": "0", + "1.1.27.57": "0", + "1.1.27.58": "0", + "1.1.27.59": "0", + "1.1.27.60": "0", + "1.1.27.61": "0", + "1.1.27.62": "0", + "1.1.27.63": "0", + "1.1.27.64": "0", + "1.1.27.65": "0", + "1.1.27.66": "0", + "1.1.27.67": "0", + "1.1.27.68": "0", + "1.1.27.69": "0", + "1.1.27.70": "0", + "1.1.27.71": "0", + "1.1.27.72": "0", + "1.1.27.73": "0", + "1.1.27.74": "0", + "1.1.27.75": "0", + "1.1.27.76": "0", + "1.1.27.77": "0", + "1.1.27.78": "0", + "1.1.27.79": "0", + "1.1.27.80": "0", + "1.1.27.81": "0", + "1.1.27.82": "0", + "1.1.27.83": "0", + "1.1.27.84": "0", + "1.1.27.85": "0", + "1.1.27.86": "0", + "1.1.27.87": "0", + "1.1.27.88": "0", + "1.1.27.89": "0", + "1.1.27.90": "0", + "1.1.27.91": "0", + "1.1.27.92": "0", + "1.1.27.93": "0", + "1.1.27.94": "0", + "1.1.27.95": "0", + "1.1.27.96": "0", + "1.1.27.97": "0", + "1.1.27.98": "0", + "1.1.27.99": "0", + "1.1.27.100": "0", + "1.1.27.101": "0", + "1.1.27.102": "0", + "1.1.27.103": "0", + "1.1.27.104": "0", + "1.1.27.105": "0", + "1.1.27.106": "0", + "1.1.27.107": "5", + "1.1.27.108": "5", + "1.1.27.109": "5", + "1.1.27.110": "0", + "1.1.27.111": "0", + "1.1.27.112": "0", + "1.1.27.113": "0", + "1.1.27.114": "0", + "1.1.27.115": "0", + "1.1.27.116": "0", + "1.1.27.117": "0", + "1.1.27.118": "0", + "1.1.27.119": "0", + "1.1.27.120": "0", + "1.1.27.121": "0", + "1.1.27.122": "0", + "1.1.27.123": "0", + "1.1.27.124": "0", + "1.1.27.125": "0", + "1.1.27.126": "0", + "1.1.27.127": "0", + "1.1.27.128": "0", + "1.1.27.129": "0", + "1.1.27.130": "0", + "1.1.27.131": "0", + "1.1.27.132": "0", + "1.1.27.133": "0", + "1.1.27.134": "0", + "1.1.27.135": "0", + "1.1.27.136": "0", + "1.1.27.137": "0", + "1.1.27.138": "0", + "1.1.27.139": "0", + "1.1.27.140": "0", + "1.1.27.141": "0", + "1.1.27.142": "0", + "1.1.27.143": "0", + "1.1.27.144": "0", + "1.1.27.145": "0", + "1.1.27.146": "0", + "1.1.27.147": "0", + "1.1.27.148": "0", + "1.1.27.149": "0", + "1.1.27.150": "0", + "1.1.27.151": "0", + "1.1.27.152": "0", + "1.1.27.153": "0", + "1.1.27.154": "0", + "1.1.27.155": "0", + "1.1.27.156": "0", + "1.1.27.157": "0", + "1.1.27.158": "0", + "1.1.27.159": "0", + "1.1.27.160": "0", + "1.1.27.161": "0", + "1.1.27.162": "0", + "1.1.27.163": "0", + "1.1.27.164": "0", + "1.1.27.165": "0", + "1.1.27.166": "0", + "1.1.27.167": "0", + "1.1.27.168": "0", + "1.1.27.169": "0", + "1.1.27.170": "0", + "1.1.27.171": "0", + "1.1.27.172": "0", + "1.1.27.173": "0", + "1.1.27.174": "0", + "1.1.27.175": "0", + "1.1.27.176": "0", + "1.1.27.177": "0", + "1.1.27.178": "0", + "1.1.27.179": "0", + "1.1.27.180": "0", + "1.1.27.181": "0", + "1.1.27.182": "0", + "1.1.27.183": "0", + "1.1.27.184": "0", + "1.1.27.185": "0", + "1.1.27.186": "0", + "1.1.27.187": "0", + "1.1.27.188": "0", + "1.1.27.189": "0", + "1.1.27.190": "0", + "1.1.27.191": "0", + "1.1.27.192": "0", + "1.1.27.193": "0", + "1.1.27.194": "0", + "1.1.27.195": "0", + "1.1.27.196": "0", + "1.1.27.197": "0", + "1.1.27.198": "0", + "1.1.27.199": "0", + "1.1.27.200": "0", + "1.1.27.201": "0", + "1.1.27.202": "0", + "1.1.27.203": "0", + "1.1.27.204": "0", + "1.1.27.205": "0", + "1.1.27.206": "0", + "1.1.27.207": "5", + "1.1.27.208": "5", + "1.1.27.209": "5", + "1.1.27.210": "0", + "1.1.27.211": "0", + "1.1.27.212": "0", + "1.1.27.213": "0", + "1.1.27.214": "0", + "1.1.27.215": "0", + "1.1.27.216": "0", + "1.1.27.217": "0", + "1.1.27.218": "0", + "1.1.27.219": "0", + "1.1.27.220": "0", + "1.1.27.221": "0", + "1.1.27.222": "0", + "1.1.27.223": "0", + "1.1.27.224": "0", + "1.1.27.225": "0", + "1.1.27.226": "0", + "1.1.27.227": "0", + "1.1.27.228": "0", + "1.1.27.229": "0", + "1.1.27.230": "0", + "1.1.27.231": "0", + "1.1.27.232": "0", + "1.1.27.233": "0", + "1.1.27.234": "0", + "1.1.27.235": "0", + "1.1.27.236": "0", + "1.1.27.237": "0", + "1.1.27.238": "0", + "1.1.27.239": "0", + "1.1.27.240": "0", + "1.1.27.241": "0", + "1.1.27.242": "0", + "1.1.27.243": "0", + "1.1.27.244": "0", + "1.1.27.245": "0", + "1.1.27.246": "0", + "1.1.27.247": "0", + "1.1.27.248": "0", + "1.1.27.249": "0", + "1.1.27.250": "0", + "1.1.27.251": "0", + "1.1.27.252": "0", + "1.1.27.253": "0", + "1.1.27.254": "0", + "1.1.27.255": "0", + "1.1.27.256": "0", + "1.1.27.257": "0", + "1.1.27.258": "0", + "1.1.27.259": "0", + "1.1.27.260": "0", + "1.1.27.261": "0", + "1.1.27.262": "0", + "1.1.27.263": "0", + "1.1.27.264": "0", + "1.1.27.265": "0", + "1.1.27.266": "0", + "1.1.27.267": "0", + "1.1.27.268": "0", + "1.1.27.269": "0", + "1.1.27.270": "0", + "1.1.27.271": "0", + "1.1.27.272": "0", + "1.1.27.273": "0", + "1.1.27.274": "0", + "1.1.27.275": "0", + "1.1.27.276": "0", + "1.1.27.277": "0", + "1.1.27.278": "0", + "1.1.27.279": "0", + "1.1.27.280": "0", + "1.1.27.281": "0", + "1.1.27.282": "0", + "1.1.27.283": "0", + "1.1.27.284": "0", + "1.1.27.285": "0", + "1.1.27.286": "0", + "1.1.27.287": "0", + "1.1.27.288": "0", + "1.1.27.289": "0", + "1.1.27.290": "0", + "1.1.27.291": "0", + "1.1.27.292": "0", + "1.1.27.293": "0", + "1.1.27.294": "0", + "1.1.27.295": "0", + "1.1.27.296": "0", + "1.1.27.297": "0", + "1.1.27.298": "0", + "1.1.27.299": "0", + "1.1.27.300": "0", + "1.1.27.301": "0", + "1.1.27.302": "0", + "1.1.27.303": "0", + "1.1.27.304": "0", + "1.1.27.305": "0", + "1.1.27.306": "0", + "1.1.27.307": "5", + "1.1.27.308": "5", + "1.1.27.309": "5", + "1.1.27.310": "0", + "1.1.27.311": "0", + "1.1.27.312": "0", + "1.1.27.313": "0", + "1.1.27.314": "0", + "1.1.27.315": "0", + "1.1.27.316": "0", + "1.1.27.317": "0", + "1.1.27.318": "0", + "1.1.27.319": "0", + "1.1.27.320": "0", + "1.1.27.321": "0", + "1.1.27.322": "0", + "1.1.27.323": "0", + "1.1.27.324": "0", + "1.1.27.325": "0", + "1.1.27.326": "0", + "1.1.27.327": "0", + "1.1.27.328": "0", + "1.1.27.329": "0", + "1.1.27.330": "0", + "1.1.27.331": "0", + "1.1.27.332": "0", + "1.1.27.333": "0", + "1.1.27.334": "0", + "1.1.27.335": "0", + "1.1.27.336": "0", + "1.1.27.337": "0", + "1.1.27.338": "0", + "1.1.27.339": "0", + "1.1.27.340": "0", + "1.1.27.341": "0", + "1.1.27.342": "0", + "1.1.27.343": "0", + "1.1.27.344": "0", + "1.1.27.345": "0", + "1.1.27.346": "0", + "1.1.27.347": "0", + "1.1.27.348": "0", + "1.1.27.349": "0", + "1.1.27.350": "0", + "1.1.27.351": "0", + "1.1.27.352": "0", + "1.1.27.353": "0", + "1.1.27.354": "0", + "1.1.27.355": "0", + "1.1.27.356": "0", + "1.1.27.357": "0", + "1.1.27.358": "0", + "1.1.27.359": "0", + "1.1.27.360": "0", + "1.1.27.361": "0", + "1.1.27.362": "0", + "1.1.27.363": "0", + "1.1.27.364": "0", + "1.1.27.365": "0", + "1.1.27.366": "0", + "1.1.27.367": "0", + "1.1.27.368": "0", + "1.1.27.369": "0", + "1.1.27.370": "0", + "1.1.27.371": "0", + "1.1.27.372": "0", + "1.1.27.373": "0", + "1.1.27.374": "0", + "1.1.27.375": "0", + "1.1.27.376": "0", + "1.1.27.377": "0", + "1.1.27.378": "0", + "1.1.27.379": "0", + "1.1.27.380": "0", + "1.1.27.381": "0", + "1.1.27.382": "0", + "1.1.27.383": "0", + "1.1.27.384": "0", + "1.1.27.385": "0", + "1.1.27.386": "0", + "1.1.27.387": "0", + "1.1.27.388": "0", + "1.1.27.389": "0", + "1.1.27.390": "0", + "1.1.27.391": "0", + "1.1.27.392": "0", + "1.1.27.393": "0", + "1.1.27.394": "0", + "1.1.27.395": "0", + "1.1.27.396": "0", + "1.1.27.397": "0", + "1.1.27.398": "0", + "1.1.27.399": "0", + "1.1.27.400": "0", + "1.1.28.1": "0", + "1.1.28.2": "0", + "1.1.28.3": "0", + "1.1.28.4": "0", + "1.1.28.5": "0", + "1.1.28.6": "0", + "1.1.28.7": "0", + "1.1.28.8": "0", + "1.1.28.9": "0", + "1.1.28.10": "0", + "1.1.28.11": "0", + "1.1.28.12": "0", + "1.1.28.13": "0", + "1.1.28.14": "0", + "1.1.28.15": "0", + "1.1.28.16": "0", + "1.1.28.17": "0", + "1.1.28.18": "0", + "1.1.28.19": "0", + "1.1.28.20": "0", + "1.1.28.21": "0", + "1.1.28.22": "0", + "1.1.28.23": "0", + "1.1.28.24": "0", + "1.1.28.25": "0", + "1.1.28.26": "0", + "1.1.28.27": "0", + "1.1.28.28": "0", + "1.1.28.29": "0", + "1.1.28.30": "0", + "1.1.28.31": "0", + "1.1.28.32": "0", + "1.1.28.33": "0", + "1.1.28.34": "0", + "1.1.28.35": "0", + "1.1.28.36": "0", + "1.1.28.37": "0", + "1.1.28.38": "0", + "1.1.28.39": "0", + "1.1.28.40": "0", + "1.1.28.41": "0", + "1.1.28.42": "0", + "1.1.28.43": "0", + "1.1.28.44": "0", + "1.1.28.45": "0", + "1.1.28.46": "0", + "1.1.28.47": "0", + "1.1.28.48": "0", + "1.1.28.49": "0", + "1.1.28.50": "0", + "1.1.28.51": "0", + "1.1.28.52": "0", + "1.1.28.53": "0", + "1.1.28.54": "0", + "1.1.28.55": "0", + "1.1.28.56": "0", + "1.1.28.57": "0", + "1.1.28.58": "0", + "1.1.28.59": "0", + "1.1.28.60": "0", + "1.1.28.61": "0", + "1.1.28.62": "0", + "1.1.28.63": "0", + "1.1.28.64": "0", + "1.1.28.65": "0", + "1.1.28.66": "0", + "1.1.28.67": "0", + "1.1.28.68": "0", + "1.1.28.69": "0", + "1.1.28.70": "0", + "1.1.28.71": "0", + "1.1.28.72": "0", + "1.1.28.73": "0", + "1.1.28.74": "0", + "1.1.28.75": "0", + "1.1.28.76": "0", + "1.1.28.77": "0", + "1.1.28.78": "0", + "1.1.28.79": "0", + "1.1.28.80": "0", + "1.1.28.81": "0", + "1.1.28.82": "0", + "1.1.28.83": "0", + "1.1.28.84": "0", + "1.1.28.85": "0", + "1.1.28.86": "0", + "1.1.28.87": "0", + "1.1.28.88": "0", + "1.1.28.89": "0", + "1.1.28.90": "0", + "1.1.28.91": "0", + "1.1.28.92": "0", + "1.1.28.93": "0", + "1.1.28.94": "0", + "1.1.28.95": "0", + "1.1.28.96": "0", + "1.1.28.97": "0", + "1.1.28.98": "0", + "1.1.28.99": "0", + "1.1.28.100": "0", + "1.1.28.101": "0", + "1.1.28.102": "0", + "1.1.28.103": "0", + "1.1.28.104": "0", + "1.1.28.105": "0", + "1.1.28.106": "0", + "1.1.28.107": "0", + "1.1.28.108": "0", + "1.1.28.109": "0", + "1.1.28.110": "0", + "1.1.28.111": "0", + "1.1.28.112": "0", + "1.1.28.113": "0", + "1.1.28.114": "0", + "1.1.28.115": "0", + "1.1.28.116": "0", + "1.1.28.117": "0", + "1.1.28.118": "0", + "1.1.28.119": "0", + "1.1.28.120": "0", + "1.1.28.121": "0", + "1.1.28.122": "0", + "1.1.28.123": "0", + "1.1.28.124": "0", + "1.1.28.125": "0", + "1.1.28.126": "0", + "1.1.28.127": "0", + "1.1.28.128": "0", + "1.1.28.129": "0", + "1.1.28.130": "0", + "1.1.28.131": "0", + "1.1.28.132": "0", + "1.1.28.133": "0", + "1.1.28.134": "0", + "1.1.28.135": "0", + "1.1.28.136": "0", + "1.1.28.137": "0", + "1.1.28.138": "0", + "1.1.28.139": "0", + "1.1.28.140": "0", + "1.1.28.141": "0", + "1.1.28.142": "0", + "1.1.28.143": "0", + "1.1.28.144": "0", + "1.1.28.145": "0", + "1.1.28.146": "0", + "1.1.28.147": "0", + "1.1.28.148": "0", + "1.1.28.149": "0", + "1.1.28.150": "0", + "1.1.28.151": "0", + "1.1.28.152": "0", + "1.1.28.153": "0", + "1.1.28.154": "0", + "1.1.28.155": "0", + "1.1.28.156": "0", + "1.1.28.157": "0", + "1.1.28.158": "0", + "1.1.28.159": "0", + "1.1.28.160": "0", + "1.1.28.161": "0", + "1.1.28.162": "0", + "1.1.28.163": "0", + "1.1.28.164": "0", + "1.1.28.165": "0", + "1.1.28.166": "0", + "1.1.28.167": "0", + "1.1.28.168": "0", + "1.1.28.169": "0", + "1.1.28.170": "0", + "1.1.28.171": "0", + "1.1.28.172": "0", + "1.1.28.173": "0", + "1.1.28.174": "0", + "1.1.28.175": "0", + "1.1.28.176": "0", + "1.1.28.177": "0", + "1.1.28.178": "0", + "1.1.28.179": "0", + "1.1.28.180": "0", + "1.1.28.181": "0", + "1.1.28.182": "0", + "1.1.28.183": "0", + "1.1.28.184": "0", + "1.1.28.185": "0", + "1.1.28.186": "0", + "1.1.28.187": "0", + "1.1.28.188": "0", + "1.1.28.189": "0", + "1.1.28.190": "0", + "1.1.28.191": "0", + "1.1.28.192": "0", + "1.1.28.193": "0", + "1.1.28.194": "0", + "1.1.28.195": "0", + "1.1.28.196": "0", + "1.1.28.197": "0", + "1.1.28.198": "0", + "1.1.28.199": "0", + "1.1.28.200": "0", + "1.1.28.201": "0", + "1.1.28.202": "0", + "1.1.28.203": "0", + "1.1.28.204": "0", + "1.1.28.205": "0", + "1.1.28.206": "0", + "1.1.28.207": "0", + "1.1.28.208": "0", + "1.1.28.209": "0", + "1.1.28.210": "0", + "1.1.28.211": "0", + "1.1.28.212": "0", + "1.1.28.213": "0", + "1.1.28.214": "0", + "1.1.28.215": "0", + "1.1.28.216": "0", + "1.1.28.217": "0", + "1.1.28.218": "0", + "1.1.28.219": "0", + "1.1.28.220": "0", + "1.1.28.221": "0", + "1.1.28.222": "0", + "1.1.28.223": "0", + "1.1.28.224": "0", + "1.1.28.225": "0", + "1.1.28.226": "0", + "1.1.28.227": "0", + "1.1.28.228": "0", + "1.1.28.229": "0", + "1.1.28.230": "0", + "1.1.28.231": "0", + "1.1.28.232": "0", + "1.1.28.233": "0", + "1.1.28.234": "0", + "1.1.28.235": "0", + "1.1.28.236": "0", + "1.1.28.237": "0", + "1.1.28.238": "0", + "1.1.28.239": "0", + "1.1.28.240": "0", + "1.1.28.241": "0", + "1.1.28.242": "0", + "1.1.28.243": "0", + "1.1.28.244": "0", + "1.1.28.245": "0", + "1.1.28.246": "0", + "1.1.28.247": "0", + "1.1.28.248": "0", + "1.1.28.249": "0", + "1.1.28.250": "0", + "1.1.28.251": "0", + "1.1.28.252": "0", + "1.1.28.253": "0", + "1.1.28.254": "0", + "1.1.28.255": "0", + "1.1.28.256": "0", + "1.1.28.257": "0", + "1.1.28.258": "0", + "1.1.28.259": "0", + "1.1.28.260": "0", + "1.1.28.261": "0", + "1.1.28.262": "0", + "1.1.28.263": "0", + "1.1.28.264": "0", + "1.1.28.265": "0", + "1.1.28.266": "0", + "1.1.28.267": "0", + "1.1.28.268": "0", + "1.1.28.269": "0", + "1.1.28.270": "0", + "1.1.28.271": "0", + "1.1.28.272": "0", + "1.1.28.273": "0", + "1.1.28.274": "0", + "1.1.28.275": "0", + "1.1.28.276": "0", + "1.1.28.277": "0", + "1.1.28.278": "0", + "1.1.28.279": "0", + "1.1.28.280": "0", + "1.1.28.281": "0", + "1.1.28.282": "0", + "1.1.28.283": "0", + "1.1.28.284": "0", + "1.1.28.285": "0", + "1.1.28.286": "0", + "1.1.28.287": "0", + "1.1.28.288": "0", + "1.1.28.289": "0", + "1.1.28.290": "0", + "1.1.28.291": "0", + "1.1.28.292": "0", + "1.1.28.293": "0", + "1.1.28.294": "0", + "1.1.28.295": "0", + "1.1.28.296": "0", + "1.1.28.297": "0", + "1.1.28.298": "0", + "1.1.28.299": "0", + "1.1.28.300": "0", + "1.1.28.301": "0", + "1.1.28.302": "0", + "1.1.28.303": "0", + "1.1.28.304": "0", + "1.1.28.305": "0", + "1.1.28.306": "0", + "1.1.28.307": "0", + "1.1.28.308": "0", + "1.1.28.309": "0", + "1.1.28.310": "0", + "1.1.28.311": "0", + "1.1.28.312": "0", + "1.1.28.313": "0", + "1.1.28.314": "0", + "1.1.28.315": "0", + "1.1.28.316": "0", + "1.1.28.317": "0", + "1.1.28.318": "0", + "1.1.28.319": "0", + "1.1.28.320": "0", + "1.1.28.321": "0", + "1.1.28.322": "0", + "1.1.28.323": "0", + "1.1.28.324": "0", + "1.1.28.325": "0", + "1.1.28.326": "0", + "1.1.28.327": "0", + "1.1.28.328": "0", + "1.1.28.329": "0", + "1.1.28.330": "0", + "1.1.28.331": "0", + "1.1.28.332": "0", + "1.1.28.333": "0", + "1.1.28.334": "0", + "1.1.28.335": "0", + "1.1.28.336": "0", + "1.1.28.337": "0", + "1.1.28.338": "0", + "1.1.28.339": "0", + "1.1.28.340": "0", + "1.1.28.341": "0", + "1.1.28.342": "0", + "1.1.28.343": "0", + "1.1.28.344": "0", + "1.1.28.345": "0", + "1.1.28.346": "0", + "1.1.28.347": "0", + "1.1.28.348": "0", + "1.1.28.349": "0", + "1.1.28.350": "0", + "1.1.28.351": "0", + "1.1.28.352": "0", + "1.1.28.353": "0", + "1.1.28.354": "0", + "1.1.28.355": "0", + "1.1.28.356": "0", + "1.1.28.357": "0", + "1.1.28.358": "0", + "1.1.28.359": "0", + "1.1.28.360": "0", + "1.1.28.361": "0", + "1.1.28.362": "0", + "1.1.28.363": "0", + "1.1.28.364": "0", + "1.1.28.365": "0", + "1.1.28.366": "0", + "1.1.28.367": "0", + "1.1.28.368": "0", + "1.1.28.369": "0", + "1.1.28.370": "0", + "1.1.28.371": "0", + "1.1.28.372": "0", + "1.1.28.373": "0", + "1.1.28.374": "0", + "1.1.28.375": "0", + "1.1.28.376": "0", + "1.1.28.377": "0", + "1.1.28.378": "0", + "1.1.28.379": "0", + "1.1.28.380": "0", + "1.1.28.381": "0", + "1.1.28.382": "0", + "1.1.28.383": "0", + "1.1.28.384": "0", + "1.1.28.385": "0", + "1.1.28.386": "0", + "1.1.28.387": "0", + "1.1.28.388": "0", + "1.1.28.389": "0", + "1.1.28.390": "0", + "1.1.28.391": "0", + "1.1.28.392": "0", + "1.1.28.393": "0", + "1.1.28.394": "0", + "1.1.28.395": "0", + "1.1.28.396": "0", + "1.1.28.397": "0", + "1.1.28.398": "0", + "1.1.28.399": "0", + "1.1.28.400": "0", + "1.1.29.1": "0", + "1.1.29.2": "0", + "1.1.29.3": "0", + "1.1.29.4": "0", + "1.1.29.5": "0", + "1.1.29.6": "0", + "1.1.29.7": "0", + "1.1.29.8": "0", + "1.1.29.9": "0", + "1.1.29.10": "0", + "1.1.29.11": "0", + "1.1.29.12": "0", + "1.1.29.13": "0", + "1.1.29.14": "0", + "1.1.29.15": "0", + "1.1.29.16": "0", + "1.1.29.17": "0", + "1.1.29.18": "0", + "1.1.29.19": "0", + "1.1.29.20": "0", + "1.1.29.21": "0", + "1.1.29.22": "0", + "1.1.29.23": "0", + "1.1.29.24": "0", + "1.1.29.25": "0", + "1.1.29.26": "0", + "1.1.29.27": "0", + "1.1.29.28": "0", + "1.1.29.29": "0", + "1.1.29.30": "0", + "1.1.29.31": "0", + "1.1.29.32": "0", + "1.1.29.33": "0", + "1.1.29.34": "0", + "1.1.29.35": "0", + "1.1.29.36": "0", + "1.1.29.37": "0", + "1.1.29.38": "0", + "1.1.29.39": "0", + "1.1.29.40": "0", + "1.1.29.41": "0", + "1.1.29.42": "0", + "1.1.29.43": "0", + "1.1.29.44": "0", + "1.1.29.45": "0", + "1.1.29.46": "0", + "1.1.29.47": "0", + "1.1.29.48": "0", + "1.1.29.49": "0", + "1.1.29.50": "0", + "1.1.29.51": "0", + "1.1.29.52": "0", + "1.1.29.53": "0", + "1.1.29.54": "0", + "1.1.29.55": "0", + "1.1.29.56": "0", + "1.1.29.57": "0", + "1.1.29.58": "0", + "1.1.29.59": "0", + "1.1.29.60": "0", + "1.1.29.61": "0", + "1.1.29.62": "0", + "1.1.29.63": "0", + "1.1.29.64": "0", + "1.1.29.65": "0", + "1.1.29.66": "0", + "1.1.29.67": "0", + "1.1.29.68": "0", + "1.1.29.69": "0", + "1.1.29.70": "0", + "1.1.29.71": "0", + "1.1.29.72": "0", + "1.1.29.73": "0", + "1.1.29.74": "0", + "1.1.29.75": "0", + "1.1.29.76": "0", + "1.1.29.77": "0", + "1.1.29.78": "0", + "1.1.29.79": "0", + "1.1.29.80": "0", + "1.1.29.81": "0", + "1.1.29.82": "0", + "1.1.29.83": "0", + "1.1.29.84": "0", + "1.1.29.85": "0", + "1.1.29.86": "0", + "1.1.29.87": "0", + "1.1.29.88": "0", + "1.1.29.89": "0", + "1.1.29.90": "0", + "1.1.29.91": "0", + "1.1.29.92": "0", + "1.1.29.93": "0", + "1.1.29.94": "0", + "1.1.29.95": "0", + "1.1.29.96": "0", + "1.1.29.97": "0", + "1.1.29.98": "0", + "1.1.29.99": "0", + "1.1.29.100": "0", + "1.1.29.101": "0", + "1.1.29.102": "0", + "1.1.29.103": "0", + "1.1.29.104": "0", + "1.1.29.105": "0", + "1.1.29.106": "0", + "1.1.29.107": "0", + "1.1.29.108": "0", + "1.1.29.109": "0", + "1.1.29.110": "0", + "1.1.29.111": "0", + "1.1.29.112": "0", + "1.1.29.113": "0", + "1.1.29.114": "0", + "1.1.29.115": "0", + "1.1.29.116": "0", + "1.1.29.117": "0", + "1.1.29.118": "0", + "1.1.29.119": "0", + "1.1.29.120": "0", + "1.1.29.121": "0", + "1.1.29.122": "0", + "1.1.29.123": "0", + "1.1.29.124": "0", + "1.1.29.125": "0", + "1.1.29.126": "0", + "1.1.29.127": "0", + "1.1.29.128": "0", + "1.1.29.129": "0", + "1.1.29.130": "0", + "1.1.29.131": "0", + "1.1.29.132": "0", + "1.1.29.133": "0", + "1.1.29.134": "0", + "1.1.29.135": "0", + "1.1.29.136": "0", + "1.1.29.137": "0", + "1.1.29.138": "0", + "1.1.29.139": "0", + "1.1.29.140": "0", + "1.1.29.141": "0", + "1.1.29.142": "0", + "1.1.29.143": "0", + "1.1.29.144": "0", + "1.1.29.145": "0", + "1.1.29.146": "0", + "1.1.29.147": "0", + "1.1.29.148": "0", + "1.1.29.149": "0", + "1.1.29.150": "0", + "1.1.29.151": "0", + "1.1.29.152": "0", + "1.1.29.153": "0", + "1.1.29.154": "0", + "1.1.29.155": "0", + "1.1.29.156": "0", + "1.1.29.157": "0", + "1.1.29.158": "0", + "1.1.29.159": "0", + "1.1.29.160": "0", + "1.1.29.161": "0", + "1.1.29.162": "0", + "1.1.29.163": "0", + "1.1.29.164": "0", + "1.1.29.165": "0", + "1.1.29.166": "0", + "1.1.29.167": "0", + "1.1.29.168": "0", + "1.1.29.169": "0", + "1.1.29.170": "0", + "1.1.29.171": "0", + "1.1.29.172": "0", + "1.1.29.173": "0", + "1.1.29.174": "0", + "1.1.29.175": "0", + "1.1.29.176": "0", + "1.1.29.177": "0", + "1.1.29.178": "0", + "1.1.29.179": "0", + "1.1.29.180": "0", + "1.1.29.181": "0", + "1.1.29.182": "0", + "1.1.29.183": "0", + "1.1.29.184": "0", + "1.1.29.185": "0", + "1.1.29.186": "0", + "1.1.29.187": "0", + "1.1.29.188": "0", + "1.1.29.189": "0", + "1.1.29.190": "0", + "1.1.29.191": "0", + "1.1.29.192": "0", + "1.1.29.193": "0", + "1.1.29.194": "0", + "1.1.29.195": "0", + "1.1.29.196": "0", + "1.1.29.197": "0", + "1.1.29.198": "0", + "1.1.29.199": "0", + "1.1.29.200": "0", + "1.1.29.201": "0", + "1.1.29.202": "0", + "1.1.29.203": "0", + "1.1.29.204": "0", + "1.1.29.205": "0", + "1.1.29.206": "0", + "1.1.29.207": "0", + "1.1.29.208": "0", + "1.1.29.209": "0", + "1.1.29.210": "0", + "1.1.29.211": "0", + "1.1.29.212": "0", + "1.1.29.213": "0", + "1.1.29.214": "0", + "1.1.29.215": "0", + "1.1.29.216": "0", + "1.1.29.217": "0", + "1.1.29.218": "0", + "1.1.29.219": "0", + "1.1.29.220": "0", + "1.1.29.221": "0", + "1.1.29.222": "0", + "1.1.29.223": "0", + "1.1.29.224": "0", + "1.1.29.225": "0", + "1.1.29.226": "0", + "1.1.29.227": "0", + "1.1.29.228": "0", + "1.1.29.229": "0", + "1.1.29.230": "0", + "1.1.29.231": "0", + "1.1.29.232": "0", + "1.1.29.233": "0", + "1.1.29.234": "0", + "1.1.29.235": "0", + "1.1.29.236": "0", + "1.1.29.237": "0", + "1.1.29.238": "0", + "1.1.29.239": "0", + "1.1.29.240": "0", + "1.1.29.241": "0", + "1.1.29.242": "0", + "1.1.29.243": "0", + "1.1.29.244": "0", + "1.1.29.245": "0", + "1.1.29.246": "0", + "1.1.29.247": "0", + "1.1.29.248": "0", + "1.1.29.249": "0", + "1.1.29.250": "0", + "1.1.29.251": "0", + "1.1.29.252": "0", + "1.1.29.253": "0", + "1.1.29.254": "0", + "1.1.29.255": "0", + "1.1.29.256": "0", + "1.1.29.257": "0", + "1.1.29.258": "0", + "1.1.29.259": "0", + "1.1.29.260": "0", + "1.1.29.261": "0", + "1.1.29.262": "0", + "1.1.29.263": "0", + "1.1.29.264": "0", + "1.1.29.265": "0", + "1.1.29.266": "0", + "1.1.29.267": "0", + "1.1.29.268": "0", + "1.1.29.269": "0", + "1.1.29.270": "0", + "1.1.29.271": "0", + "1.1.29.272": "0", + "1.1.29.273": "0", + "1.1.29.274": "0", + "1.1.29.275": "0", + "1.1.29.276": "0", + "1.1.29.277": "0", + "1.1.29.278": "0", + "1.1.29.279": "0", + "1.1.29.280": "0", + "1.1.29.281": "0", + "1.1.29.282": "0", + "1.1.29.283": "0", + "1.1.29.284": "0", + "1.1.29.285": "0", + "1.1.29.286": "0", + "1.1.29.287": "0", + "1.1.29.288": "0", + "1.1.29.289": "0", + "1.1.29.290": "0", + "1.1.29.291": "0", + "1.1.29.292": "0", + "1.1.29.293": "0", + "1.1.29.294": "0", + "1.1.29.295": "0", + "1.1.29.296": "0", + "1.1.29.297": "0", + "1.1.29.298": "0", + "1.1.29.299": "0", + "1.1.29.300": "0", + "1.1.29.301": "0", + "1.1.29.302": "0", + "1.1.29.303": "0", + "1.1.29.304": "0", + "1.1.29.305": "0", + "1.1.29.306": "0", + "1.1.29.307": "0", + "1.1.29.308": "0", + "1.1.29.309": "0", + "1.1.29.310": "0", + "1.1.29.311": "0", + "1.1.29.312": "0", + "1.1.29.313": "0", + "1.1.29.314": "0", + "1.1.29.315": "0", + "1.1.29.316": "0", + "1.1.29.317": "0", + "1.1.29.318": "0", + "1.1.29.319": "0", + "1.1.29.320": "0", + "1.1.29.321": "0", + "1.1.29.322": "0", + "1.1.29.323": "0", + "1.1.29.324": "0", + "1.1.29.325": "0", + "1.1.29.326": "0", + "1.1.29.327": "0", + "1.1.29.328": "0", + "1.1.29.329": "0", + "1.1.29.330": "0", + "1.1.29.331": "0", + "1.1.29.332": "0", + "1.1.29.333": "0", + "1.1.29.334": "0", + "1.1.29.335": "0", + "1.1.29.336": "0", + "1.1.29.337": "0", + "1.1.29.338": "0", + "1.1.29.339": "0", + "1.1.29.340": "0", + "1.1.29.341": "0", + "1.1.29.342": "0", + "1.1.29.343": "0", + "1.1.29.344": "0", + "1.1.29.345": "0", + "1.1.29.346": "0", + "1.1.29.347": "0", + "1.1.29.348": "0", + "1.1.29.349": "0", + "1.1.29.350": "0", + "1.1.29.351": "0", + "1.1.29.352": "0", + "1.1.29.353": "0", + "1.1.29.354": "0", + "1.1.29.355": "0", + "1.1.29.356": "0", + "1.1.29.357": "0", + "1.1.29.358": "0", + "1.1.29.359": "0", + "1.1.29.360": "0", + "1.1.29.361": "0", + "1.1.29.362": "0", + "1.1.29.363": "0", + "1.1.29.364": "0", + "1.1.29.365": "0", + "1.1.29.366": "0", + "1.1.29.367": "0", + "1.1.29.368": "0", + "1.1.29.369": "0", + "1.1.29.370": "0", + "1.1.29.371": "0", + "1.1.29.372": "0", + "1.1.29.373": "0", + "1.1.29.374": "0", + "1.1.29.375": "0", + "1.1.29.376": "0", + "1.1.29.377": "0", + "1.1.29.378": "0", + "1.1.29.379": "0", + "1.1.29.380": "0", + "1.1.29.381": "0", + "1.1.29.382": "0", + "1.1.29.383": "0", + "1.1.29.384": "0", + "1.1.29.385": "0", + "1.1.29.386": "0", + "1.1.29.387": "0", + "1.1.29.388": "0", + "1.1.29.389": "0", + "1.1.29.390": "0", + "1.1.29.391": "0", + "1.1.29.392": "0", + "1.1.29.393": "0", + "1.1.29.394": "0", + "1.1.29.395": "0", + "1.1.29.396": "0", + "1.1.29.397": "0", + "1.1.29.398": "0", + "1.1.29.399": "0", + "1.1.29.400": "0", + "1.1.30.1": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.2": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.3": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.4": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.5": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.6": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.7": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.8": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.9": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.10": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.11": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.12": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.13": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.14": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.15": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.16": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.17": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.18": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.19": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.20": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.21": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.22": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.23": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.24": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.25": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.26": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.27": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.28": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.29": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.30": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.31": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.32": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.33": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.34": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.35": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.36": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.37": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.38": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.39": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.40": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.41": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.42": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.43": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.44": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.45": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.46": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.47": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.48": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.49": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.50": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.51": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.52": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.53": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.54": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.55": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.56": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.57": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.58": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.59": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.60": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.61": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.62": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.63": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.64": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.65": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.66": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.67": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.68": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.69": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.70": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.71": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.72": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.73": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.74": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.75": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.76": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.77": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.78": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.79": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.80": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.81": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.82": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.83": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.84": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.85": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.86": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.87": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.88": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.89": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.90": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.91": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.92": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.93": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.94": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.95": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.96": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.97": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.98": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.99": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.100": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.101": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.102": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.103": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.104": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.105": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.106": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.107": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "1.1.30.108": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "1.1.30.109": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.4", + "1.1.30.110": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.111": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.112": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.113": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.114": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.115": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.116": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.117": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.118": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.119": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.120": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.121": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.122": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.123": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.124": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.125": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.126": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.127": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.128": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.129": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.130": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.131": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.132": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.133": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.134": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.135": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.136": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.137": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.138": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.139": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.140": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.141": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.142": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.143": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.144": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.145": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.146": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.147": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.148": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.149": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.150": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.151": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.152": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.153": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.154": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.155": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.156": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.157": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.158": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.159": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.160": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.161": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.162": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.163": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.164": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.165": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.166": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.167": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.168": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.169": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.170": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.171": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.172": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.173": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.174": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.175": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.176": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.177": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.178": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.179": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.180": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.181": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.182": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.183": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.184": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.185": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.186": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.187": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.188": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.189": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.190": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.191": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.192": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.193": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.194": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.195": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.196": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.197": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.198": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.199": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.200": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.3", + "1.1.30.201": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.202": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.203": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.204": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.205": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.206": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.207": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.208": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.209": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.210": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.211": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.212": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.213": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.214": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.215": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.216": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.217": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.218": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.219": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.220": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.221": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.222": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.223": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.224": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.225": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.226": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.227": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.228": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.229": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.230": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.231": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.232": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.233": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.234": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.235": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.236": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.237": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.238": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.239": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.240": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.241": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.242": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.243": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.244": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.245": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.246": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.247": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.248": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.249": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.250": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.251": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.252": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.253": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.254": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.255": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.256": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.257": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.258": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.259": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.260": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.261": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.262": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.263": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.264": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.265": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.266": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.267": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.268": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.269": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.270": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.271": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.272": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.273": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.274": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.275": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.276": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.277": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.278": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.279": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.280": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.281": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.282": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.283": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.284": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.285": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.286": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.287": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.288": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.289": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.290": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.291": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.292": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.293": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.294": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.295": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.296": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.297": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.298": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.299": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.300": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.301": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.302": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.303": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.304": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.305": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.306": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.307": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "1.1.30.308": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "1.1.30.309": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.2", + "1.1.30.310": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.311": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.312": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.313": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.314": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.315": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.316": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.317": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.318": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.319": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.320": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.321": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.322": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.323": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.324": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.325": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.326": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.327": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.328": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.329": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.330": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.331": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.332": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.333": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.334": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.335": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.336": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.337": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.338": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.339": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.340": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.341": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.342": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.343": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.344": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.345": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.346": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.347": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.348": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.349": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.350": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.351": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.352": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.353": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.354": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.355": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.356": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.357": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.358": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.359": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.360": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.361": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.362": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.363": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.364": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.365": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.366": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.367": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.368": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.369": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.370": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.371": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.372": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.373": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.374": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.375": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.376": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.377": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.378": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.379": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.380": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.381": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.382": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.383": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.384": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.385": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.386": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.387": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.388": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.389": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.390": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.391": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.392": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.393": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.394": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.395": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.396": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.397": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.398": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.399": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.30.400": ".1.3.6.1.4.1.22420.2.9.1.1.1.1.1.1", + "1.1.31.1": "1", + "1.1.31.2": "1", + "1.1.31.3": "1", + "1.1.31.4": "1", + "1.1.31.5": "1", + "1.1.31.6": "1", + "1.1.31.7": "1", + "1.1.31.8": "1", + "1.1.31.9": "1", + "1.1.31.10": "1", + "1.1.31.11": "1", + "1.1.31.12": "1", + "1.1.31.13": "1", + "1.1.31.14": "1", + "1.1.31.15": "1", + "1.1.31.16": "1", + "1.1.31.17": "1", + "1.1.31.18": "1", + "1.1.31.19": "1", + "1.1.31.20": "1", + "1.1.31.21": "1", + "1.1.31.22": "1", + "1.1.31.23": "1", + "1.1.31.24": "1", + "1.1.31.25": "1", + "1.1.31.26": "1", + "1.1.31.27": "1", + "1.1.31.28": "1", + "1.1.31.29": "1", + "1.1.31.30": "1", + "1.1.31.31": "1", + "1.1.31.32": "1", + "1.1.31.33": "1", + "1.1.31.34": "1", + "1.1.31.35": "1", + "1.1.31.36": "1", + "1.1.31.37": "1", + "1.1.31.38": "1", + "1.1.31.39": "1", + "1.1.31.40": "1", + "1.1.31.41": "1", + "1.1.31.42": "1", + "1.1.31.43": "1", + "1.1.31.44": "1", + "1.1.31.45": "1", + "1.1.31.46": "1", + "1.1.31.47": "1", + "1.1.31.48": "1", + "1.1.31.49": "1", + "1.1.31.50": "1", + "1.1.31.51": "1", + "1.1.31.52": "1", + "1.1.31.53": "1", + "1.1.31.54": "1", + "1.1.31.55": "1", + "1.1.31.56": "1", + "1.1.31.57": "1", + "1.1.31.58": "1", + "1.1.31.59": "1", + "1.1.31.60": "1", + "1.1.31.61": "1", + "1.1.31.62": "1", + "1.1.31.63": "1", + "1.1.31.64": "1", + "1.1.31.65": "1", + "1.1.31.66": "1", + "1.1.31.67": "1", + "1.1.31.68": "1", + "1.1.31.69": "1", + "1.1.31.70": "1", + "1.1.31.71": "1", + "1.1.31.72": "1", + "1.1.31.73": "1", + "1.1.31.74": "1", + "1.1.31.75": "1", + "1.1.31.76": "1", + "1.1.31.77": "1", + "1.1.31.78": "1", + "1.1.31.79": "1", + "1.1.31.80": "1", + "1.1.31.81": "1", + "1.1.31.82": "1", + "1.1.31.83": "1", + "1.1.31.84": "1", + "1.1.31.85": "1", + "1.1.31.86": "1", + "1.1.31.87": "1", + "1.1.31.88": "1", + "1.1.31.89": "1", + "1.1.31.90": "1", + "1.1.31.91": "1", + "1.1.31.92": "1", + "1.1.31.93": "1", + "1.1.31.94": "1", + "1.1.31.95": "1", + "1.1.31.96": "1", + "1.1.31.97": "1", + "1.1.31.98": "1", + "1.1.31.99": "1", + "1.1.31.100": "1", + "1.1.31.101": "1", + "1.1.31.102": "1", + "1.1.31.103": "1", + "1.1.31.104": "1", + "1.1.31.105": "1", + "1.1.31.106": "1", + "1.1.31.107": "1", + "1.1.31.108": "1", + "1.1.31.109": "1", + "1.1.31.110": "1", + "1.1.31.111": "1", + "1.1.31.112": "1", + "1.1.31.113": "1", + "1.1.31.114": "1", + "1.1.31.115": "1", + "1.1.31.116": "1", + "1.1.31.117": "1", + "1.1.31.118": "1", + "1.1.31.119": "1", + "1.1.31.120": "1", + "1.1.31.121": "1", + "1.1.31.122": "1", + "1.1.31.123": "1", + "1.1.31.124": "1", + "1.1.31.125": "1", + "1.1.31.126": "1", + "1.1.31.127": "1", + "1.1.31.128": "1", + "1.1.31.129": "1", + "1.1.31.130": "1", + "1.1.31.131": "1", + "1.1.31.132": "1", + "1.1.31.133": "1", + "1.1.31.134": "1", + "1.1.31.135": "1", + "1.1.31.136": "1", + "1.1.31.137": "1", + "1.1.31.138": "1", + "1.1.31.139": "1", + "1.1.31.140": "1", + "1.1.31.141": "1", + "1.1.31.142": "1", + "1.1.31.143": "1", + "1.1.31.144": "1", + "1.1.31.145": "1", + "1.1.31.146": "1", + "1.1.31.147": "1", + "1.1.31.148": "1", + "1.1.31.149": "1", + "1.1.31.150": "1", + "1.1.31.151": "1", + "1.1.31.152": "1", + "1.1.31.153": "1", + "1.1.31.154": "1", + "1.1.31.155": "1", + "1.1.31.156": "1", + "1.1.31.157": "1", + "1.1.31.158": "1", + "1.1.31.159": "1", + "1.1.31.160": "1", + "1.1.31.161": "1", + "1.1.31.162": "1", + "1.1.31.163": "1", + "1.1.31.164": "1", + "1.1.31.165": "1", + "1.1.31.166": "1", + "1.1.31.167": "1", + "1.1.31.168": "1", + "1.1.31.169": "1", + "1.1.31.170": "1", + "1.1.31.171": "1", + "1.1.31.172": "1", + "1.1.31.173": "1", + "1.1.31.174": "1", + "1.1.31.175": "1", + "1.1.31.176": "1", + "1.1.31.177": "1", + "1.1.31.178": "1", + "1.1.31.179": "1", + "1.1.31.180": "1", + "1.1.31.181": "1", + "1.1.31.182": "1", + "1.1.31.183": "1", + "1.1.31.184": "1", + "1.1.31.185": "1", + "1.1.31.186": "1", + "1.1.31.187": "1", + "1.1.31.188": "1", + "1.1.31.189": "1", + "1.1.31.190": "1", + "1.1.31.191": "1", + "1.1.31.192": "1", + "1.1.31.193": "1", + "1.1.31.194": "1", + "1.1.31.195": "1", + "1.1.31.196": "1", + "1.1.31.197": "1", + "1.1.31.198": "1", + "1.1.31.199": "1", + "1.1.31.200": "1", + "1.1.31.201": "1", + "1.1.31.202": "1", + "1.1.31.203": "1", + "1.1.31.204": "1", + "1.1.31.205": "1", + "1.1.31.206": "1", + "1.1.31.207": "1", + "1.1.31.208": "1", + "1.1.31.209": "1", + "1.1.31.210": "1", + "1.1.31.211": "1", + "1.1.31.212": "1", + "1.1.31.213": "1", + "1.1.31.214": "1", + "1.1.31.215": "1", + "1.1.31.216": "1", + "1.1.31.217": "1", + "1.1.31.218": "1", + "1.1.31.219": "1", + "1.1.31.220": "1", + "1.1.31.221": "1", + "1.1.31.222": "1", + "1.1.31.223": "1", + "1.1.31.224": "1", + "1.1.31.225": "1", + "1.1.31.226": "1", + "1.1.31.227": "1", + "1.1.31.228": "1", + "1.1.31.229": "1", + "1.1.31.230": "1", + "1.1.31.231": "1", + "1.1.31.232": "1", + "1.1.31.233": "1", + "1.1.31.234": "1", + "1.1.31.235": "1", + "1.1.31.236": "1", + "1.1.31.237": "1", + "1.1.31.238": "1", + "1.1.31.239": "1", + "1.1.31.240": "1", + "1.1.31.241": "1", + "1.1.31.242": "1", + "1.1.31.243": "1", + "1.1.31.244": "1", + "1.1.31.245": "1", + "1.1.31.246": "1", + "1.1.31.247": "1", + "1.1.31.248": "1", + "1.1.31.249": "1", + "1.1.31.250": "1", + "1.1.31.251": "1", + "1.1.31.252": "1", + "1.1.31.253": "1", + "1.1.31.254": "1", + "1.1.31.255": "1", + "1.1.31.256": "1", + "1.1.31.257": "1", + "1.1.31.258": "1", + "1.1.31.259": "1", + "1.1.31.260": "1", + "1.1.31.261": "1", + "1.1.31.262": "1", + "1.1.31.263": "1", + "1.1.31.264": "1", + "1.1.31.265": "1", + "1.1.31.266": "1", + "1.1.31.267": "1", + "1.1.31.268": "1", + "1.1.31.269": "1", + "1.1.31.270": "1", + "1.1.31.271": "1", + "1.1.31.272": "1", + "1.1.31.273": "1", + "1.1.31.274": "1", + "1.1.31.275": "1", + "1.1.31.276": "1", + "1.1.31.277": "1", + "1.1.31.278": "1", + "1.1.31.279": "1", + "1.1.31.280": "1", + "1.1.31.281": "1", + "1.1.31.282": "1", + "1.1.31.283": "1", + "1.1.31.284": "1", + "1.1.31.285": "1", + "1.1.31.286": "1", + "1.1.31.287": "1", + "1.1.31.288": "1", + "1.1.31.289": "1", + "1.1.31.290": "1", + "1.1.31.291": "1", + "1.1.31.292": "1", + "1.1.31.293": "1", + "1.1.31.294": "1", + "1.1.31.295": "1", + "1.1.31.296": "1", + "1.1.31.297": "1", + "1.1.31.298": "1", + "1.1.31.299": "1", + "1.1.31.300": "1", + "1.1.31.301": "1", + "1.1.31.302": "1", + "1.1.31.303": "1", + "1.1.31.304": "1", + "1.1.31.305": "1", + "1.1.31.306": "1", + "1.1.31.307": "1", + "1.1.31.308": "1", + "1.1.31.309": "1", + "1.1.31.310": "1", + "1.1.31.311": "1", + "1.1.31.312": "1", + "1.1.31.313": "1", + "1.1.31.314": "1", + "1.1.31.315": "1", + "1.1.31.316": "1", + "1.1.31.317": "1", + "1.1.31.318": "1", + "1.1.31.319": "1", + "1.1.31.320": "1", + "1.1.31.321": "1", + "1.1.31.322": "1", + "1.1.31.323": "1", + "1.1.31.324": "1", + "1.1.31.325": "1", + "1.1.31.326": "1", + "1.1.31.327": "1", + "1.1.31.328": "1", + "1.1.31.329": "1", + "1.1.31.330": "1", + "1.1.31.331": "1", + "1.1.31.332": "1", + "1.1.31.333": "1", + "1.1.31.334": "1", + "1.1.31.335": "1", + "1.1.31.336": "1", + "1.1.31.337": "1", + "1.1.31.338": "1", + "1.1.31.339": "1", + "1.1.31.340": "1", + "1.1.31.341": "1", + "1.1.31.342": "1", + "1.1.31.343": "1", + "1.1.31.344": "1", + "1.1.31.345": "1", + "1.1.31.346": "1", + "1.1.31.347": "1", + "1.1.31.348": "1", + "1.1.31.349": "1", + "1.1.31.350": "1", + "1.1.31.351": "1", + "1.1.31.352": "1", + "1.1.31.353": "1", + "1.1.31.354": "1", + "1.1.31.355": "1", + "1.1.31.356": "1", + "1.1.31.357": "1", + "1.1.31.358": "1", + "1.1.31.359": "1", + "1.1.31.360": "1", + "1.1.31.361": "1", + "1.1.31.362": "1", + "1.1.31.363": "1", + "1.1.31.364": "1", + "1.1.31.365": "1", + "1.1.31.366": "1", + "1.1.31.367": "1", + "1.1.31.368": "1", + "1.1.31.369": "1", + "1.1.31.370": "1", + "1.1.31.371": "1", + "1.1.31.372": "1", + "1.1.31.373": "1", + "1.1.31.374": "1", + "1.1.31.375": "1", + "1.1.31.376": "1", + "1.1.31.377": "1", + "1.1.31.378": "1", + "1.1.31.379": "1", + "1.1.31.380": "1", + "1.1.31.381": "1", + "1.1.31.382": "1", + "1.1.31.383": "1", + "1.1.31.384": "1", + "1.1.31.385": "1", + "1.1.31.386": "1", + "1.1.31.387": "1", + "1.1.31.388": "1", + "1.1.31.389": "1", + "1.1.31.390": "1", + "1.1.31.391": "1", + "1.1.31.392": "1", + "1.1.31.393": "1", + "1.1.31.394": "1", + "1.1.31.395": "1", + "1.1.31.396": "1", + "1.1.31.397": "1", + "1.1.31.398": "1", + "1.1.31.399": "1", + "1.1.31.400": "1", + "1.1.32.1": "0", + "1.1.32.2": "0", + "1.1.32.3": "0", + "1.1.32.4": "0", + "1.1.32.5": "0", + "1.1.32.6": "0", + "1.1.32.7": "0", + "1.1.32.8": "0", + "1.1.32.9": "0", + "1.1.32.10": "0", + "1.1.32.11": "0", + "1.1.32.12": "0", + "1.1.32.13": "0", + "1.1.32.14": "0", + "1.1.32.15": "0", + "1.1.32.16": "0", + "1.1.32.17": "0", + "1.1.32.18": "0", + "1.1.32.19": "0", + "1.1.32.20": "0", + "1.1.32.21": "0", + "1.1.32.22": "0", + "1.1.32.23": "0", + "1.1.32.24": "0", + "1.1.32.25": "0", + "1.1.32.26": "0", + "1.1.32.27": "0", + "1.1.32.28": "0", + "1.1.32.29": "0", + "1.1.32.30": "0", + "1.1.32.31": "0", + "1.1.32.32": "0", + "1.1.32.33": "0", + "1.1.32.34": "0", + "1.1.32.35": "0", + "1.1.32.36": "0", + "1.1.32.37": "0", + "1.1.32.38": "0", + "1.1.32.39": "0", + "1.1.32.40": "0", + "1.1.32.41": "0", + "1.1.32.42": "0", + "1.1.32.43": "0", + "1.1.32.44": "0", + "1.1.32.45": "0", + "1.1.32.46": "0", + "1.1.32.47": "0", + "1.1.32.48": "0", + "1.1.32.49": "0", + "1.1.32.50": "0", + "1.1.32.51": "0", + "1.1.32.52": "0", + "1.1.32.53": "0", + "1.1.32.54": "0", + "1.1.32.55": "0", + "1.1.32.56": "0", + "1.1.32.57": "0", + "1.1.32.58": "0", + "1.1.32.59": "0", + "1.1.32.60": "0", + "1.1.32.61": "0", + "1.1.32.62": "0", + "1.1.32.63": "0", + "1.1.32.64": "0", + "1.1.32.65": "0", + "1.1.32.66": "0", + "1.1.32.67": "0", + "1.1.32.68": "0", + "1.1.32.69": "0", + "1.1.32.70": "0", + "1.1.32.71": "0", + "1.1.32.72": "0", + "1.1.32.73": "0", + "1.1.32.74": "0", + "1.1.32.75": "0", + "1.1.32.76": "0", + "1.1.32.77": "0", + "1.1.32.78": "0", + "1.1.32.79": "0", + "1.1.32.80": "0", + "1.1.32.81": "0", + "1.1.32.82": "0", + "1.1.32.83": "0", + "1.1.32.84": "0", + "1.1.32.85": "0", + "1.1.32.86": "0", + "1.1.32.87": "0", + "1.1.32.88": "0", + "1.1.32.89": "0", + "1.1.32.90": "0", + "1.1.32.91": "0", + "1.1.32.92": "0", + "1.1.32.93": "0", + "1.1.32.94": "0", + "1.1.32.95": "0", + "1.1.32.96": "0", + "1.1.32.97": "0", + "1.1.32.98": "0", + "1.1.32.99": "0", + "1.1.32.100": "0", + "1.1.32.101": "0", + "1.1.32.102": "0", + "1.1.32.103": "0", + "1.1.32.104": "0", + "1.1.32.105": "0", + "1.1.32.106": "0", + "1.1.32.107": "0", + "1.1.32.108": "0", + "1.1.32.109": "0", + "1.1.32.110": "0", + "1.1.32.111": "0", + "1.1.32.112": "0", + "1.1.32.113": "0", + "1.1.32.114": "0", + "1.1.32.115": "0", + "1.1.32.116": "0", + "1.1.32.117": "0", + "1.1.32.118": "0", + "1.1.32.119": "0", + "1.1.32.120": "0", + "1.1.32.121": "0", + "1.1.32.122": "0", + "1.1.32.123": "0", + "1.1.32.124": "0", + "1.1.32.125": "0", + "1.1.32.126": "0", + "1.1.32.127": "0", + "1.1.32.128": "0", + "1.1.32.129": "0", + "1.1.32.130": "0", + "1.1.32.131": "0", + "1.1.32.132": "0", + "1.1.32.133": "0", + "1.1.32.134": "0", + "1.1.32.135": "0", + "1.1.32.136": "0", + "1.1.32.137": "0", + "1.1.32.138": "0", + "1.1.32.139": "0", + "1.1.32.140": "0", + "1.1.32.141": "0", + "1.1.32.142": "0", + "1.1.32.143": "0", + "1.1.32.144": "0", + "1.1.32.145": "0", + "1.1.32.146": "0", + "1.1.32.147": "0", + "1.1.32.148": "0", + "1.1.32.149": "0", + "1.1.32.150": "0", + "1.1.32.151": "0", + "1.1.32.152": "0", + "1.1.32.153": "0", + "1.1.32.154": "0", + "1.1.32.155": "0", + "1.1.32.156": "0", + "1.1.32.157": "0", + "1.1.32.158": "0", + "1.1.32.159": "0", + "1.1.32.160": "0", + "1.1.32.161": "0", + "1.1.32.162": "0", + "1.1.32.163": "0", + "1.1.32.164": "0", + "1.1.32.165": "0", + "1.1.32.166": "0", + "1.1.32.167": "0", + "1.1.32.168": "0", + "1.1.32.169": "0", + "1.1.32.170": "0", + "1.1.32.171": "0", + "1.1.32.172": "0", + "1.1.32.173": "0", + "1.1.32.174": "0", + "1.1.32.175": "0", + "1.1.32.176": "0", + "1.1.32.177": "0", + "1.1.32.178": "0", + "1.1.32.179": "0", + "1.1.32.180": "0", + "1.1.32.181": "0", + "1.1.32.182": "0", + "1.1.32.183": "0", + "1.1.32.184": "0", + "1.1.32.185": "0", + "1.1.32.186": "0", + "1.1.32.187": "0", + "1.1.32.188": "0", + "1.1.32.189": "0", + "1.1.32.190": "0", + "1.1.32.191": "0", + "1.1.32.192": "0", + "1.1.32.193": "0", + "1.1.32.194": "0", + "1.1.32.195": "0", + "1.1.32.196": "0", + "1.1.32.197": "0", + "1.1.32.198": "0", + "1.1.32.199": "0", + "1.1.32.200": "0", + "1.1.32.201": "0", + "1.1.32.202": "0", + "1.1.32.203": "0", + "1.1.32.204": "0", + "1.1.32.205": "0", + "1.1.32.206": "0", + "1.1.32.207": "0", + "1.1.32.208": "0", + "1.1.32.209": "0", + "1.1.32.210": "0", + "1.1.32.211": "0", + "1.1.32.212": "0", + "1.1.32.213": "0", + "1.1.32.214": "0", + "1.1.32.215": "0", + "1.1.32.216": "0", + "1.1.32.217": "0", + "1.1.32.218": "0", + "1.1.32.219": "0", + "1.1.32.220": "0", + "1.1.32.221": "0", + "1.1.32.222": "0", + "1.1.32.223": "0", + "1.1.32.224": "0", + "1.1.32.225": "0", + "1.1.32.226": "0", + "1.1.32.227": "0", + "1.1.32.228": "0", + "1.1.32.229": "0", + "1.1.32.230": "0", + "1.1.32.231": "0", + "1.1.32.232": "0", + "1.1.32.233": "0", + "1.1.32.234": "0", + "1.1.32.235": "0", + "1.1.32.236": "0", + "1.1.32.237": "0", + "1.1.32.238": "0", + "1.1.32.239": "0", + "1.1.32.240": "0", + "1.1.32.241": "0", + "1.1.32.242": "0", + "1.1.32.243": "0", + "1.1.32.244": "0", + "1.1.32.245": "0", + "1.1.32.246": "0", + "1.1.32.247": "0", + "1.1.32.248": "0", + "1.1.32.249": "0", + "1.1.32.250": "0", + "1.1.32.251": "0", + "1.1.32.252": "0", + "1.1.32.253": "0", + "1.1.32.254": "0", + "1.1.32.255": "0", + "1.1.32.256": "0", + "1.1.32.257": "0", + "1.1.32.258": "0", + "1.1.32.259": "0", + "1.1.32.260": "0", + "1.1.32.261": "0", + "1.1.32.262": "0", + "1.1.32.263": "0", + "1.1.32.264": "0", + "1.1.32.265": "0", + "1.1.32.266": "0", + "1.1.32.267": "0", + "1.1.32.268": "0", + "1.1.32.269": "0", + "1.1.32.270": "0", + "1.1.32.271": "0", + "1.1.32.272": "0", + "1.1.32.273": "0", + "1.1.32.274": "0", + "1.1.32.275": "0", + "1.1.32.276": "0", + "1.1.32.277": "0", + "1.1.32.278": "0", + "1.1.32.279": "0", + "1.1.32.280": "0", + "1.1.32.281": "0", + "1.1.32.282": "0", + "1.1.32.283": "0", + "1.1.32.284": "0", + "1.1.32.285": "0", + "1.1.32.286": "0", + "1.1.32.287": "0", + "1.1.32.288": "0", + "1.1.32.289": "0", + "1.1.32.290": "0", + "1.1.32.291": "0", + "1.1.32.292": "0", + "1.1.32.293": "0", + "1.1.32.294": "0", + "1.1.32.295": "0", + "1.1.32.296": "0", + "1.1.32.297": "0", + "1.1.32.298": "0", + "1.1.32.299": "0", + "1.1.32.300": "0", + "1.1.32.301": "0", + "1.1.32.302": "0", + "1.1.32.303": "0", + "1.1.32.304": "0", + "1.1.32.305": "0", + "1.1.32.306": "0", + "1.1.32.307": "0", + "1.1.32.308": "0", + "1.1.32.309": "0", + "1.1.32.310": "0", + "1.1.32.311": "0", + "1.1.32.312": "0", + "1.1.32.313": "0", + "1.1.32.314": "0", + "1.1.32.315": "0", + "1.1.32.316": "0", + "1.1.32.317": "0", + "1.1.32.318": "0", + "1.1.32.319": "0", + "1.1.32.320": "0", + "1.1.32.321": "0", + "1.1.32.322": "0", + "1.1.32.323": "0", + "1.1.32.324": "0", + "1.1.32.325": "0", + "1.1.32.326": "0", + "1.1.32.327": "0", + "1.1.32.328": "0", + "1.1.32.329": "0", + "1.1.32.330": "0", + "1.1.32.331": "0", + "1.1.32.332": "0", + "1.1.32.333": "0", + "1.1.32.334": "0", + "1.1.32.335": "0", + "1.1.32.336": "0", + "1.1.32.337": "0", + "1.1.32.338": "0", + "1.1.32.339": "0", + "1.1.32.340": "0", + "1.1.32.341": "0", + "1.1.32.342": "0", + "1.1.32.343": "0", + "1.1.32.344": "0", + "1.1.32.345": "0", + "1.1.32.346": "0", + "1.1.32.347": "0", + "1.1.32.348": "0", + "1.1.32.349": "0", + "1.1.32.350": "0", + "1.1.32.351": "0", + "1.1.32.352": "0", + "1.1.32.353": "0", + "1.1.32.354": "0", + "1.1.32.355": "0", + "1.1.32.356": "0", + "1.1.32.357": "0", + "1.1.32.358": "0", + "1.1.32.359": "0", + "1.1.32.360": "0", + "1.1.32.361": "0", + "1.1.32.362": "0", + "1.1.32.363": "0", + "1.1.32.364": "0", + "1.1.32.365": "0", + "1.1.32.366": "0", + "1.1.32.367": "0", + "1.1.32.368": "0", + "1.1.32.369": "0", + "1.1.32.370": "0", + "1.1.32.371": "0", + "1.1.32.372": "0", + "1.1.32.373": "0", + "1.1.32.374": "0", + "1.1.32.375": "0", + "1.1.32.376": "0", + "1.1.32.377": "0", + "1.1.32.378": "0", + "1.1.32.379": "0", + "1.1.32.380": "0", + "1.1.32.381": "0", + "1.1.32.382": "0", + "1.1.32.383": "0", + "1.1.32.384": "0", + "1.1.32.385": "0", + "1.1.32.386": "0", + "1.1.32.387": "0", + "1.1.32.388": "0", + "1.1.32.389": "0", + "1.1.32.390": "0", + "1.1.32.391": "0", + "1.1.32.392": "0", + "1.1.32.393": "0", + "1.1.32.394": "0", + "1.1.32.395": "0", + "1.1.32.396": "0", + "1.1.32.397": "0", + "1.1.32.398": "0", + "1.1.32.399": "0", + "1.1.32.400": "0", + "2.1.2.1": "1", + "2.1.2.2": "1", + "2.1.2.3": "1", + "2.1.2.4": "1", + "2.1.2.5": "1", + "2.1.2.6": "1", + "2.1.2.7": "1", + "2.1.2.8": "1", + "2.1.2.9": "1", + "2.1.2.10": "1", + "2.1.2.11": "1", + "2.1.2.12": "1", + "2.1.2.13": "1", + "2.1.2.14": "1", + "2.1.2.15": "1", + "2.1.2.16": "1", + "2.1.2.17": "1", + "2.1.2.18": "1", + "2.1.2.19": "1", + "2.1.2.20": "1", + "2.1.2.21": "1", + "2.1.2.22": "1", + "2.1.2.23": "1", + "2.1.2.24": "1", + "2.1.2.25": "1", + "2.1.2.26": "1", + "2.1.2.27": "1", + "2.1.2.28": "1", + "2.1.2.29": "1", + "2.1.2.30": "1", + "2.1.2.31": "1", + "2.1.2.32": "1", + "2.1.2.33": "1", + "2.1.2.34": "1", + "2.1.2.35": "1", + "2.1.2.36": "1", + "2.1.2.37": "1", + "2.1.2.38": "1", + "2.1.2.39": "1", + "2.1.2.40": "1", + "2.1.2.41": "1", + "2.1.2.42": "1", + "2.1.2.43": "1", + "2.1.2.44": "1", + "2.1.2.45": "1", + "2.1.2.46": "1", + "2.1.2.47": "1", + "2.1.2.48": "1", + "2.1.2.49": "1", + "2.1.2.50": "1", + "2.1.2.51": "1", + "2.1.2.52": "1", + "2.1.2.53": "1", + "2.1.2.54": "1", + "2.1.2.55": "1", + "2.1.2.56": "1", + "2.1.2.57": "1", + "2.1.2.58": "1", + "2.1.2.59": "1", + "2.1.2.60": "1", + "2.1.2.61": "1", + "2.1.2.62": "1", + "2.1.2.63": "1", + "2.1.2.64": "1", + "2.1.2.65": "1", + "2.1.2.66": "1", + "2.1.2.67": "1", + "2.1.2.68": "1", + "2.1.2.69": "1", + "2.1.2.70": "1", + "2.1.2.71": "1", + "2.1.2.72": "1", + "2.1.2.73": "1", + "2.1.2.74": "1", + "2.1.2.75": "1", + "2.1.2.76": "1", + "2.1.2.77": "1", + "2.1.2.78": "1", + "2.1.2.79": "1", + "2.1.2.80": "1", + "2.1.2.81": "1", + "2.1.2.82": "1", + "2.1.2.83": "1", + "2.1.2.84": "1", + "2.1.2.85": "1", + "2.1.2.86": "1", + "2.1.2.87": "1", + "2.1.2.88": "1", + "2.1.2.89": "1", + "2.1.2.90": "1", + "2.1.2.91": "1", + "2.1.2.92": "1", + "2.1.2.93": "1", + "2.1.2.94": "1", + "2.1.2.95": "1", + "2.1.2.96": "1", + "2.1.2.97": "1", + "2.1.2.98": "1", + "2.1.2.99": "1", + "2.1.2.100": "1", + "2.1.2.101": "2", + "2.1.2.102": "2", + "2.1.2.103": "2", + "2.1.2.104": "2", + "2.1.2.105": "2", + "2.1.2.106": "2", + "2.1.2.107": "2", + "2.1.2.108": "2", + "2.1.2.109": "2", + "2.1.2.110": "2", + "2.1.2.111": "2", + "2.1.2.112": "2", + "2.1.2.113": "2", + "2.1.2.114": "2", + "2.1.2.115": "2", + "2.1.2.116": "2", + "2.1.2.117": "2", + "2.1.2.118": "2", + "2.1.2.119": "2", + "2.1.2.120": "2", + "2.1.2.121": "2", + "2.1.2.122": "2", + "2.1.2.123": "2", + "2.1.2.124": "2", + "2.1.2.125": "2", + "2.1.2.126": "2", + "2.1.2.127": "2", + "2.1.2.128": "2", + "2.1.2.129": "2", + "2.1.2.130": "2", + "2.1.2.131": "2", + "2.1.2.132": "2", + "2.1.2.133": "2", + "2.1.2.134": "2", + "2.1.2.135": "2", + "2.1.2.136": "2", + "2.1.2.137": "2", + "2.1.2.138": "2", + "2.1.2.139": "2", + "2.1.2.140": "2", + "2.1.2.141": "2", + "2.1.2.142": "2", + "2.1.2.143": "2", + "2.1.2.144": "2", + "2.1.2.145": "2", + "2.1.2.146": "2", + "2.1.2.147": "2", + "2.1.2.148": "2", + "2.1.2.149": "2", + "2.1.2.150": "2", + "2.1.2.151": "2", + "2.1.2.152": "2", + "2.1.2.153": "2", + "2.1.2.154": "2", + "2.1.2.155": "2", + "2.1.2.156": "2", + "2.1.2.157": "2", + "2.1.2.158": "2", + "2.1.2.159": "2", + "2.1.2.160": "2", + "2.1.2.161": "2", + "2.1.2.162": "2", + "2.1.2.163": "2", + "2.1.2.164": "2", + "2.1.2.165": "2", + "2.1.2.166": "2", + "2.1.2.167": "2", + "2.1.2.168": "2", + "2.1.2.169": "2", + "2.1.2.170": "2", + "2.1.2.171": "2", + "2.1.2.172": "2", + "2.1.2.173": "2", + "2.1.2.174": "2", + "2.1.2.175": "2", + "2.1.2.176": "2", + "2.1.2.177": "2", + "2.1.2.178": "2", + "2.1.2.179": "2", + "2.1.2.180": "2", + "2.1.2.181": "2", + "2.1.2.182": "2", + "2.1.2.183": "2", + "2.1.2.184": "2", + "2.1.2.185": "2", + "2.1.2.186": "2", + "2.1.2.187": "2", + "2.1.2.188": "2", + "2.1.2.189": "2", + "2.1.2.190": "2", + "2.1.2.191": "2", + "2.1.2.192": "2", + "2.1.2.193": "2", + "2.1.2.194": "2", + "2.1.2.195": "2", + "2.1.2.196": "2", + "2.1.2.197": "2", + "2.1.2.198": "2", + "2.1.2.199": "2", + "2.1.2.200": "2", + "2.1.2.201": "3", + "2.1.2.202": "3", + "2.1.2.203": "3", + "2.1.2.204": "3", + "2.1.2.205": "3", + "2.1.2.206": "3", + "2.1.2.207": "3", + "2.1.2.208": "3", + "2.1.2.209": "3", + "2.1.2.210": "3", + "2.1.2.211": "3", + "2.1.2.212": "3", + "2.1.2.213": "3", + "2.1.2.214": "3", + "2.1.2.215": "3", + "2.1.2.216": "3", + "2.1.2.217": "3", + "2.1.2.218": "3", + "2.1.2.219": "3", + "2.1.2.220": "3", + "2.1.2.221": "3", + "2.1.2.222": "3", + "2.1.2.223": "3", + "2.1.2.224": "3", + "2.1.2.225": "3", + "2.1.2.226": "3", + "2.1.2.227": "3", + "2.1.2.228": "3", + "2.1.2.229": "3", + "2.1.2.230": "3", + "2.1.2.231": "3", + "2.1.2.232": "3", + "2.1.2.233": "3", + "2.1.2.234": "3", + "2.1.2.235": "3", + "2.1.2.236": "3", + "2.1.2.237": "3", + "2.1.2.238": "3", + "2.1.2.239": "3", + "2.1.2.240": "3", + "2.1.2.241": "3", + "2.1.2.242": "3", + "2.1.2.243": "3", + "2.1.2.244": "3", + "2.1.2.245": "3", + "2.1.2.246": "3", + "2.1.2.247": "3", + "2.1.2.248": "3", + "2.1.2.249": "3", + "2.1.2.250": "3", + "2.1.2.251": "3", + "2.1.2.252": "3", + "2.1.2.253": "3", + "2.1.2.254": "3", + "2.1.2.255": "3", + "2.1.2.256": "3", + "2.1.2.257": "3", + "2.1.2.258": "3", + "2.1.2.259": "3", + "2.1.2.260": "3", + "2.1.2.261": "3", + "2.1.2.262": "3", + "2.1.2.263": "3", + "2.1.2.264": "3", + "2.1.2.265": "3", + "2.1.2.266": "3", + "2.1.2.267": "3", + "2.1.2.268": "3", + "2.1.2.269": "3", + "2.1.2.270": "3", + "2.1.2.271": "3", + "2.1.2.272": "3", + "2.1.2.273": "3", + "2.1.2.274": "3", + "2.1.2.275": "3", + "2.1.2.276": "3", + "2.1.2.277": "3", + "2.1.2.278": "3", + "2.1.2.279": "3", + "2.1.2.280": "3", + "2.1.2.281": "3", + "2.1.2.282": "3", + "2.1.2.283": "3", + "2.1.2.284": "3", + "2.1.2.285": "3", + "2.1.2.286": "3", + "2.1.2.287": "3", + "2.1.2.288": "3", + "2.1.2.289": "3", + "2.1.2.290": "3", + "2.1.2.291": "3", + "2.1.2.292": "3", + "2.1.2.293": "3", + "2.1.2.294": "3", + "2.1.2.295": "3", + "2.1.2.296": "3", + "2.1.2.297": "3", + "2.1.2.298": "3", + "2.1.2.299": "3", + "2.1.2.300": "3", + "2.1.2.301": "4", + "2.1.2.302": "4", + "2.1.2.303": "4", + "2.1.2.304": "4", + "2.1.2.305": "4", + "2.1.2.306": "4", + "2.1.2.307": "4", + "2.1.2.308": "4", + "2.1.2.309": "4", + "2.1.2.310": "4", + "2.1.2.311": "4", + "2.1.2.312": "4", + "2.1.2.313": "4", + "2.1.2.314": "4", + "2.1.2.315": "4", + "2.1.2.316": "4", + "2.1.2.317": "4", + "2.1.2.318": "4", + "2.1.2.319": "4", + "2.1.2.320": "4", + "2.1.2.321": "4", + "2.1.2.322": "4", + "2.1.2.323": "4", + "2.1.2.324": "4", + "2.1.2.325": "4", + "2.1.2.326": "4", + "2.1.2.327": "4", + "2.1.2.328": "4", + "2.1.2.329": "4", + "2.1.2.330": "4", + "2.1.2.331": "4", + "2.1.2.332": "4", + "2.1.2.333": "4", + "2.1.2.334": "4", + "2.1.2.335": "4", + "2.1.2.336": "4", + "2.1.2.337": "4", + "2.1.2.338": "4", + "2.1.2.339": "4", + "2.1.2.340": "4", + "2.1.2.341": "4", + "2.1.2.342": "4", + "2.1.2.343": "4", + "2.1.2.344": "4", + "2.1.2.345": "4", + "2.1.2.346": "4", + "2.1.2.347": "4", + "2.1.2.348": "4", + "2.1.2.349": "4", + "2.1.2.350": "4", + "2.1.2.351": "4", + "2.1.2.352": "4", + "2.1.2.353": "4", + "2.1.2.354": "4", + "2.1.2.355": "4", + "2.1.2.356": "4", + "2.1.2.357": "4", + "2.1.2.358": "4", + "2.1.2.359": "4", + "2.1.2.360": "4", + "2.1.2.361": "4", + "2.1.2.362": "4", + "2.1.2.363": "4", + "2.1.2.364": "4", + "2.1.2.365": "4", + "2.1.2.366": "4", + "2.1.2.367": "4", + "2.1.2.368": "4", + "2.1.2.369": "4", + "2.1.2.370": "4", + "2.1.2.371": "4", + "2.1.2.372": "4", + "2.1.2.373": "4", + "2.1.2.374": "4", + "2.1.2.375": "4", + "2.1.2.376": "4", + "2.1.2.377": "4", + "2.1.2.378": "4", + "2.1.2.379": "4", + "2.1.2.380": "4", + "2.1.2.381": "4", + "2.1.2.382": "4", + "2.1.2.383": "4", + "2.1.2.384": "4", + "2.1.2.385": "4", + "2.1.2.386": "4", + "2.1.2.387": "4", + "2.1.2.388": "4", + "2.1.2.389": "4", + "2.1.2.390": "4", + "2.1.2.391": "4", + "2.1.2.392": "4", + "2.1.2.393": "4", + "2.1.2.394": "4", + "2.1.2.395": "4", + "2.1.2.396": "4", + "2.1.2.397": "4", + "2.1.2.398": "4", + "2.1.2.399": "4", + "2.1.2.400": "4", + "2.1.3.1": "1", + "2.1.3.2": "2", + "2.1.3.3": "3", + "2.1.3.4": "4", + "2.1.3.5": "5", + "2.1.3.6": "6", + "2.1.3.7": "7", + "2.1.3.8": "8", + "2.1.3.9": "9", + "2.1.3.10": "10", + "2.1.3.11": "11", + "2.1.3.12": "12", + "2.1.3.13": "13", + "2.1.3.14": "14", + "2.1.3.15": "15", + "2.1.3.16": "16", + "2.1.3.17": "17", + "2.1.3.18": "18", + "2.1.3.19": "19", + "2.1.3.20": "20", + "2.1.3.21": "21", + "2.1.3.22": "22", + "2.1.3.23": "23", + "2.1.3.24": "24", + "2.1.3.25": "25", + "2.1.3.26": "26", + "2.1.3.27": "27", + "2.1.3.28": "28", + "2.1.3.29": "29", + "2.1.3.30": "30", + "2.1.3.31": "31", + "2.1.3.32": "32", + "2.1.3.33": "33", + "2.1.3.34": "34", + "2.1.3.35": "35", + "2.1.3.36": "36", + "2.1.3.37": "37", + "2.1.3.38": "38", + "2.1.3.39": "39", + "2.1.3.40": "40", + "2.1.3.41": "41", + "2.1.3.42": "42", + "2.1.3.43": "43", + "2.1.3.44": "44", + "2.1.3.45": "45", + "2.1.3.46": "46", + "2.1.3.47": "47", + "2.1.3.48": "48", + "2.1.3.49": "49", + "2.1.3.50": "50", + "2.1.3.51": "51", + "2.1.3.52": "52", + "2.1.3.53": "53", + "2.1.3.54": "54", + "2.1.3.55": "55", + "2.1.3.56": "56", + "2.1.3.57": "57", + "2.1.3.58": "58", + "2.1.3.59": "59", + "2.1.3.60": "60", + "2.1.3.61": "61", + "2.1.3.62": "62", + "2.1.3.63": "63", + "2.1.3.64": "64", + "2.1.3.65": "65", + "2.1.3.66": "66", + "2.1.3.67": "67", + "2.1.3.68": "68", + "2.1.3.69": "69", + "2.1.3.70": "70", + "2.1.3.71": "71", + "2.1.3.72": "72", + "2.1.3.73": "73", + "2.1.3.74": "74", + "2.1.3.75": "75", + "2.1.3.76": "76", + "2.1.3.77": "77", + "2.1.3.78": "78", + "2.1.3.79": "79", + "2.1.3.80": "80", + "2.1.3.81": "81", + "2.1.3.82": "82", + "2.1.3.83": "83", + "2.1.3.84": "84", + "2.1.3.85": "85", + "2.1.3.86": "86", + "2.1.3.87": "87", + "2.1.3.88": "88", + "2.1.3.89": "89", + "2.1.3.90": "90", + "2.1.3.91": "91", + "2.1.3.92": "92", + "2.1.3.93": "93", + "2.1.3.94": "94", + "2.1.3.95": "95", + "2.1.3.96": "96", + "2.1.3.97": "97", + "2.1.3.98": "98", + "2.1.3.99": "99", + "2.1.3.100": "100", + "2.1.3.101": "1", + "2.1.3.102": "2", + "2.1.3.103": "3", + "2.1.3.104": "4", + "2.1.3.105": "5", + "2.1.3.106": "6", + "2.1.3.107": "7", + "2.1.3.108": "8", + "2.1.3.109": "9", + "2.1.3.110": "10", + "2.1.3.111": "11", + "2.1.3.112": "12", + "2.1.3.113": "13", + "2.1.3.114": "14", + "2.1.3.115": "15", + "2.1.3.116": "16", + "2.1.3.117": "17", + "2.1.3.118": "18", + "2.1.3.119": "19", + "2.1.3.120": "20", + "2.1.3.121": "21", + "2.1.3.122": "22", + "2.1.3.123": "23", + "2.1.3.124": "24", + "2.1.3.125": "25", + "2.1.3.126": "26", + "2.1.3.127": "27", + "2.1.3.128": "28", + "2.1.3.129": "29", + "2.1.3.130": "30", + "2.1.3.131": "31", + "2.1.3.132": "32", + "2.1.3.133": "33", + "2.1.3.134": "34", + "2.1.3.135": "35", + "2.1.3.136": "36", + "2.1.3.137": "37", + "2.1.3.138": "38", + "2.1.3.139": "39", + "2.1.3.140": "40", + "2.1.3.141": "41", + "2.1.3.142": "42", + "2.1.3.143": "43", + "2.1.3.144": "44", + "2.1.3.145": "45", + "2.1.3.146": "46", + "2.1.3.147": "47", + "2.1.3.148": "48", + "2.1.3.149": "49", + "2.1.3.150": "50", + "2.1.3.151": "51", + "2.1.3.152": "52", + "2.1.3.153": "53", + "2.1.3.154": "54", + "2.1.3.155": "55", + "2.1.3.156": "56", + "2.1.3.157": "57", + "2.1.3.158": "58", + "2.1.3.159": "59", + "2.1.3.160": "60", + "2.1.3.161": "61", + "2.1.3.162": "62", + "2.1.3.163": "63", + "2.1.3.164": "64", + "2.1.3.165": "65", + "2.1.3.166": "66", + "2.1.3.167": "67", + "2.1.3.168": "68", + "2.1.3.169": "69", + "2.1.3.170": "70", + "2.1.3.171": "71", + "2.1.3.172": "72", + "2.1.3.173": "73", + "2.1.3.174": "74", + "2.1.3.175": "75", + "2.1.3.176": "76", + "2.1.3.177": "77", + "2.1.3.178": "78", + "2.1.3.179": "79", + "2.1.3.180": "80", + "2.1.3.181": "81", + "2.1.3.182": "82", + "2.1.3.183": "83", + "2.1.3.184": "84", + "2.1.3.185": "85", + "2.1.3.186": "86", + "2.1.3.187": "87", + "2.1.3.188": "88", + "2.1.3.189": "89", + "2.1.3.190": "90", + "2.1.3.191": "91", + "2.1.3.192": "92", + "2.1.3.193": "93", + "2.1.3.194": "94", + "2.1.3.195": "95", + "2.1.3.196": "96", + "2.1.3.197": "97", + "2.1.3.198": "98", + "2.1.3.199": "99", + "2.1.3.200": "100", + "2.1.3.201": "1", + "2.1.3.202": "2", + "2.1.3.203": "3", + "2.1.3.204": "4", + "2.1.3.205": "5", + "2.1.3.206": "6", + "2.1.3.207": "7", + "2.1.3.208": "8", + "2.1.3.209": "9", + "2.1.3.210": "10", + "2.1.3.211": "11", + "2.1.3.212": "12", + "2.1.3.213": "13", + "2.1.3.214": "14", + "2.1.3.215": "15", + "2.1.3.216": "16", + "2.1.3.217": "17", + "2.1.3.218": "18", + "2.1.3.219": "19", + "2.1.3.220": "20", + "2.1.3.221": "21", + "2.1.3.222": "22", + "2.1.3.223": "23", + "2.1.3.224": "24", + "2.1.3.225": "25", + "2.1.3.226": "26", + "2.1.3.227": "27", + "2.1.3.228": "28", + "2.1.3.229": "29", + "2.1.3.230": "30", + "2.1.3.231": "31", + "2.1.3.232": "32", + "2.1.3.233": "33", + "2.1.3.234": "34", + "2.1.3.235": "35", + "2.1.3.236": "36", + "2.1.3.237": "37", + "2.1.3.238": "38", + "2.1.3.239": "39", + "2.1.3.240": "40", + "2.1.3.241": "41", + "2.1.3.242": "42", + "2.1.3.243": "43", + "2.1.3.244": "44", + "2.1.3.245": "45", + "2.1.3.246": "46", + "2.1.3.247": "47", + "2.1.3.248": "48", + "2.1.3.249": "49", + "2.1.3.250": "50", + "2.1.3.251": "51", + "2.1.3.252": "52", + "2.1.3.253": "53", + "2.1.3.254": "54", + "2.1.3.255": "55", + "2.1.3.256": "56", + "2.1.3.257": "57", + "2.1.3.258": "58", + "2.1.3.259": "59", + "2.1.3.260": "60", + "2.1.3.261": "61", + "2.1.3.262": "62", + "2.1.3.263": "63", + "2.1.3.264": "64", + "2.1.3.265": "65", + "2.1.3.266": "66", + "2.1.3.267": "67", + "2.1.3.268": "68", + "2.1.3.269": "69", + "2.1.3.270": "70", + "2.1.3.271": "71", + "2.1.3.272": "72", + "2.1.3.273": "73", + "2.1.3.274": "74", + "2.1.3.275": "75", + "2.1.3.276": "76", + "2.1.3.277": "77", + "2.1.3.278": "78", + "2.1.3.279": "79", + "2.1.3.280": "80", + "2.1.3.281": "81", + "2.1.3.282": "82", + "2.1.3.283": "83", + "2.1.3.284": "84", + "2.1.3.285": "85", + "2.1.3.286": "86", + "2.1.3.287": "87", + "2.1.3.288": "88", + "2.1.3.289": "89", + "2.1.3.290": "90", + "2.1.3.291": "91", + "2.1.3.292": "92", + "2.1.3.293": "93", + "2.1.3.294": "94", + "2.1.3.295": "95", + "2.1.3.296": "96", + "2.1.3.297": "97", + "2.1.3.298": "98", + "2.1.3.299": "99", + "2.1.3.300": "100", + "2.1.3.301": "1", + "2.1.3.302": "2", + "2.1.3.303": "3", + "2.1.3.304": "4", + "2.1.3.305": "5", + "2.1.3.306": "6", + "2.1.3.307": "7", + "2.1.3.308": "8", + "2.1.3.309": "9", + "2.1.3.310": "10", + "2.1.3.311": "11", + "2.1.3.312": "12", + "2.1.3.313": "13", + "2.1.3.314": "14", + "2.1.3.315": "15", + "2.1.3.316": "16", + "2.1.3.317": "17", + "2.1.3.318": "18", + "2.1.3.319": "19", + "2.1.3.320": "20", + "2.1.3.321": "21", + "2.1.3.322": "22", + "2.1.3.323": "23", + "2.1.3.324": "24", + "2.1.3.325": "25", + "2.1.3.326": "26", + "2.1.3.327": "27", + "2.1.3.328": "28", + "2.1.3.329": "29", + "2.1.3.330": "30", + "2.1.3.331": "31", + "2.1.3.332": "32", + "2.1.3.333": "33", + "2.1.3.334": "34", + "2.1.3.335": "35", + "2.1.3.336": "36", + "2.1.3.337": "37", + "2.1.3.338": "38", + "2.1.3.339": "39", + "2.1.3.340": "40", + "2.1.3.341": "41", + "2.1.3.342": "42", + "2.1.3.343": "43", + "2.1.3.344": "44", + "2.1.3.345": "45", + "2.1.3.346": "46", + "2.1.3.347": "47", + "2.1.3.348": "48", + "2.1.3.349": "49", + "2.1.3.350": "50", + "2.1.3.351": "51", + "2.1.3.352": "52", + "2.1.3.353": "53", + "2.1.3.354": "54", + "2.1.3.355": "55", + "2.1.3.356": "56", + "2.1.3.357": "57", + "2.1.3.358": "58", + "2.1.3.359": "59", + "2.1.3.360": "60", + "2.1.3.361": "61", + "2.1.3.362": "62", + "2.1.3.363": "63", + "2.1.3.364": "64", + "2.1.3.365": "65", + "2.1.3.366": "66", + "2.1.3.367": "67", + "2.1.3.368": "68", + "2.1.3.369": "69", + "2.1.3.370": "70", + "2.1.3.371": "71", + "2.1.3.372": "72", + "2.1.3.373": "73", + "2.1.3.374": "74", + "2.1.3.375": "75", + "2.1.3.376": "76", + "2.1.3.377": "77", + "2.1.3.378": "78", + "2.1.3.379": "79", + "2.1.3.380": "80", + "2.1.3.381": "81", + "2.1.3.382": "82", + "2.1.3.383": "83", + "2.1.3.384": "84", + "2.1.3.385": "85", + "2.1.3.386": "86", + "2.1.3.387": "87", + "2.1.3.388": "88", + "2.1.3.389": "89", + "2.1.3.390": "90", + "2.1.3.391": "91", + "2.1.3.392": "92", + "2.1.3.393": "93", + "2.1.3.394": "94", + "2.1.3.395": "95", + "2.1.3.396": "96", + "2.1.3.397": "97", + "2.1.3.398": "98", + "2.1.3.399": "99", + "2.1.3.400": "100", + "2.1.4.1": "0", + "2.1.4.2": "0", + "2.1.4.3": "0", + "2.1.4.4": "0", + "2.1.4.5": "0", + "2.1.4.6": "13471464", + "2.1.4.7": "0", + "2.1.4.8": "0", + "2.1.4.9": "0", + "2.1.4.10": "0", + "2.1.4.11": "0", + "2.1.4.12": "0", + "2.1.4.13": "0", + "2.1.4.14": "0", + "2.1.4.15": "0", + "2.1.4.16": "0", + "2.1.4.17": "0", + "2.1.4.18": "0", + "2.1.4.19": "0", + "2.1.4.20": "0", + "2.1.4.21": "0", + "2.1.4.22": "0", + "2.1.4.23": "0", + "2.1.4.24": "0", + "2.1.4.25": "0", + "2.1.4.26": "0", + "2.1.4.27": "0", + "2.1.4.28": "0", + "2.1.4.29": "0", + "2.1.4.30": "0", + "2.1.4.31": "0", + "2.1.4.32": "0", + "2.1.4.33": "0", + "2.1.4.34": "0", + "2.1.4.35": "0", + "2.1.4.36": "0", + "2.1.4.37": "0", + "2.1.4.38": "0", + "2.1.4.39": "0", + "2.1.4.40": "0", + "2.1.4.41": "0", + "2.1.4.42": "0", + "2.1.4.43": "0", + "2.1.4.44": "0", + "2.1.4.45": "0", + "2.1.4.46": "0", + "2.1.4.47": "0", + "2.1.4.48": "0", + "2.1.4.49": "0", + "2.1.4.50": "0", + "2.1.4.51": "0", + "2.1.4.52": "0", + "2.1.4.53": "0", + "2.1.4.54": "0", + "2.1.4.55": "0", + "2.1.4.56": "0", + "2.1.4.57": "0", + "2.1.4.58": "0", + "2.1.4.59": "0", + "2.1.4.60": "0", + "2.1.4.61": "0", + "2.1.4.62": "0", + "2.1.4.63": "0", + "2.1.4.64": "0", + "2.1.4.65": "0", + "2.1.4.66": "0", + "2.1.4.67": "0", + "2.1.4.68": "0", + "2.1.4.69": "0", + "2.1.4.70": "0", + "2.1.4.71": "0", + "2.1.4.72": "0", + "2.1.4.73": "0", + "2.1.4.74": "0", + "2.1.4.75": "0", + "2.1.4.76": "0", + "2.1.4.77": "0", + "2.1.4.78": "0", + "2.1.4.79": "0", + "2.1.4.80": "0", + "2.1.4.81": "0", + "2.1.4.82": "0", + "2.1.4.83": "0", + "2.1.4.84": "0", + "2.1.4.85": "0", + "2.1.4.86": "0", + "2.1.4.87": "0", + "2.1.4.88": "0", + "2.1.4.89": "0", + "2.1.4.90": "0", + "2.1.4.91": "0", + "2.1.4.92": "0", + "2.1.4.93": "0", + "2.1.4.94": "0", + "2.1.4.95": "0", + "2.1.4.96": "0", + "2.1.4.97": "0", + "2.1.4.98": "0", + "2.1.4.99": "0", + "2.1.4.100": "0", + "2.1.4.101": "0", + "2.1.4.102": "0", + "2.1.4.103": "0", + "2.1.4.104": "0", + "2.1.4.105": "0", + "2.1.4.106": "0", + "2.1.4.107": "0", + "2.1.4.108": "0", + "2.1.4.109": "0", + "2.1.4.110": "0", + "2.1.4.111": "0", + "2.1.4.112": "0", + "2.1.4.113": "0", + "2.1.4.114": "0", + "2.1.4.115": "0", + "2.1.4.116": "0", + "2.1.4.117": "0", + "2.1.4.118": "0", + "2.1.4.119": "0", + "2.1.4.120": "0", + "2.1.4.121": "0", + "2.1.4.122": "0", + "2.1.4.123": "0", + "2.1.4.124": "0", + "2.1.4.125": "0", + "2.1.4.126": "0", + "2.1.4.127": "0", + "2.1.4.128": "0", + "2.1.4.129": "0", + "2.1.4.130": "0", + "2.1.4.131": "0", + "2.1.4.132": "0", + "2.1.4.133": "0", + "2.1.4.134": "0", + "2.1.4.135": "0", + "2.1.4.136": "0", + "2.1.4.137": "0", + "2.1.4.138": "0", + "2.1.4.139": "0", + "2.1.4.140": "0", + "2.1.4.141": "0", + "2.1.4.142": "0", + "2.1.4.143": "0", + "2.1.4.144": "0", + "2.1.4.145": "0", + "2.1.4.146": "0", + "2.1.4.147": "0", + "2.1.4.148": "0", + "2.1.4.149": "0", + "2.1.4.150": "0", + "2.1.4.151": "0", + "2.1.4.152": "0", + "2.1.4.153": "0", + "2.1.4.154": "0", + "2.1.4.155": "0", + "2.1.4.156": "0", + "2.1.4.157": "0", + "2.1.4.158": "0", + "2.1.4.159": "0", + "2.1.4.160": "0", + "2.1.4.161": "0", + "2.1.4.162": "0", + "2.1.4.163": "0", + "2.1.4.164": "0", + "2.1.4.165": "0", + "2.1.4.166": "0", + "2.1.4.167": "0", + "2.1.4.168": "0", + "2.1.4.169": "0", + "2.1.4.170": "0", + "2.1.4.171": "0", + "2.1.4.172": "0", + "2.1.4.173": "0", + "2.1.4.174": "0", + "2.1.4.175": "0", + "2.1.4.176": "0", + "2.1.4.177": "0", + "2.1.4.178": "0", + "2.1.4.179": "0", + "2.1.4.180": "0", + "2.1.4.181": "0", + "2.1.4.182": "0", + "2.1.4.183": "0", + "2.1.4.184": "0", + "2.1.4.185": "0", + "2.1.4.186": "0", + "2.1.4.187": "0", + "2.1.4.188": "0", + "2.1.4.189": "0", + "2.1.4.190": "0", + "2.1.4.191": "0", + "2.1.4.192": "0", + "2.1.4.193": "0", + "2.1.4.194": "0", + "2.1.4.195": "0", + "2.1.4.196": "0", + "2.1.4.197": "0", + "2.1.4.198": "0", + "2.1.4.199": "0", + "2.1.4.200": "0", + "2.1.4.201": "0", + "2.1.4.202": "0", + "2.1.4.203": "0", + "2.1.4.204": "0", + "2.1.4.205": "0", + "2.1.4.206": "13188308", + "2.1.4.207": "0", + "2.1.4.208": "0", + "2.1.4.209": "0", + "2.1.4.210": "0", + "2.1.4.211": "0", + "2.1.4.212": "0", + "2.1.4.213": "0", + "2.1.4.214": "0", + "2.1.4.215": "0", + "2.1.4.216": "0", + "2.1.4.217": "0", + "2.1.4.218": "0", + "2.1.4.219": "0", + "2.1.4.220": "0", + "2.1.4.221": "0", + "2.1.4.222": "0", + "2.1.4.223": "0", + "2.1.4.224": "0", + "2.1.4.225": "0", + "2.1.4.226": "0", + "2.1.4.227": "0", + "2.1.4.228": "0", + "2.1.4.229": "0", + "2.1.4.230": "0", + "2.1.4.231": "0", + "2.1.4.232": "0", + "2.1.4.233": "0", + "2.1.4.234": "0", + "2.1.4.235": "0", + "2.1.4.236": "0", + "2.1.4.237": "0", + "2.1.4.238": "0", + "2.1.4.239": "0", + "2.1.4.240": "0", + "2.1.4.241": "0", + "2.1.4.242": "0", + "2.1.4.243": "0", + "2.1.4.244": "0", + "2.1.4.245": "0", + "2.1.4.246": "0", + "2.1.4.247": "0", + "2.1.4.248": "0", + "2.1.4.249": "0", + "2.1.4.250": "0", + "2.1.4.251": "0", + "2.1.4.252": "0", + "2.1.4.253": "0", + "2.1.4.254": "0", + "2.1.4.255": "0", + "2.1.4.256": "0", + "2.1.4.257": "0", + "2.1.4.258": "0", + "2.1.4.259": "0", + "2.1.4.260": "0", + "2.1.4.261": "0", + "2.1.4.262": "0", + "2.1.4.263": "0", + "2.1.4.264": "0", + "2.1.4.265": "0", + "2.1.4.266": "0", + "2.1.4.267": "0", + "2.1.4.268": "0", + "2.1.4.269": "0", + "2.1.4.270": "0", + "2.1.4.271": "0", + "2.1.4.272": "0", + "2.1.4.273": "0", + "2.1.4.274": "0", + "2.1.4.275": "0", + "2.1.4.276": "0", + "2.1.4.277": "0", + "2.1.4.278": "0", + "2.1.4.279": "0", + "2.1.4.280": "0", + "2.1.4.281": "0", + "2.1.4.282": "0", + "2.1.4.283": "0", + "2.1.4.284": "0", + "2.1.4.285": "0", + "2.1.4.286": "0", + "2.1.4.287": "0", + "2.1.4.288": "0", + "2.1.4.289": "0", + "2.1.4.290": "0", + "2.1.4.291": "0", + "2.1.4.292": "0", + "2.1.4.293": "0", + "2.1.4.294": "0", + "2.1.4.295": "0", + "2.1.4.296": "0", + "2.1.4.297": "0", + "2.1.4.298": "0", + "2.1.4.299": "0", + "2.1.4.300": "0", + "2.1.4.301": "0", + "2.1.4.302": "0", + "2.1.4.303": "0", + "2.1.4.304": "0", + "2.1.4.305": "0", + "2.1.4.306": "0", + "2.1.4.307": "0", + "2.1.4.308": "0", + "2.1.4.309": "0", + "2.1.4.310": "0", + "2.1.4.311": "0", + "2.1.4.312": "0", + "2.1.4.313": "0", + "2.1.4.314": "0", + "2.1.4.315": "0", + "2.1.4.316": "0", + "2.1.4.317": "0", + "2.1.4.318": "0", + "2.1.4.319": "0", + "2.1.4.320": "0", + "2.1.4.321": "0", + "2.1.4.322": "0", + "2.1.4.323": "0", + "2.1.4.324": "0", + "2.1.4.325": "0", + "2.1.4.326": "0", + "2.1.4.327": "0", + "2.1.4.328": "0", + "2.1.4.329": "0", + "2.1.4.330": "0", + "2.1.4.331": "0", + "2.1.4.332": "0", + "2.1.4.333": "0", + "2.1.4.334": "0", + "2.1.4.335": "0", + "2.1.4.336": "0", + "2.1.4.337": "0", + "2.1.4.338": "0", + "2.1.4.339": "0", + "2.1.4.340": "0", + "2.1.4.341": "0", + "2.1.4.342": "0", + "2.1.4.343": "0", + "2.1.4.344": "0", + "2.1.4.345": "0", + "2.1.4.346": "0", + "2.1.4.347": "0", + "2.1.4.348": "0", + "2.1.4.349": "0", + "2.1.4.350": "0", + "2.1.4.351": "0", + "2.1.4.352": "0", + "2.1.4.353": "0", + "2.1.4.354": "0", + "2.1.4.355": "0", + "2.1.4.356": "0", + "2.1.4.357": "0", + "2.1.4.358": "0", + "2.1.4.359": "0", + "2.1.4.360": "0", + "2.1.4.361": "0", + "2.1.4.362": "0", + "2.1.4.363": "0", + "2.1.4.364": "0", + "2.1.4.365": "0", + "2.1.4.366": "0", + "2.1.4.367": "0", + "2.1.4.368": "0", + "2.1.4.369": "0", + "2.1.4.370": "0", + "2.1.4.371": "0", + "2.1.4.372": "0", + "2.1.4.373": "0", + "2.1.4.374": "0", + "2.1.4.375": "0", + "2.1.4.376": "0", + "2.1.4.377": "0", + "2.1.4.378": "0", + "2.1.4.379": "0", + "2.1.4.380": "0", + "2.1.4.381": "0", + "2.1.4.382": "0", + "2.1.4.383": "0", + "2.1.4.384": "0", + "2.1.4.385": "0", + "2.1.4.386": "0", + "2.1.4.387": "0", + "2.1.4.388": "0", + "2.1.4.389": "0", + "2.1.4.390": "0", + "2.1.4.391": "0", + "2.1.4.392": "0", + "2.1.4.393": "0", + "2.1.4.394": "0", + "2.1.4.395": "0", + "2.1.4.396": "0", + "2.1.4.397": "0", + "2.1.4.398": "0", + "2.1.4.399": "0", + "2.1.4.400": "0", + "2.1.5.1": "0", + "2.1.5.2": "0", + "2.1.5.3": "0", + "2.1.5.4": "0", + "2.1.5.5": "0", + "2.1.5.6": "0", + "2.1.5.7": "0", + "2.1.5.8": "0", + "2.1.5.9": "0", + "2.1.5.10": "0", + "2.1.5.11": "0", + "2.1.5.12": "0", + "2.1.5.13": "0", + "2.1.5.14": "0", + "2.1.5.15": "0", + "2.1.5.16": "0", + "2.1.5.17": "0", + "2.1.5.18": "0", + "2.1.5.19": "0", + "2.1.5.20": "0", + "2.1.5.21": "0", + "2.1.5.22": "0", + "2.1.5.23": "0", + "2.1.5.24": "0", + "2.1.5.25": "0", + "2.1.5.26": "0", + "2.1.5.27": "0", + "2.1.5.28": "0", + "2.1.5.29": "0", + "2.1.5.30": "0", + "2.1.5.31": "0", + "2.1.5.32": "0", + "2.1.5.33": "0", + "2.1.5.34": "0", + "2.1.5.35": "0", + "2.1.5.36": "0", + "2.1.5.37": "0", + "2.1.5.38": "0", + "2.1.5.39": "0", + "2.1.5.40": "0", + "2.1.5.41": "0", + "2.1.5.42": "0", + "2.1.5.43": "0", + "2.1.5.44": "0", + "2.1.5.45": "0", + "2.1.5.46": "0", + "2.1.5.47": "0", + "2.1.5.48": "0", + "2.1.5.49": "0", + "2.1.5.50": "0", + "2.1.5.51": "0", + "2.1.5.52": "0", + "2.1.5.53": "0", + "2.1.5.54": "0", + "2.1.5.55": "0", + "2.1.5.56": "0", + "2.1.5.57": "0", + "2.1.5.58": "0", + "2.1.5.59": "0", + "2.1.5.60": "0", + "2.1.5.61": "0", + "2.1.5.62": "0", + "2.1.5.63": "0", + "2.1.5.64": "0", + "2.1.5.65": "0", + "2.1.5.66": "0", + "2.1.5.67": "0", + "2.1.5.68": "0", + "2.1.5.69": "0", + "2.1.5.70": "0", + "2.1.5.71": "0", + "2.1.5.72": "0", + "2.1.5.73": "0", + "2.1.5.74": "0", + "2.1.5.75": "0", + "2.1.5.76": "0", + "2.1.5.77": "0", + "2.1.5.78": "0", + "2.1.5.79": "0", + "2.1.5.80": "0", + "2.1.5.81": "0", + "2.1.5.82": "0", + "2.1.5.83": "0", + "2.1.5.84": "0", + "2.1.5.85": "0", + "2.1.5.86": "0", + "2.1.5.87": "0", + "2.1.5.88": "0", + "2.1.5.89": "0", + "2.1.5.90": "0", + "2.1.5.91": "0", + "2.1.5.92": "0", + "2.1.5.93": "0", + "2.1.5.94": "0", + "2.1.5.95": "0", + "2.1.5.96": "0", + "2.1.5.97": "0", + "2.1.5.98": "0", + "2.1.5.99": "0", + "2.1.5.100": "0", + "2.1.5.101": "0", + "2.1.5.102": "0", + "2.1.5.103": "0", + "2.1.5.104": "0", + "2.1.5.105": "0", + "2.1.5.106": "0", + "2.1.5.107": "0", + "2.1.5.108": "0", + "2.1.5.109": "0", + "2.1.5.110": "0", + "2.1.5.111": "0", + "2.1.5.112": "0", + "2.1.5.113": "0", + "2.1.5.114": "0", + "2.1.5.115": "0", + "2.1.5.116": "0", + "2.1.5.117": "0", + "2.1.5.118": "0", + "2.1.5.119": "0", + "2.1.5.120": "0", + "2.1.5.121": "0", + "2.1.5.122": "0", + "2.1.5.123": "0", + "2.1.5.124": "0", + "2.1.5.125": "0", + "2.1.5.126": "0", + "2.1.5.127": "0", + "2.1.5.128": "0", + "2.1.5.129": "0", + "2.1.5.130": "0", + "2.1.5.131": "0", + "2.1.5.132": "0", + "2.1.5.133": "0", + "2.1.5.134": "0", + "2.1.5.135": "0", + "2.1.5.136": "0", + "2.1.5.137": "0", + "2.1.5.138": "0", + "2.1.5.139": "0", + "2.1.5.140": "0", + "2.1.5.141": "0", + "2.1.5.142": "0", + "2.1.5.143": "0", + "2.1.5.144": "0", + "2.1.5.145": "0", + "2.1.5.146": "0", + "2.1.5.147": "0", + "2.1.5.148": "0", + "2.1.5.149": "0", + "2.1.5.150": "0", + "2.1.5.151": "0", + "2.1.5.152": "0", + "2.1.5.153": "0", + "2.1.5.154": "0", + "2.1.5.155": "0", + "2.1.5.156": "0", + "2.1.5.157": "0", + "2.1.5.158": "0", + "2.1.5.159": "0", + "2.1.5.160": "0", + "2.1.5.161": "0", + "2.1.5.162": "0", + "2.1.5.163": "0", + "2.1.5.164": "0", + "2.1.5.165": "0", + "2.1.5.166": "0", + "2.1.5.167": "0", + "2.1.5.168": "0", + "2.1.5.169": "0", + "2.1.5.170": "0", + "2.1.5.171": "0", + "2.1.5.172": "0", + "2.1.5.173": "0", + "2.1.5.174": "0", + "2.1.5.175": "0", + "2.1.5.176": "0", + "2.1.5.177": "0", + "2.1.5.178": "0", + "2.1.5.179": "0", + "2.1.5.180": "0", + "2.1.5.181": "0", + "2.1.5.182": "0", + "2.1.5.183": "0", + "2.1.5.184": "0", + "2.1.5.185": "0", + "2.1.5.186": "0", + "2.1.5.187": "0", + "2.1.5.188": "0", + "2.1.5.189": "0", + "2.1.5.190": "0", + "2.1.5.191": "0", + "2.1.5.192": "0", + "2.1.5.193": "0", + "2.1.5.194": "0", + "2.1.5.195": "0", + "2.1.5.196": "0", + "2.1.5.197": "0", + "2.1.5.198": "0", + "2.1.5.199": "0", + "2.1.5.200": "0", + "2.1.5.201": "0", + "2.1.5.202": "0", + "2.1.5.203": "0", + "2.1.5.204": "0", + "2.1.5.205": "0", + "2.1.5.206": "0", + "2.1.5.207": "0", + "2.1.5.208": "0", + "2.1.5.209": "0", + "2.1.5.210": "0", + "2.1.5.211": "0", + "2.1.5.212": "0", + "2.1.5.213": "0", + "2.1.5.214": "0", + "2.1.5.215": "0", + "2.1.5.216": "0", + "2.1.5.217": "0", + "2.1.5.218": "0", + "2.1.5.219": "0", + "2.1.5.220": "0", + "2.1.5.221": "0", + "2.1.5.222": "0", + "2.1.5.223": "0", + "2.1.5.224": "0", + "2.1.5.225": "0", + "2.1.5.226": "0", + "2.1.5.227": "0", + "2.1.5.228": "0", + "2.1.5.229": "0", + "2.1.5.230": "0", + "2.1.5.231": "0", + "2.1.5.232": "0", + "2.1.5.233": "0", + "2.1.5.234": "0", + "2.1.5.235": "0", + "2.1.5.236": "0", + "2.1.5.237": "0", + "2.1.5.238": "0", + "2.1.5.239": "0", + "2.1.5.240": "0", + "2.1.5.241": "0", + "2.1.5.242": "0", + "2.1.5.243": "0", + "2.1.5.244": "0", + "2.1.5.245": "0", + "2.1.5.246": "0", + "2.1.5.247": "0", + "2.1.5.248": "0", + "2.1.5.249": "0", + "2.1.5.250": "0", + "2.1.5.251": "0", + "2.1.5.252": "0", + "2.1.5.253": "0", + "2.1.5.254": "0", + "2.1.5.255": "0", + "2.1.5.256": "0", + "2.1.5.257": "0", + "2.1.5.258": "0", + "2.1.5.259": "0", + "2.1.5.260": "0", + "2.1.5.261": "0", + "2.1.5.262": "0", + "2.1.5.263": "0", + "2.1.5.264": "0", + "2.1.5.265": "0", + "2.1.5.266": "0", + "2.1.5.267": "0", + "2.1.5.268": "0", + "2.1.5.269": "0", + "2.1.5.270": "0", + "2.1.5.271": "0", + "2.1.5.272": "0", + "2.1.5.273": "0", + "2.1.5.274": "0", + "2.1.5.275": "0", + "2.1.5.276": "0", + "2.1.5.277": "0", + "2.1.5.278": "0", + "2.1.5.279": "0", + "2.1.5.280": "0", + "2.1.5.281": "0", + "2.1.5.282": "0", + "2.1.5.283": "0", + "2.1.5.284": "0", + "2.1.5.285": "0", + "2.1.5.286": "0", + "2.1.5.287": "0", + "2.1.5.288": "0", + "2.1.5.289": "0", + "2.1.5.290": "0", + "2.1.5.291": "0", + "2.1.5.292": "0", + "2.1.5.293": "0", + "2.1.5.294": "0", + "2.1.5.295": "0", + "2.1.5.296": "0", + "2.1.5.297": "0", + "2.1.5.298": "0", + "2.1.5.299": "0", + "2.1.5.300": "0", + "2.1.5.301": "0", + "2.1.5.302": "0", + "2.1.5.303": "0", + "2.1.5.304": "0", + "2.1.5.305": "0", + "2.1.5.306": "0", + "2.1.5.307": "0", + "2.1.5.308": "0", + "2.1.5.309": "0", + "2.1.5.310": "0", + "2.1.5.311": "0", + "2.1.5.312": "0", + "2.1.5.313": "0", + "2.1.5.314": "0", + "2.1.5.315": "0", + "2.1.5.316": "0", + "2.1.5.317": "0", + "2.1.5.318": "0", + "2.1.5.319": "0", + "2.1.5.320": "0", + "2.1.5.321": "0", + "2.1.5.322": "0", + "2.1.5.323": "0", + "2.1.5.324": "0", + "2.1.5.325": "0", + "2.1.5.326": "0", + "2.1.5.327": "0", + "2.1.5.328": "0", + "2.1.5.329": "0", + "2.1.5.330": "0", + "2.1.5.331": "0", + "2.1.5.332": "0", + "2.1.5.333": "0", + "2.1.5.334": "0", + "2.1.5.335": "0", + "2.1.5.336": "0", + "2.1.5.337": "0", + "2.1.5.338": "0", + "2.1.5.339": "0", + "2.1.5.340": "0", + "2.1.5.341": "0", + "2.1.5.342": "0", + "2.1.5.343": "0", + "2.1.5.344": "0", + "2.1.5.345": "0", + "2.1.5.346": "0", + "2.1.5.347": "0", + "2.1.5.348": "0", + "2.1.5.349": "0", + "2.1.5.350": "0", + "2.1.5.351": "0", + "2.1.5.352": "0", + "2.1.5.353": "0", + "2.1.5.354": "0", + "2.1.5.355": "0", + "2.1.5.356": "0", + "2.1.5.357": "0", + "2.1.5.358": "0", + "2.1.5.359": "0", + "2.1.5.360": "0", + "2.1.5.361": "0", + "2.1.5.362": "0", + "2.1.5.363": "0", + "2.1.5.364": "0", + "2.1.5.365": "0", + "2.1.5.366": "0", + "2.1.5.367": "0", + "2.1.5.368": "0", + "2.1.5.369": "0", + "2.1.5.370": "0", + "2.1.5.371": "0", + "2.1.5.372": "0", + "2.1.5.373": "0", + "2.1.5.374": "0", + "2.1.5.375": "0", + "2.1.5.376": "0", + "2.1.5.377": "0", + "2.1.5.378": "0", + "2.1.5.379": "0", + "2.1.5.380": "0", + "2.1.5.381": "0", + "2.1.5.382": "0", + "2.1.5.383": "0", + "2.1.5.384": "0", + "2.1.5.385": "0", + "2.1.5.386": "0", + "2.1.5.387": "0", + "2.1.5.388": "0", + "2.1.5.389": "0", + "2.1.5.390": "0", + "2.1.5.391": "0", + "2.1.5.392": "0", + "2.1.5.393": "0", + "2.1.5.394": "0", + "2.1.5.395": "0", + "2.1.5.396": "0", + "2.1.5.397": "0", + "2.1.5.398": "0", + "2.1.5.399": "0", + "2.1.5.400": "0", + "2.1.6.1": "0", + "2.1.6.2": "0", + "2.1.6.3": "0", + "2.1.6.4": "0", + "2.1.6.5": "0", + "2.1.6.6": "13471464", + "2.1.6.7": "0", + "2.1.6.8": "0", + "2.1.6.9": "0", + "2.1.6.10": "0", + "2.1.6.11": "0", + "2.1.6.12": "0", + "2.1.6.13": "0", + "2.1.6.14": "0", + "2.1.6.15": "0", + "2.1.6.16": "0", + "2.1.6.17": "0", + "2.1.6.18": "0", + "2.1.6.19": "0", + "2.1.6.20": "0", + "2.1.6.21": "0", + "2.1.6.22": "0", + "2.1.6.23": "0", + "2.1.6.24": "0", + "2.1.6.25": "0", + "2.1.6.26": "0", + "2.1.6.27": "0", + "2.1.6.28": "0", + "2.1.6.29": "0", + "2.1.6.30": "0", + "2.1.6.31": "0", + "2.1.6.32": "0", + "2.1.6.33": "0", + "2.1.6.34": "0", + "2.1.6.35": "0", + "2.1.6.36": "0", + "2.1.6.37": "0", + "2.1.6.38": "0", + "2.1.6.39": "0", + "2.1.6.40": "0", + "2.1.6.41": "0", + "2.1.6.42": "0", + "2.1.6.43": "0", + "2.1.6.44": "0", + "2.1.6.45": "0", + "2.1.6.46": "0", + "2.1.6.47": "0", + "2.1.6.48": "0", + "2.1.6.49": "0", + "2.1.6.50": "0", + "2.1.6.51": "0", + "2.1.6.52": "0", + "2.1.6.53": "0", + "2.1.6.54": "0", + "2.1.6.55": "0", + "2.1.6.56": "0", + "2.1.6.57": "0", + "2.1.6.58": "0", + "2.1.6.59": "0", + "2.1.6.60": "0", + "2.1.6.61": "0", + "2.1.6.62": "0", + "2.1.6.63": "0", + "2.1.6.64": "0", + "2.1.6.65": "0", + "2.1.6.66": "0", + "2.1.6.67": "0", + "2.1.6.68": "0", + "2.1.6.69": "0", + "2.1.6.70": "0", + "2.1.6.71": "0", + "2.1.6.72": "0", + "2.1.6.73": "0", + "2.1.6.74": "0", + "2.1.6.75": "0", + "2.1.6.76": "0", + "2.1.6.77": "0", + "2.1.6.78": "0", + "2.1.6.79": "0", + "2.1.6.80": "0", + "2.1.6.81": "0", + "2.1.6.82": "0", + "2.1.6.83": "0", + "2.1.6.84": "0", + "2.1.6.85": "0", + "2.1.6.86": "0", + "2.1.6.87": "0", + "2.1.6.88": "0", + "2.1.6.89": "0", + "2.1.6.90": "0", + "2.1.6.91": "0", + "2.1.6.92": "0", + "2.1.6.93": "0", + "2.1.6.94": "0", + "2.1.6.95": "0", + "2.1.6.96": "0", + "2.1.6.97": "0", + "2.1.6.98": "0", + "2.1.6.99": "0", + "2.1.6.100": "0", + "2.1.6.101": "0", + "2.1.6.102": "0", + "2.1.6.103": "0", + "2.1.6.104": "0", + "2.1.6.105": "0", + "2.1.6.106": "0", + "2.1.6.107": "0", + "2.1.6.108": "0", + "2.1.6.109": "0", + "2.1.6.110": "0", + "2.1.6.111": "0", + "2.1.6.112": "0", + "2.1.6.113": "0", + "2.1.6.114": "0", + "2.1.6.115": "0", + "2.1.6.116": "0", + "2.1.6.117": "0", + "2.1.6.118": "0", + "2.1.6.119": "0", + "2.1.6.120": "0", + "2.1.6.121": "0", + "2.1.6.122": "0", + "2.1.6.123": "0", + "2.1.6.124": "0", + "2.1.6.125": "0", + "2.1.6.126": "0", + "2.1.6.127": "0", + "2.1.6.128": "0", + "2.1.6.129": "0", + "2.1.6.130": "0", + "2.1.6.131": "0", + "2.1.6.132": "0", + "2.1.6.133": "0", + "2.1.6.134": "0", + "2.1.6.135": "0", + "2.1.6.136": "0", + "2.1.6.137": "0", + "2.1.6.138": "0", + "2.1.6.139": "0", + "2.1.6.140": "0", + "2.1.6.141": "0", + "2.1.6.142": "0", + "2.1.6.143": "0", + "2.1.6.144": "0", + "2.1.6.145": "0", + "2.1.6.146": "0", + "2.1.6.147": "0", + "2.1.6.148": "0", + "2.1.6.149": "0", + "2.1.6.150": "0", + "2.1.6.151": "0", + "2.1.6.152": "0", + "2.1.6.153": "0", + "2.1.6.154": "0", + "2.1.6.155": "0", + "2.1.6.156": "0", + "2.1.6.157": "0", + "2.1.6.158": "0", + "2.1.6.159": "0", + "2.1.6.160": "0", + "2.1.6.161": "0", + "2.1.6.162": "0", + "2.1.6.163": "0", + "2.1.6.164": "0", + "2.1.6.165": "0", + "2.1.6.166": "0", + "2.1.6.167": "0", + "2.1.6.168": "0", + "2.1.6.169": "0", + "2.1.6.170": "0", + "2.1.6.171": "0", + "2.1.6.172": "0", + "2.1.6.173": "0", + "2.1.6.174": "0", + "2.1.6.175": "0", + "2.1.6.176": "0", + "2.1.6.177": "0", + "2.1.6.178": "0", + "2.1.6.179": "0", + "2.1.6.180": "0", + "2.1.6.181": "0", + "2.1.6.182": "0", + "2.1.6.183": "0", + "2.1.6.184": "0", + "2.1.6.185": "0", + "2.1.6.186": "0", + "2.1.6.187": "0", + "2.1.6.188": "0", + "2.1.6.189": "0", + "2.1.6.190": "0", + "2.1.6.191": "0", + "2.1.6.192": "0", + "2.1.6.193": "0", + "2.1.6.194": "0", + "2.1.6.195": "0", + "2.1.6.196": "0", + "2.1.6.197": "0", + "2.1.6.198": "0", + "2.1.6.199": "0", + "2.1.6.200": "0", + "2.1.6.201": "0", + "2.1.6.202": "0", + "2.1.6.203": "0", + "2.1.6.204": "0", + "2.1.6.205": "0", + "2.1.6.206": "13188308", + "2.1.6.207": "0", + "2.1.6.208": "0", + "2.1.6.209": "0", + "2.1.6.210": "0", + "2.1.6.211": "0", + "2.1.6.212": "0", + "2.1.6.213": "0", + "2.1.6.214": "0", + "2.1.6.215": "0", + "2.1.6.216": "0", + "2.1.6.217": "0", + "2.1.6.218": "0", + "2.1.6.219": "0", + "2.1.6.220": "0", + "2.1.6.221": "0", + "2.1.6.222": "0", + "2.1.6.223": "0", + "2.1.6.224": "0", + "2.1.6.225": "0", + "2.1.6.226": "0", + "2.1.6.227": "0", + "2.1.6.228": "0", + "2.1.6.229": "0", + "2.1.6.230": "0", + "2.1.6.231": "0", + "2.1.6.232": "0", + "2.1.6.233": "0", + "2.1.6.234": "0", + "2.1.6.235": "0", + "2.1.6.236": "0", + "2.1.6.237": "0", + "2.1.6.238": "0", + "2.1.6.239": "0", + "2.1.6.240": "0", + "2.1.6.241": "0", + "2.1.6.242": "0", + "2.1.6.243": "0", + "2.1.6.244": "0", + "2.1.6.245": "0", + "2.1.6.246": "0", + "2.1.6.247": "0", + "2.1.6.248": "0", + "2.1.6.249": "0", + "2.1.6.250": "0", + "2.1.6.251": "0", + "2.1.6.252": "0", + "2.1.6.253": "0", + "2.1.6.254": "0", + "2.1.6.255": "0", + "2.1.6.256": "0", + "2.1.6.257": "0", + "2.1.6.258": "0", + "2.1.6.259": "0", + "2.1.6.260": "0", + "2.1.6.261": "0", + "2.1.6.262": "0", + "2.1.6.263": "0", + "2.1.6.264": "0", + "2.1.6.265": "0", + "2.1.6.266": "0", + "2.1.6.267": "0", + "2.1.6.268": "0", + "2.1.6.269": "0", + "2.1.6.270": "0", + "2.1.6.271": "0", + "2.1.6.272": "0", + "2.1.6.273": "0", + "2.1.6.274": "0", + "2.1.6.275": "0", + "2.1.6.276": "0", + "2.1.6.277": "0", + "2.1.6.278": "0", + "2.1.6.279": "0", + "2.1.6.280": "0", + "2.1.6.281": "0", + "2.1.6.282": "0", + "2.1.6.283": "0", + "2.1.6.284": "0", + "2.1.6.285": "0", + "2.1.6.286": "0", + "2.1.6.287": "0", + "2.1.6.288": "0", + "2.1.6.289": "0", + "2.1.6.290": "0", + "2.1.6.291": "0", + "2.1.6.292": "0", + "2.1.6.293": "0", + "2.1.6.294": "0", + "2.1.6.295": "0", + "2.1.6.296": "0", + "2.1.6.297": "0", + "2.1.6.298": "0", + "2.1.6.299": "0", + "2.1.6.300": "0", + "2.1.6.301": "0", + "2.1.6.302": "0", + "2.1.6.303": "0", + "2.1.6.304": "0", + "2.1.6.305": "0", + "2.1.6.306": "0", + "2.1.6.307": "0", + "2.1.6.308": "0", + "2.1.6.309": "0", + "2.1.6.310": "0", + "2.1.6.311": "0", + "2.1.6.312": "0", + "2.1.6.313": "0", + "2.1.6.314": "0", + "2.1.6.315": "0", + "2.1.6.316": "0", + "2.1.6.317": "0", + "2.1.6.318": "0", + "2.1.6.319": "0", + "2.1.6.320": "0", + "2.1.6.321": "0", + "2.1.6.322": "0", + "2.1.6.323": "0", + "2.1.6.324": "0", + "2.1.6.325": "0", + "2.1.6.326": "0", + "2.1.6.327": "0", + "2.1.6.328": "0", + "2.1.6.329": "0", + "2.1.6.330": "0", + "2.1.6.331": "0", + "2.1.6.332": "0", + "2.1.6.333": "0", + "2.1.6.334": "0", + "2.1.6.335": "0", + "2.1.6.336": "0", + "2.1.6.337": "0", + "2.1.6.338": "0", + "2.1.6.339": "0", + "2.1.6.340": "0", + "2.1.6.341": "0", + "2.1.6.342": "0", + "2.1.6.343": "0", + "2.1.6.344": "0", + "2.1.6.345": "0", + "2.1.6.346": "0", + "2.1.6.347": "0", + "2.1.6.348": "0", + "2.1.6.349": "0", + "2.1.6.350": "0", + "2.1.6.351": "0", + "2.1.6.352": "0", + "2.1.6.353": "0", + "2.1.6.354": "0", + "2.1.6.355": "0", + "2.1.6.356": "0", + "2.1.6.357": "0", + "2.1.6.358": "0", + "2.1.6.359": "0", + "2.1.6.360": "0", + "2.1.6.361": "0", + "2.1.6.362": "0", + "2.1.6.363": "0", + "2.1.6.364": "0", + "2.1.6.365": "0", + "2.1.6.366": "0", + "2.1.6.367": "0", + "2.1.6.368": "0", + "2.1.6.369": "0", + "2.1.6.370": "0", + "2.1.6.371": "0", + "2.1.6.372": "0", + "2.1.6.373": "0", + "2.1.6.374": "0", + "2.1.6.375": "0", + "2.1.6.376": "0", + "2.1.6.377": "0", + "2.1.6.378": "0", + "2.1.6.379": "0", + "2.1.6.380": "0", + "2.1.6.381": "0", + "2.1.6.382": "0", + "2.1.6.383": "0", + "2.1.6.384": "0", + "2.1.6.385": "0", + "2.1.6.386": "0", + "2.1.6.387": "0", + "2.1.6.388": "0", + "2.1.6.389": "0", + "2.1.6.390": "0", + "2.1.6.391": "0", + "2.1.6.392": "0", + "2.1.6.393": "0", + "2.1.6.394": "0", + "2.1.6.395": "0", + "2.1.6.396": "0", + "2.1.6.397": "0", + "2.1.6.398": "0", + "2.1.6.399": "0", + "2.1.6.400": "0", + "2.1.7.1": "0", + "2.1.7.2": "0", + "2.1.7.3": "0", + "2.1.7.4": "0", + "2.1.7.5": "0", + "2.1.7.6": "4000629177", + "2.1.7.7": "0", + "2.1.7.8": "0", + "2.1.7.9": "0", + "2.1.7.10": "0", + "2.1.7.11": "0", + "2.1.7.12": "0", + "2.1.7.13": "0", + "2.1.7.14": "0", + "2.1.7.15": "0", + "2.1.7.16": "0", + "2.1.7.17": "0", + "2.1.7.18": "0", + "2.1.7.19": "0", + "2.1.7.20": "0", + "2.1.7.21": "0", + "2.1.7.22": "0", + "2.1.7.23": "0", + "2.1.7.24": "0", + "2.1.7.25": "0", + "2.1.7.26": "0", + "2.1.7.27": "0", + "2.1.7.28": "0", + "2.1.7.29": "0", + "2.1.7.30": "0", + "2.1.7.31": "0", + "2.1.7.32": "0", + "2.1.7.33": "0", + "2.1.7.34": "0", + "2.1.7.35": "0", + "2.1.7.36": "0", + "2.1.7.37": "0", + "2.1.7.38": "0", + "2.1.7.39": "0", + "2.1.7.40": "0", + "2.1.7.41": "0", + "2.1.7.42": "0", + "2.1.7.43": "0", + "2.1.7.44": "0", + "2.1.7.45": "0", + "2.1.7.46": "0", + "2.1.7.47": "0", + "2.1.7.48": "0", + "2.1.7.49": "0", + "2.1.7.50": "0", + "2.1.7.51": "0", + "2.1.7.52": "0", + "2.1.7.53": "0", + "2.1.7.54": "0", + "2.1.7.55": "0", + "2.1.7.56": "0", + "2.1.7.57": "0", + "2.1.7.58": "0", + "2.1.7.59": "0", + "2.1.7.60": "0", + "2.1.7.61": "0", + "2.1.7.62": "0", + "2.1.7.63": "0", + "2.1.7.64": "0", + "2.1.7.65": "0", + "2.1.7.66": "0", + "2.1.7.67": "0", + "2.1.7.68": "0", + "2.1.7.69": "0", + "2.1.7.70": "0", + "2.1.7.71": "0", + "2.1.7.72": "0", + "2.1.7.73": "0", + "2.1.7.74": "0", + "2.1.7.75": "0", + "2.1.7.76": "0", + "2.1.7.77": "0", + "2.1.7.78": "0", + "2.1.7.79": "0", + "2.1.7.80": "0", + "2.1.7.81": "0", + "2.1.7.82": "0", + "2.1.7.83": "0", + "2.1.7.84": "0", + "2.1.7.85": "0", + "2.1.7.86": "0", + "2.1.7.87": "0", + "2.1.7.88": "0", + "2.1.7.89": "0", + "2.1.7.90": "0", + "2.1.7.91": "0", + "2.1.7.92": "0", + "2.1.7.93": "0", + "2.1.7.94": "0", + "2.1.7.95": "0", + "2.1.7.96": "0", + "2.1.7.97": "0", + "2.1.7.98": "0", + "2.1.7.99": "0", + "2.1.7.100": "0", + "2.1.7.101": "0", + "2.1.7.102": "0", + "2.1.7.103": "0", + "2.1.7.104": "0", + "2.1.7.105": "0", + "2.1.7.106": "0", + "2.1.7.107": "0", + "2.1.7.108": "0", + "2.1.7.109": "0", + "2.1.7.110": "0", + "2.1.7.111": "0", + "2.1.7.112": "0", + "2.1.7.113": "0", + "2.1.7.114": "0", + "2.1.7.115": "0", + "2.1.7.116": "0", + "2.1.7.117": "0", + "2.1.7.118": "0", + "2.1.7.119": "0", + "2.1.7.120": "0", + "2.1.7.121": "0", + "2.1.7.122": "0", + "2.1.7.123": "0", + "2.1.7.124": "0", + "2.1.7.125": "0", + "2.1.7.126": "0", + "2.1.7.127": "0", + "2.1.7.128": "0", + "2.1.7.129": "0", + "2.1.7.130": "0", + "2.1.7.131": "0", + "2.1.7.132": "0", + "2.1.7.133": "0", + "2.1.7.134": "0", + "2.1.7.135": "0", + "2.1.7.136": "0", + "2.1.7.137": "0", + "2.1.7.138": "0", + "2.1.7.139": "0", + "2.1.7.140": "0", + "2.1.7.141": "0", + "2.1.7.142": "0", + "2.1.7.143": "0", + "2.1.7.144": "0", + "2.1.7.145": "0", + "2.1.7.146": "0", + "2.1.7.147": "0", + "2.1.7.148": "0", + "2.1.7.149": "0", + "2.1.7.150": "0", + "2.1.7.151": "0", + "2.1.7.152": "0", + "2.1.7.153": "0", + "2.1.7.154": "0", + "2.1.7.155": "0", + "2.1.7.156": "0", + "2.1.7.157": "0", + "2.1.7.158": "0", + "2.1.7.159": "0", + "2.1.7.160": "0", + "2.1.7.161": "0", + "2.1.7.162": "0", + "2.1.7.163": "0", + "2.1.7.164": "0", + "2.1.7.165": "0", + "2.1.7.166": "0", + "2.1.7.167": "0", + "2.1.7.168": "0", + "2.1.7.169": "0", + "2.1.7.170": "0", + "2.1.7.171": "0", + "2.1.7.172": "0", + "2.1.7.173": "0", + "2.1.7.174": "0", + "2.1.7.175": "0", + "2.1.7.176": "0", + "2.1.7.177": "0", + "2.1.7.178": "0", + "2.1.7.179": "0", + "2.1.7.180": "0", + "2.1.7.181": "0", + "2.1.7.182": "0", + "2.1.7.183": "0", + "2.1.7.184": "0", + "2.1.7.185": "0", + "2.1.7.186": "0", + "2.1.7.187": "0", + "2.1.7.188": "0", + "2.1.7.189": "0", + "2.1.7.190": "0", + "2.1.7.191": "0", + "2.1.7.192": "0", + "2.1.7.193": "0", + "2.1.7.194": "0", + "2.1.7.195": "0", + "2.1.7.196": "0", + "2.1.7.197": "0", + "2.1.7.198": "0", + "2.1.7.199": "0", + "2.1.7.200": "0", + "2.1.7.201": "0", + "2.1.7.202": "0", + "2.1.7.203": "0", + "2.1.7.204": "0", + "2.1.7.205": "0", + "2.1.7.206": "1952795763", + "2.1.7.207": "0", + "2.1.7.208": "0", + "2.1.7.209": "0", + "2.1.7.210": "0", + "2.1.7.211": "0", + "2.1.7.212": "0", + "2.1.7.213": "0", + "2.1.7.214": "0", + "2.1.7.215": "0", + "2.1.7.216": "0", + "2.1.7.217": "0", + "2.1.7.218": "0", + "2.1.7.219": "0", + "2.1.7.220": "0", + "2.1.7.221": "0", + "2.1.7.222": "0", + "2.1.7.223": "0", + "2.1.7.224": "0", + "2.1.7.225": "0", + "2.1.7.226": "0", + "2.1.7.227": "0", + "2.1.7.228": "0", + "2.1.7.229": "0", + "2.1.7.230": "0", + "2.1.7.231": "0", + "2.1.7.232": "0", + "2.1.7.233": "0", + "2.1.7.234": "0", + "2.1.7.235": "0", + "2.1.7.236": "0", + "2.1.7.237": "0", + "2.1.7.238": "0", + "2.1.7.239": "0", + "2.1.7.240": "0", + "2.1.7.241": "0", + "2.1.7.242": "0", + "2.1.7.243": "0", + "2.1.7.244": "0", + "2.1.7.245": "0", + "2.1.7.246": "0", + "2.1.7.247": "0", + "2.1.7.248": "0", + "2.1.7.249": "0", + "2.1.7.250": "0", + "2.1.7.251": "0", + "2.1.7.252": "0", + "2.1.7.253": "0", + "2.1.7.254": "0", + "2.1.7.255": "0", + "2.1.7.256": "0", + "2.1.7.257": "0", + "2.1.7.258": "0", + "2.1.7.259": "0", + "2.1.7.260": "0", + "2.1.7.261": "0", + "2.1.7.262": "0", + "2.1.7.263": "0", + "2.1.7.264": "0", + "2.1.7.265": "0", + "2.1.7.266": "0", + "2.1.7.267": "0", + "2.1.7.268": "0", + "2.1.7.269": "0", + "2.1.7.270": "0", + "2.1.7.271": "0", + "2.1.7.272": "0", + "2.1.7.273": "0", + "2.1.7.274": "0", + "2.1.7.275": "0", + "2.1.7.276": "0", + "2.1.7.277": "0", + "2.1.7.278": "0", + "2.1.7.279": "0", + "2.1.7.280": "0", + "2.1.7.281": "0", + "2.1.7.282": "0", + "2.1.7.283": "0", + "2.1.7.284": "0", + "2.1.7.285": "0", + "2.1.7.286": "0", + "2.1.7.287": "0", + "2.1.7.288": "0", + "2.1.7.289": "0", + "2.1.7.290": "0", + "2.1.7.291": "0", + "2.1.7.292": "0", + "2.1.7.293": "0", + "2.1.7.294": "0", + "2.1.7.295": "0", + "2.1.7.296": "0", + "2.1.7.297": "0", + "2.1.7.298": "0", + "2.1.7.299": "0", + "2.1.7.300": "0", + "2.1.7.301": "0", + "2.1.7.302": "0", + "2.1.7.303": "0", + "2.1.7.304": "0", + "2.1.7.305": "0", + "2.1.7.306": "0", + "2.1.7.307": "0", + "2.1.7.308": "0", + "2.1.7.309": "0", + "2.1.7.310": "0", + "2.1.7.311": "0", + "2.1.7.312": "0", + "2.1.7.313": "0", + "2.1.7.314": "0", + "2.1.7.315": "0", + "2.1.7.316": "0", + "2.1.7.317": "0", + "2.1.7.318": "0", + "2.1.7.319": "0", + "2.1.7.320": "0", + "2.1.7.321": "0", + "2.1.7.322": "0", + "2.1.7.323": "0", + "2.1.7.324": "0", + "2.1.7.325": "0", + "2.1.7.326": "0", + "2.1.7.327": "0", + "2.1.7.328": "0", + "2.1.7.329": "0", + "2.1.7.330": "0", + "2.1.7.331": "0", + "2.1.7.332": "0", + "2.1.7.333": "0", + "2.1.7.334": "0", + "2.1.7.335": "0", + "2.1.7.336": "0", + "2.1.7.337": "0", + "2.1.7.338": "0", + "2.1.7.339": "0", + "2.1.7.340": "0", + "2.1.7.341": "0", + "2.1.7.342": "0", + "2.1.7.343": "0", + "2.1.7.344": "0", + "2.1.7.345": "0", + "2.1.7.346": "0", + "2.1.7.347": "0", + "2.1.7.348": "0", + "2.1.7.349": "0", + "2.1.7.350": "0", + "2.1.7.351": "0", + "2.1.7.352": "0", + "2.1.7.353": "0", + "2.1.7.354": "0", + "2.1.7.355": "0", + "2.1.7.356": "0", + "2.1.7.357": "0", + "2.1.7.358": "0", + "2.1.7.359": "0", + "2.1.7.360": "0", + "2.1.7.361": "0", + "2.1.7.362": "0", + "2.1.7.363": "0", + "2.1.7.364": "0", + "2.1.7.365": "0", + "2.1.7.366": "0", + "2.1.7.367": "0", + "2.1.7.368": "0", + "2.1.7.369": "0", + "2.1.7.370": "0", + "2.1.7.371": "0", + "2.1.7.372": "0", + "2.1.7.373": "0", + "2.1.7.374": "0", + "2.1.7.375": "0", + "2.1.7.376": "0", + "2.1.7.377": "0", + "2.1.7.378": "0", + "2.1.7.379": "0", + "2.1.7.380": "0", + "2.1.7.381": "0", + "2.1.7.382": "0", + "2.1.7.383": "0", + "2.1.7.384": "0", + "2.1.7.385": "0", + "2.1.7.386": "0", + "2.1.7.387": "0", + "2.1.7.388": "0", + "2.1.7.389": "0", + "2.1.7.390": "0", + "2.1.7.391": "0", + "2.1.7.392": "0", + "2.1.7.393": "0", + "2.1.7.394": "0", + "2.1.7.395": "0", + "2.1.7.396": "0", + "2.1.7.397": "0", + "2.1.7.398": "0", + "2.1.7.399": "0", + "2.1.7.400": "0", + "2.1.8.1": "0", + "2.1.8.2": "0", + "2.1.8.3": "0", + "2.1.8.4": "0", + "2.1.8.5": "0", + "2.1.8.6": "2", + "2.1.8.7": "0", + "2.1.8.8": "0", + "2.1.8.9": "0", + "2.1.8.10": "0", + "2.1.8.11": "0", + "2.1.8.12": "0", + "2.1.8.13": "0", + "2.1.8.14": "0", + "2.1.8.15": "0", + "2.1.8.16": "0", + "2.1.8.17": "0", + "2.1.8.18": "0", + "2.1.8.19": "0", + "2.1.8.20": "0", + "2.1.8.21": "0", + "2.1.8.22": "0", + "2.1.8.23": "0", + "2.1.8.24": "0", + "2.1.8.25": "0", + "2.1.8.26": "0", + "2.1.8.27": "0", + "2.1.8.28": "0", + "2.1.8.29": "0", + "2.1.8.30": "0", + "2.1.8.31": "0", + "2.1.8.32": "0", + "2.1.8.33": "0", + "2.1.8.34": "0", + "2.1.8.35": "0", + "2.1.8.36": "0", + "2.1.8.37": "0", + "2.1.8.38": "0", + "2.1.8.39": "0", + "2.1.8.40": "0", + "2.1.8.41": "0", + "2.1.8.42": "0", + "2.1.8.43": "0", + "2.1.8.44": "0", + "2.1.8.45": "0", + "2.1.8.46": "0", + "2.1.8.47": "0", + "2.1.8.48": "0", + "2.1.8.49": "0", + "2.1.8.50": "0", + "2.1.8.51": "0", + "2.1.8.52": "0", + "2.1.8.53": "0", + "2.1.8.54": "0", + "2.1.8.55": "0", + "2.1.8.56": "0", + "2.1.8.57": "0", + "2.1.8.58": "0", + "2.1.8.59": "0", + "2.1.8.60": "0", + "2.1.8.61": "0", + "2.1.8.62": "0", + "2.1.8.63": "0", + "2.1.8.64": "0", + "2.1.8.65": "0", + "2.1.8.66": "0", + "2.1.8.67": "0", + "2.1.8.68": "0", + "2.1.8.69": "0", + "2.1.8.70": "0", + "2.1.8.71": "0", + "2.1.8.72": "0", + "2.1.8.73": "0", + "2.1.8.74": "0", + "2.1.8.75": "0", + "2.1.8.76": "0", + "2.1.8.77": "0", + "2.1.8.78": "0", + "2.1.8.79": "0", + "2.1.8.80": "0", + "2.1.8.81": "0", + "2.1.8.82": "0", + "2.1.8.83": "0", + "2.1.8.84": "0", + "2.1.8.85": "0", + "2.1.8.86": "0", + "2.1.8.87": "0", + "2.1.8.88": "0", + "2.1.8.89": "0", + "2.1.8.90": "0", + "2.1.8.91": "0", + "2.1.8.92": "0", + "2.1.8.93": "0", + "2.1.8.94": "0", + "2.1.8.95": "0", + "2.1.8.96": "0", + "2.1.8.97": "0", + "2.1.8.98": "0", + "2.1.8.99": "0", + "2.1.8.100": "0", + "2.1.8.101": "0", + "2.1.8.102": "0", + "2.1.8.103": "0", + "2.1.8.104": "0", + "2.1.8.105": "0", + "2.1.8.106": "0", + "2.1.8.107": "0", + "2.1.8.108": "0", + "2.1.8.109": "0", + "2.1.8.110": "0", + "2.1.8.111": "0", + "2.1.8.112": "0", + "2.1.8.113": "0", + "2.1.8.114": "0", + "2.1.8.115": "0", + "2.1.8.116": "0", + "2.1.8.117": "0", + "2.1.8.118": "0", + "2.1.8.119": "0", + "2.1.8.120": "0", + "2.1.8.121": "0", + "2.1.8.122": "0", + "2.1.8.123": "0", + "2.1.8.124": "0", + "2.1.8.125": "0", + "2.1.8.126": "0", + "2.1.8.127": "0", + "2.1.8.128": "0", + "2.1.8.129": "0", + "2.1.8.130": "0", + "2.1.8.131": "0", + "2.1.8.132": "0", + "2.1.8.133": "0", + "2.1.8.134": "0", + "2.1.8.135": "0", + "2.1.8.136": "0", + "2.1.8.137": "0", + "2.1.8.138": "0", + "2.1.8.139": "0", + "2.1.8.140": "0", + "2.1.8.141": "0", + "2.1.8.142": "0", + "2.1.8.143": "0", + "2.1.8.144": "0", + "2.1.8.145": "0", + "2.1.8.146": "0", + "2.1.8.147": "0", + "2.1.8.148": "0", + "2.1.8.149": "0", + "2.1.8.150": "0", + "2.1.8.151": "0", + "2.1.8.152": "0", + "2.1.8.153": "0", + "2.1.8.154": "0", + "2.1.8.155": "0", + "2.1.8.156": "0", + "2.1.8.157": "0", + "2.1.8.158": "0", + "2.1.8.159": "0", + "2.1.8.160": "0", + "2.1.8.161": "0", + "2.1.8.162": "0", + "2.1.8.163": "0", + "2.1.8.164": "0", + "2.1.8.165": "0", + "2.1.8.166": "0", + "2.1.8.167": "0", + "2.1.8.168": "0", + "2.1.8.169": "0", + "2.1.8.170": "0", + "2.1.8.171": "0", + "2.1.8.172": "0", + "2.1.8.173": "0", + "2.1.8.174": "0", + "2.1.8.175": "0", + "2.1.8.176": "0", + "2.1.8.177": "0", + "2.1.8.178": "0", + "2.1.8.179": "0", + "2.1.8.180": "0", + "2.1.8.181": "0", + "2.1.8.182": "0", + "2.1.8.183": "0", + "2.1.8.184": "0", + "2.1.8.185": "0", + "2.1.8.186": "0", + "2.1.8.187": "0", + "2.1.8.188": "0", + "2.1.8.189": "0", + "2.1.8.190": "0", + "2.1.8.191": "0", + "2.1.8.192": "0", + "2.1.8.193": "0", + "2.1.8.194": "0", + "2.1.8.195": "0", + "2.1.8.196": "0", + "2.1.8.197": "0", + "2.1.8.198": "0", + "2.1.8.199": "0", + "2.1.8.200": "0", + "2.1.8.201": "0", + "2.1.8.202": "0", + "2.1.8.203": "0", + "2.1.8.204": "0", + "2.1.8.205": "0", + "2.1.8.206": "3", + "2.1.8.207": "0", + "2.1.8.208": "0", + "2.1.8.209": "0", + "2.1.8.210": "0", + "2.1.8.211": "0", + "2.1.8.212": "0", + "2.1.8.213": "0", + "2.1.8.214": "0", + "2.1.8.215": "0", + "2.1.8.216": "0", + "2.1.8.217": "0", + "2.1.8.218": "0", + "2.1.8.219": "0", + "2.1.8.220": "0", + "2.1.8.221": "0", + "2.1.8.222": "0", + "2.1.8.223": "0", + "2.1.8.224": "0", + "2.1.8.225": "0", + "2.1.8.226": "0", + "2.1.8.227": "0", + "2.1.8.228": "0", + "2.1.8.229": "0", + "2.1.8.230": "0", + "2.1.8.231": "0", + "2.1.8.232": "0", + "2.1.8.233": "0", + "2.1.8.234": "0", + "2.1.8.235": "0", + "2.1.8.236": "0", + "2.1.8.237": "0", + "2.1.8.238": "0", + "2.1.8.239": "0", + "2.1.8.240": "0", + "2.1.8.241": "0", + "2.1.8.242": "0", + "2.1.8.243": "0", + "2.1.8.244": "0", + "2.1.8.245": "0", + "2.1.8.246": "0", + "2.1.8.247": "0", + "2.1.8.248": "0", + "2.1.8.249": "0", + "2.1.8.250": "0", + "2.1.8.251": "0", + "2.1.8.252": "0", + "2.1.8.253": "0", + "2.1.8.254": "0", + "2.1.8.255": "0", + "2.1.8.256": "0", + "2.1.8.257": "0", + "2.1.8.258": "0", + "2.1.8.259": "0", + "2.1.8.260": "0", + "2.1.8.261": "0", + "2.1.8.262": "0", + "2.1.8.263": "0", + "2.1.8.264": "0", + "2.1.8.265": "0", + "2.1.8.266": "0", + "2.1.8.267": "0", + "2.1.8.268": "0", + "2.1.8.269": "0", + "2.1.8.270": "0", + "2.1.8.271": "0", + "2.1.8.272": "0", + "2.1.8.273": "0", + "2.1.8.274": "0", + "2.1.8.275": "0", + "2.1.8.276": "0", + "2.1.8.277": "0", + "2.1.8.278": "0", + "2.1.8.279": "0", + "2.1.8.280": "0", + "2.1.8.281": "0", + "2.1.8.282": "0", + "2.1.8.283": "0", + "2.1.8.284": "0", + "2.1.8.285": "0", + "2.1.8.286": "0", + "2.1.8.287": "0", + "2.1.8.288": "0", + "2.1.8.289": "0", + "2.1.8.290": "0", + "2.1.8.291": "0", + "2.1.8.292": "0", + "2.1.8.293": "0", + "2.1.8.294": "0", + "2.1.8.295": "0", + "2.1.8.296": "0", + "2.1.8.297": "0", + "2.1.8.298": "0", + "2.1.8.299": "0", + "2.1.8.300": "0", + "2.1.8.301": "0", + "2.1.8.302": "0", + "2.1.8.303": "0", + "2.1.8.304": "0", + "2.1.8.305": "0", + "2.1.8.306": "0", + "2.1.8.307": "0", + "2.1.8.308": "0", + "2.1.8.309": "0", + "2.1.8.310": "0", + "2.1.8.311": "0", + "2.1.8.312": "0", + "2.1.8.313": "0", + "2.1.8.314": "0", + "2.1.8.315": "0", + "2.1.8.316": "0", + "2.1.8.317": "0", + "2.1.8.318": "0", + "2.1.8.319": "0", + "2.1.8.320": "0", + "2.1.8.321": "0", + "2.1.8.322": "0", + "2.1.8.323": "0", + "2.1.8.324": "0", + "2.1.8.325": "0", + "2.1.8.326": "0", + "2.1.8.327": "0", + "2.1.8.328": "0", + "2.1.8.329": "0", + "2.1.8.330": "0", + "2.1.8.331": "0", + "2.1.8.332": "0", + "2.1.8.333": "0", + "2.1.8.334": "0", + "2.1.8.335": "0", + "2.1.8.336": "0", + "2.1.8.337": "0", + "2.1.8.338": "0", + "2.1.8.339": "0", + "2.1.8.340": "0", + "2.1.8.341": "0", + "2.1.8.342": "0", + "2.1.8.343": "0", + "2.1.8.344": "0", + "2.1.8.345": "0", + "2.1.8.346": "0", + "2.1.8.347": "0", + "2.1.8.348": "0", + "2.1.8.349": "0", + "2.1.8.350": "0", + "2.1.8.351": "0", + "2.1.8.352": "0", + "2.1.8.353": "0", + "2.1.8.354": "0", + "2.1.8.355": "0", + "2.1.8.356": "0", + "2.1.8.357": "0", + "2.1.8.358": "0", + "2.1.8.359": "0", + "2.1.8.360": "0", + "2.1.8.361": "0", + "2.1.8.362": "0", + "2.1.8.363": "0", + "2.1.8.364": "0", + "2.1.8.365": "0", + "2.1.8.366": "0", + "2.1.8.367": "0", + "2.1.8.368": "0", + "2.1.8.369": "0", + "2.1.8.370": "0", + "2.1.8.371": "0", + "2.1.8.372": "0", + "2.1.8.373": "0", + "2.1.8.374": "0", + "2.1.8.375": "0", + "2.1.8.376": "0", + "2.1.8.377": "0", + "2.1.8.378": "0", + "2.1.8.379": "0", + "2.1.8.380": "0", + "2.1.8.381": "0", + "2.1.8.382": "0", + "2.1.8.383": "0", + "2.1.8.384": "0", + "2.1.8.385": "0", + "2.1.8.386": "0", + "2.1.8.387": "0", + "2.1.8.388": "0", + "2.1.8.389": "0", + "2.1.8.390": "0", + "2.1.8.391": "0", + "2.1.8.392": "0", + "2.1.8.393": "0", + "2.1.8.394": "0", + "2.1.8.395": "0", + "2.1.8.396": "0", + "2.1.8.397": "0", + "2.1.8.398": "0", + "2.1.8.399": "0", + "2.1.8.400": "0", + "2.1.9.1": "0", + "2.1.9.2": "0", + "2.1.9.3": "0", + "2.1.9.4": "0", + "2.1.9.5": "0", + "2.1.9.6": "12590563769", + "2.1.9.7": "0", + "2.1.9.8": "0", + "2.1.9.9": "0", + "2.1.9.10": "0", + "2.1.9.11": "0", + "2.1.9.12": "0", + "2.1.9.13": "0", + "2.1.9.14": "0", + "2.1.9.15": "0", + "2.1.9.16": "0", + "2.1.9.17": "0", + "2.1.9.18": "0", + "2.1.9.19": "0", + "2.1.9.20": "0", + "2.1.9.21": "0", + "2.1.9.22": "0", + "2.1.9.23": "0", + "2.1.9.24": "0", + "2.1.9.25": "0", + "2.1.9.26": "0", + "2.1.9.27": "0", + "2.1.9.28": "0", + "2.1.9.29": "0", + "2.1.9.30": "0", + "2.1.9.31": "0", + "2.1.9.32": "0", + "2.1.9.33": "0", + "2.1.9.34": "0", + "2.1.9.35": "0", + "2.1.9.36": "0", + "2.1.9.37": "0", + "2.1.9.38": "0", + "2.1.9.39": "0", + "2.1.9.40": "0", + "2.1.9.41": "0", + "2.1.9.42": "0", + "2.1.9.43": "0", + "2.1.9.44": "0", + "2.1.9.45": "0", + "2.1.9.46": "0", + "2.1.9.47": "0", + "2.1.9.48": "0", + "2.1.9.49": "0", + "2.1.9.50": "0", + "2.1.9.51": "0", + "2.1.9.52": "0", + "2.1.9.53": "0", + "2.1.9.54": "0", + "2.1.9.55": "0", + "2.1.9.56": "0", + "2.1.9.57": "0", + "2.1.9.58": "0", + "2.1.9.59": "0", + "2.1.9.60": "0", + "2.1.9.61": "0", + "2.1.9.62": "0", + "2.1.9.63": "0", + "2.1.9.64": "0", + "2.1.9.65": "0", + "2.1.9.66": "0", + "2.1.9.67": "0", + "2.1.9.68": "0", + "2.1.9.69": "0", + "2.1.9.70": "0", + "2.1.9.71": "0", + "2.1.9.72": "0", + "2.1.9.73": "0", + "2.1.9.74": "0", + "2.1.9.75": "0", + "2.1.9.76": "0", + "2.1.9.77": "0", + "2.1.9.78": "0", + "2.1.9.79": "0", + "2.1.9.80": "0", + "2.1.9.81": "0", + "2.1.9.82": "0", + "2.1.9.83": "0", + "2.1.9.84": "0", + "2.1.9.85": "0", + "2.1.9.86": "0", + "2.1.9.87": "0", + "2.1.9.88": "0", + "2.1.9.89": "0", + "2.1.9.90": "0", + "2.1.9.91": "0", + "2.1.9.92": "0", + "2.1.9.93": "0", + "2.1.9.94": "0", + "2.1.9.95": "0", + "2.1.9.96": "0", + "2.1.9.97": "0", + "2.1.9.98": "0", + "2.1.9.99": "0", + "2.1.9.100": "0", + "2.1.9.101": "0", + "2.1.9.102": "0", + "2.1.9.103": "0", + "2.1.9.104": "0", + "2.1.9.105": "0", + "2.1.9.106": "0", + "2.1.9.107": "0", + "2.1.9.108": "0", + "2.1.9.109": "0", + "2.1.9.110": "0", + "2.1.9.111": "0", + "2.1.9.112": "0", + "2.1.9.113": "0", + "2.1.9.114": "0", + "2.1.9.115": "0", + "2.1.9.116": "0", + "2.1.9.117": "0", + "2.1.9.118": "0", + "2.1.9.119": "0", + "2.1.9.120": "0", + "2.1.9.121": "0", + "2.1.9.122": "0", + "2.1.9.123": "0", + "2.1.9.124": "0", + "2.1.9.125": "0", + "2.1.9.126": "0", + "2.1.9.127": "0", + "2.1.9.128": "0", + "2.1.9.129": "0", + "2.1.9.130": "0", + "2.1.9.131": "0", + "2.1.9.132": "0", + "2.1.9.133": "0", + "2.1.9.134": "0", + "2.1.9.135": "0", + "2.1.9.136": "0", + "2.1.9.137": "0", + "2.1.9.138": "0", + "2.1.9.139": "0", + "2.1.9.140": "0", + "2.1.9.141": "0", + "2.1.9.142": "0", + "2.1.9.143": "0", + "2.1.9.144": "0", + "2.1.9.145": "0", + "2.1.9.146": "0", + "2.1.9.147": "0", + "2.1.9.148": "0", + "2.1.9.149": "0", + "2.1.9.150": "0", + "2.1.9.151": "0", + "2.1.9.152": "0", + "2.1.9.153": "0", + "2.1.9.154": "0", + "2.1.9.155": "0", + "2.1.9.156": "0", + "2.1.9.157": "0", + "2.1.9.158": "0", + "2.1.9.159": "0", + "2.1.9.160": "0", + "2.1.9.161": "0", + "2.1.9.162": "0", + "2.1.9.163": "0", + "2.1.9.164": "0", + "2.1.9.165": "0", + "2.1.9.166": "0", + "2.1.9.167": "0", + "2.1.9.168": "0", + "2.1.9.169": "0", + "2.1.9.170": "0", + "2.1.9.171": "0", + "2.1.9.172": "0", + "2.1.9.173": "0", + "2.1.9.174": "0", + "2.1.9.175": "0", + "2.1.9.176": "0", + "2.1.9.177": "0", + "2.1.9.178": "0", + "2.1.9.179": "0", + "2.1.9.180": "0", + "2.1.9.181": "0", + "2.1.9.182": "0", + "2.1.9.183": "0", + "2.1.9.184": "0", + "2.1.9.185": "0", + "2.1.9.186": "0", + "2.1.9.187": "0", + "2.1.9.188": "0", + "2.1.9.189": "0", + "2.1.9.190": "0", + "2.1.9.191": "0", + "2.1.9.192": "0", + "2.1.9.193": "0", + "2.1.9.194": "0", + "2.1.9.195": "0", + "2.1.9.196": "0", + "2.1.9.197": "0", + "2.1.9.198": "0", + "2.1.9.199": "0", + "2.1.9.200": "0", + "2.1.9.201": "0", + "2.1.9.202": "0", + "2.1.9.203": "0", + "2.1.9.204": "0", + "2.1.9.205": "0", + "2.1.9.206": "14837697651", + "2.1.9.207": "0", + "2.1.9.208": "0", + "2.1.9.209": "0", + "2.1.9.210": "0", + "2.1.9.211": "0", + "2.1.9.212": "0", + "2.1.9.213": "0", + "2.1.9.214": "0", + "2.1.9.215": "0", + "2.1.9.216": "0", + "2.1.9.217": "0", + "2.1.9.218": "0", + "2.1.9.219": "0", + "2.1.9.220": "0", + "2.1.9.221": "0", + "2.1.9.222": "0", + "2.1.9.223": "0", + "2.1.9.224": "0", + "2.1.9.225": "0", + "2.1.9.226": "0", + "2.1.9.227": "0", + "2.1.9.228": "0", + "2.1.9.229": "0", + "2.1.9.230": "0", + "2.1.9.231": "0", + "2.1.9.232": "0", + "2.1.9.233": "0", + "2.1.9.234": "0", + "2.1.9.235": "0", + "2.1.9.236": "0", + "2.1.9.237": "0", + "2.1.9.238": "0", + "2.1.9.239": "0", + "2.1.9.240": "0", + "2.1.9.241": "0", + "2.1.9.242": "0", + "2.1.9.243": "0", + "2.1.9.244": "0", + "2.1.9.245": "0", + "2.1.9.246": "0", + "2.1.9.247": "0", + "2.1.9.248": "0", + "2.1.9.249": "0", + "2.1.9.250": "0", + "2.1.9.251": "0", + "2.1.9.252": "0", + "2.1.9.253": "0", + "2.1.9.254": "0", + "2.1.9.255": "0", + "2.1.9.256": "0", + "2.1.9.257": "0", + "2.1.9.258": "0", + "2.1.9.259": "0", + "2.1.9.260": "0", + "2.1.9.261": "0", + "2.1.9.262": "0", + "2.1.9.263": "0", + "2.1.9.264": "0", + "2.1.9.265": "0", + "2.1.9.266": "0", + "2.1.9.267": "0", + "2.1.9.268": "0", + "2.1.9.269": "0", + "2.1.9.270": "0", + "2.1.9.271": "0", + "2.1.9.272": "0", + "2.1.9.273": "0", + "2.1.9.274": "0", + "2.1.9.275": "0", + "2.1.9.276": "0", + "2.1.9.277": "0", + "2.1.9.278": "0", + "2.1.9.279": "0", + "2.1.9.280": "0", + "2.1.9.281": "0", + "2.1.9.282": "0", + "2.1.9.283": "0", + "2.1.9.284": "0", + "2.1.9.285": "0", + "2.1.9.286": "0", + "2.1.9.287": "0", + "2.1.9.288": "0", + "2.1.9.289": "0", + "2.1.9.290": "0", + "2.1.9.291": "0", + "2.1.9.292": "0", + "2.1.9.293": "0", + "2.1.9.294": "0", + "2.1.9.295": "0", + "2.1.9.296": "0", + "2.1.9.297": "0", + "2.1.9.298": "0", + "2.1.9.299": "0", + "2.1.9.300": "0", + "2.1.9.301": "0", + "2.1.9.302": "0", + "2.1.9.303": "0", + "2.1.9.304": "0", + "2.1.9.305": "0", + "2.1.9.306": "0", + "2.1.9.307": "0", + "2.1.9.308": "0", + "2.1.9.309": "0", + "2.1.9.310": "0", + "2.1.9.311": "0", + "2.1.9.312": "0", + "2.1.9.313": "0", + "2.1.9.314": "0", + "2.1.9.315": "0", + "2.1.9.316": "0", + "2.1.9.317": "0", + "2.1.9.318": "0", + "2.1.9.319": "0", + "2.1.9.320": "0", + "2.1.9.321": "0", + "2.1.9.322": "0", + "2.1.9.323": "0", + "2.1.9.324": "0", + "2.1.9.325": "0", + "2.1.9.326": "0", + "2.1.9.327": "0", + "2.1.9.328": "0", + "2.1.9.329": "0", + "2.1.9.330": "0", + "2.1.9.331": "0", + "2.1.9.332": "0", + "2.1.9.333": "0", + "2.1.9.334": "0", + "2.1.9.335": "0", + "2.1.9.336": "0", + "2.1.9.337": "0", + "2.1.9.338": "0", + "2.1.9.339": "0", + "2.1.9.340": "0", + "2.1.9.341": "0", + "2.1.9.342": "0", + "2.1.9.343": "0", + "2.1.9.344": "0", + "2.1.9.345": "0", + "2.1.9.346": "0", + "2.1.9.347": "0", + "2.1.9.348": "0", + "2.1.9.349": "0", + "2.1.9.350": "0", + "2.1.9.351": "0", + "2.1.9.352": "0", + "2.1.9.353": "0", + "2.1.9.354": "0", + "2.1.9.355": "0", + "2.1.9.356": "0", + "2.1.9.357": "0", + "2.1.9.358": "0", + "2.1.9.359": "0", + "2.1.9.360": "0", + "2.1.9.361": "0", + "2.1.9.362": "0", + "2.1.9.363": "0", + "2.1.9.364": "0", + "2.1.9.365": "0", + "2.1.9.366": "0", + "2.1.9.367": "0", + "2.1.9.368": "0", + "2.1.9.369": "0", + "2.1.9.370": "0", + "2.1.9.371": "0", + "2.1.9.372": "0", + "2.1.9.373": "0", + "2.1.9.374": "0", + "2.1.9.375": "0", + "2.1.9.376": "0", + "2.1.9.377": "0", + "2.1.9.378": "0", + "2.1.9.379": "0", + "2.1.9.380": "0", + "2.1.9.381": "0", + "2.1.9.382": "0", + "2.1.9.383": "0", + "2.1.9.384": "0", + "2.1.9.385": "0", + "2.1.9.386": "0", + "2.1.9.387": "0", + "2.1.9.388": "0", + "2.1.9.389": "0", + "2.1.9.390": "0", + "2.1.9.391": "0", + "2.1.9.392": "0", + "2.1.9.393": "0", + "2.1.9.394": "0", + "2.1.9.395": "0", + "2.1.9.396": "0", + "2.1.9.397": "0", + "2.1.9.398": "0", + "2.1.9.399": "0", + "2.1.9.400": "0", + "2.1.10.1": "0", + "2.1.10.2": "0", + "2.1.10.3": "0", + "2.1.10.4": "0", + "2.1.10.5": "0", + "2.1.10.6": "0", + "2.1.10.7": "0", + "2.1.10.8": "0", + "2.1.10.9": "0", + "2.1.10.10": "0", + "2.1.10.11": "0", + "2.1.10.12": "0", + "2.1.10.13": "0", + "2.1.10.14": "0", + "2.1.10.15": "0", + "2.1.10.16": "0", + "2.1.10.17": "0", + "2.1.10.18": "0", + "2.1.10.19": "0", + "2.1.10.20": "0", + "2.1.10.21": "0", + "2.1.10.22": "0", + "2.1.10.23": "0", + "2.1.10.24": "0", + "2.1.10.25": "0", + "2.1.10.26": "0", + "2.1.10.27": "0", + "2.1.10.28": "0", + "2.1.10.29": "0", + "2.1.10.30": "0", + "2.1.10.31": "0", + "2.1.10.32": "0", + "2.1.10.33": "0", + "2.1.10.34": "0", + "2.1.10.35": "0", + "2.1.10.36": "0", + "2.1.10.37": "0", + "2.1.10.38": "0", + "2.1.10.39": "0", + "2.1.10.40": "0", + "2.1.10.41": "0", + "2.1.10.42": "0", + "2.1.10.43": "0", + "2.1.10.44": "0", + "2.1.10.45": "0", + "2.1.10.46": "0", + "2.1.10.47": "0", + "2.1.10.48": "0", + "2.1.10.49": "0", + "2.1.10.50": "0", + "2.1.10.51": "0", + "2.1.10.52": "0", + "2.1.10.53": "0", + "2.1.10.54": "0", + "2.1.10.55": "0", + "2.1.10.56": "0", + "2.1.10.57": "0", + "2.1.10.58": "0", + "2.1.10.59": "0", + "2.1.10.60": "0", + "2.1.10.61": "0", + "2.1.10.62": "0", + "2.1.10.63": "0", + "2.1.10.64": "0", + "2.1.10.65": "0", + "2.1.10.66": "0", + "2.1.10.67": "0", + "2.1.10.68": "0", + "2.1.10.69": "0", + "2.1.10.70": "0", + "2.1.10.71": "0", + "2.1.10.72": "0", + "2.1.10.73": "0", + "2.1.10.74": "0", + "2.1.10.75": "0", + "2.1.10.76": "0", + "2.1.10.77": "0", + "2.1.10.78": "0", + "2.1.10.79": "0", + "2.1.10.80": "0", + "2.1.10.81": "0", + "2.1.10.82": "0", + "2.1.10.83": "0", + "2.1.10.84": "0", + "2.1.10.85": "0", + "2.1.10.86": "0", + "2.1.10.87": "0", + "2.1.10.88": "0", + "2.1.10.89": "0", + "2.1.10.90": "0", + "2.1.10.91": "0", + "2.1.10.92": "0", + "2.1.10.93": "0", + "2.1.10.94": "0", + "2.1.10.95": "0", + "2.1.10.96": "0", + "2.1.10.97": "0", + "2.1.10.98": "0", + "2.1.10.99": "0", + "2.1.10.100": "0", + "2.1.10.101": "0", + "2.1.10.102": "0", + "2.1.10.103": "0", + "2.1.10.104": "0", + "2.1.10.105": "0", + "2.1.10.106": "0", + "2.1.10.107": "0", + "2.1.10.108": "0", + "2.1.10.109": "0", + "2.1.10.110": "0", + "2.1.10.111": "0", + "2.1.10.112": "0", + "2.1.10.113": "0", + "2.1.10.114": "0", + "2.1.10.115": "0", + "2.1.10.116": "0", + "2.1.10.117": "0", + "2.1.10.118": "0", + "2.1.10.119": "0", + "2.1.10.120": "0", + "2.1.10.121": "0", + "2.1.10.122": "0", + "2.1.10.123": "0", + "2.1.10.124": "0", + "2.1.10.125": "0", + "2.1.10.126": "0", + "2.1.10.127": "0", + "2.1.10.128": "0", + "2.1.10.129": "0", + "2.1.10.130": "0", + "2.1.10.131": "0", + "2.1.10.132": "0", + "2.1.10.133": "0", + "2.1.10.134": "0", + "2.1.10.135": "0", + "2.1.10.136": "0", + "2.1.10.137": "0", + "2.1.10.138": "0", + "2.1.10.139": "0", + "2.1.10.140": "0", + "2.1.10.141": "0", + "2.1.10.142": "0", + "2.1.10.143": "0", + "2.1.10.144": "0", + "2.1.10.145": "0", + "2.1.10.146": "0", + "2.1.10.147": "0", + "2.1.10.148": "0", + "2.1.10.149": "0", + "2.1.10.150": "0", + "2.1.10.151": "0", + "2.1.10.152": "0", + "2.1.10.153": "0", + "2.1.10.154": "0", + "2.1.10.155": "0", + "2.1.10.156": "0", + "2.1.10.157": "0", + "2.1.10.158": "0", + "2.1.10.159": "0", + "2.1.10.160": "0", + "2.1.10.161": "0", + "2.1.10.162": "0", + "2.1.10.163": "0", + "2.1.10.164": "0", + "2.1.10.165": "0", + "2.1.10.166": "0", + "2.1.10.167": "0", + "2.1.10.168": "0", + "2.1.10.169": "0", + "2.1.10.170": "0", + "2.1.10.171": "0", + "2.1.10.172": "0", + "2.1.10.173": "0", + "2.1.10.174": "0", + "2.1.10.175": "0", + "2.1.10.176": "0", + "2.1.10.177": "0", + "2.1.10.178": "0", + "2.1.10.179": "0", + "2.1.10.180": "0", + "2.1.10.181": "0", + "2.1.10.182": "0", + "2.1.10.183": "0", + "2.1.10.184": "0", + "2.1.10.185": "0", + "2.1.10.186": "0", + "2.1.10.187": "0", + "2.1.10.188": "0", + "2.1.10.189": "0", + "2.1.10.190": "0", + "2.1.10.191": "0", + "2.1.10.192": "0", + "2.1.10.193": "0", + "2.1.10.194": "0", + "2.1.10.195": "0", + "2.1.10.196": "0", + "2.1.10.197": "0", + "2.1.10.198": "0", + "2.1.10.199": "0", + "2.1.10.200": "0", + "2.1.10.201": "0", + "2.1.10.202": "0", + "2.1.10.203": "0", + "2.1.10.204": "0", + "2.1.10.205": "0", + "2.1.10.206": "0", + "2.1.10.207": "0", + "2.1.10.208": "0", + "2.1.10.209": "0", + "2.1.10.210": "0", + "2.1.10.211": "0", + "2.1.10.212": "0", + "2.1.10.213": "0", + "2.1.10.214": "0", + "2.1.10.215": "0", + "2.1.10.216": "0", + "2.1.10.217": "0", + "2.1.10.218": "0", + "2.1.10.219": "0", + "2.1.10.220": "0", + "2.1.10.221": "0", + "2.1.10.222": "0", + "2.1.10.223": "0", + "2.1.10.224": "0", + "2.1.10.225": "0", + "2.1.10.226": "0", + "2.1.10.227": "0", + "2.1.10.228": "0", + "2.1.10.229": "0", + "2.1.10.230": "0", + "2.1.10.231": "0", + "2.1.10.232": "0", + "2.1.10.233": "0", + "2.1.10.234": "0", + "2.1.10.235": "0", + "2.1.10.236": "0", + "2.1.10.237": "0", + "2.1.10.238": "0", + "2.1.10.239": "0", + "2.1.10.240": "0", + "2.1.10.241": "0", + "2.1.10.242": "0", + "2.1.10.243": "0", + "2.1.10.244": "0", + "2.1.10.245": "0", + "2.1.10.246": "0", + "2.1.10.247": "0", + "2.1.10.248": "0", + "2.1.10.249": "0", + "2.1.10.250": "0", + "2.1.10.251": "0", + "2.1.10.252": "0", + "2.1.10.253": "0", + "2.1.10.254": "0", + "2.1.10.255": "0", + "2.1.10.256": "0", + "2.1.10.257": "0", + "2.1.10.258": "0", + "2.1.10.259": "0", + "2.1.10.260": "0", + "2.1.10.261": "0", + "2.1.10.262": "0", + "2.1.10.263": "0", + "2.1.10.264": "0", + "2.1.10.265": "0", + "2.1.10.266": "0", + "2.1.10.267": "0", + "2.1.10.268": "0", + "2.1.10.269": "0", + "2.1.10.270": "0", + "2.1.10.271": "0", + "2.1.10.272": "0", + "2.1.10.273": "0", + "2.1.10.274": "0", + "2.1.10.275": "0", + "2.1.10.276": "0", + "2.1.10.277": "0", + "2.1.10.278": "0", + "2.1.10.279": "0", + "2.1.10.280": "0", + "2.1.10.281": "0", + "2.1.10.282": "0", + "2.1.10.283": "0", + "2.1.10.284": "0", + "2.1.10.285": "0", + "2.1.10.286": "0", + "2.1.10.287": "0", + "2.1.10.288": "0", + "2.1.10.289": "0", + "2.1.10.290": "0", + "2.1.10.291": "0", + "2.1.10.292": "0", + "2.1.10.293": "0", + "2.1.10.294": "0", + "2.1.10.295": "0", + "2.1.10.296": "0", + "2.1.10.297": "0", + "2.1.10.298": "0", + "2.1.10.299": "0", + "2.1.10.300": "0", + "2.1.10.301": "0", + "2.1.10.302": "0", + "2.1.10.303": "0", + "2.1.10.304": "0", + "2.1.10.305": "0", + "2.1.10.306": "0", + "2.1.10.307": "0", + "2.1.10.308": "0", + "2.1.10.309": "0", + "2.1.10.310": "0", + "2.1.10.311": "0", + "2.1.10.312": "0", + "2.1.10.313": "0", + "2.1.10.314": "0", + "2.1.10.315": "0", + "2.1.10.316": "0", + "2.1.10.317": "0", + "2.1.10.318": "0", + "2.1.10.319": "0", + "2.1.10.320": "0", + "2.1.10.321": "0", + "2.1.10.322": "0", + "2.1.10.323": "0", + "2.1.10.324": "0", + "2.1.10.325": "0", + "2.1.10.326": "0", + "2.1.10.327": "0", + "2.1.10.328": "0", + "2.1.10.329": "0", + "2.1.10.330": "0", + "2.1.10.331": "0", + "2.1.10.332": "0", + "2.1.10.333": "0", + "2.1.10.334": "0", + "2.1.10.335": "0", + "2.1.10.336": "0", + "2.1.10.337": "0", + "2.1.10.338": "0", + "2.1.10.339": "0", + "2.1.10.340": "0", + "2.1.10.341": "0", + "2.1.10.342": "0", + "2.1.10.343": "0", + "2.1.10.344": "0", + "2.1.10.345": "0", + "2.1.10.346": "0", + "2.1.10.347": "0", + "2.1.10.348": "0", + "2.1.10.349": "0", + "2.1.10.350": "0", + "2.1.10.351": "0", + "2.1.10.352": "0", + "2.1.10.353": "0", + "2.1.10.354": "0", + "2.1.10.355": "0", + "2.1.10.356": "0", + "2.1.10.357": "0", + "2.1.10.358": "0", + "2.1.10.359": "0", + "2.1.10.360": "0", + "2.1.10.361": "0", + "2.1.10.362": "0", + "2.1.10.363": "0", + "2.1.10.364": "0", + "2.1.10.365": "0", + "2.1.10.366": "0", + "2.1.10.367": "0", + "2.1.10.368": "0", + "2.1.10.369": "0", + "2.1.10.370": "0", + "2.1.10.371": "0", + "2.1.10.372": "0", + "2.1.10.373": "0", + "2.1.10.374": "0", + "2.1.10.375": "0", + "2.1.10.376": "0", + "2.1.10.377": "0", + "2.1.10.378": "0", + "2.1.10.379": "0", + "2.1.10.380": "0", + "2.1.10.381": "0", + "2.1.10.382": "0", + "2.1.10.383": "0", + "2.1.10.384": "0", + "2.1.10.385": "0", + "2.1.10.386": "0", + "2.1.10.387": "0", + "2.1.10.388": "0", + "2.1.10.389": "0", + "2.1.10.390": "0", + "2.1.10.391": "0", + "2.1.10.392": "0", + "2.1.10.393": "0", + "2.1.10.394": "0", + "2.1.10.395": "0", + "2.1.10.396": "0", + "2.1.10.397": "0", + "2.1.10.398": "0", + "2.1.10.399": "0", + "2.1.10.400": "0", + "2.1.11.1": "0", + "2.1.11.2": "0", + "2.1.11.3": "0", + "2.1.11.4": "0", + "2.1.11.5": "0", + "2.1.11.6": "0", + "2.1.11.7": "0", + "2.1.11.8": "0", + "2.1.11.9": "0", + "2.1.11.10": "0", + "2.1.11.11": "0", + "2.1.11.12": "0", + "2.1.11.13": "0", + "2.1.11.14": "0", + "2.1.11.15": "0", + "2.1.11.16": "0", + "2.1.11.17": "0", + "2.1.11.18": "0", + "2.1.11.19": "0", + "2.1.11.20": "0", + "2.1.11.21": "0", + "2.1.11.22": "0", + "2.1.11.23": "0", + "2.1.11.24": "0", + "2.1.11.25": "0", + "2.1.11.26": "0", + "2.1.11.27": "0", + "2.1.11.28": "0", + "2.1.11.29": "0", + "2.1.11.30": "0", + "2.1.11.31": "0", + "2.1.11.32": "0", + "2.1.11.33": "0", + "2.1.11.34": "0", + "2.1.11.35": "0", + "2.1.11.36": "0", + "2.1.11.37": "0", + "2.1.11.38": "0", + "2.1.11.39": "0", + "2.1.11.40": "0", + "2.1.11.41": "0", + "2.1.11.42": "0", + "2.1.11.43": "0", + "2.1.11.44": "0", + "2.1.11.45": "0", + "2.1.11.46": "0", + "2.1.11.47": "0", + "2.1.11.48": "0", + "2.1.11.49": "0", + "2.1.11.50": "0", + "2.1.11.51": "0", + "2.1.11.52": "0", + "2.1.11.53": "0", + "2.1.11.54": "0", + "2.1.11.55": "0", + "2.1.11.56": "0", + "2.1.11.57": "0", + "2.1.11.58": "0", + "2.1.11.59": "0", + "2.1.11.60": "0", + "2.1.11.61": "0", + "2.1.11.62": "0", + "2.1.11.63": "0", + "2.1.11.64": "0", + "2.1.11.65": "0", + "2.1.11.66": "0", + "2.1.11.67": "0", + "2.1.11.68": "0", + "2.1.11.69": "0", + "2.1.11.70": "0", + "2.1.11.71": "0", + "2.1.11.72": "0", + "2.1.11.73": "0", + "2.1.11.74": "0", + "2.1.11.75": "0", + "2.1.11.76": "0", + "2.1.11.77": "0", + "2.1.11.78": "0", + "2.1.11.79": "0", + "2.1.11.80": "0", + "2.1.11.81": "0", + "2.1.11.82": "0", + "2.1.11.83": "0", + "2.1.11.84": "0", + "2.1.11.85": "0", + "2.1.11.86": "0", + "2.1.11.87": "0", + "2.1.11.88": "0", + "2.1.11.89": "0", + "2.1.11.90": "0", + "2.1.11.91": "0", + "2.1.11.92": "0", + "2.1.11.93": "0", + "2.1.11.94": "0", + "2.1.11.95": "0", + "2.1.11.96": "0", + "2.1.11.97": "0", + "2.1.11.98": "0", + "2.1.11.99": "0", + "2.1.11.100": "0", + "2.1.11.101": "0", + "2.1.11.102": "0", + "2.1.11.103": "0", + "2.1.11.104": "0", + "2.1.11.105": "0", + "2.1.11.106": "0", + "2.1.11.107": "0", + "2.1.11.108": "0", + "2.1.11.109": "0", + "2.1.11.110": "0", + "2.1.11.111": "0", + "2.1.11.112": "0", + "2.1.11.113": "0", + "2.1.11.114": "0", + "2.1.11.115": "0", + "2.1.11.116": "0", + "2.1.11.117": "0", + "2.1.11.118": "0", + "2.1.11.119": "0", + "2.1.11.120": "0", + "2.1.11.121": "0", + "2.1.11.122": "0", + "2.1.11.123": "0", + "2.1.11.124": "0", + "2.1.11.125": "0", + "2.1.11.126": "0", + "2.1.11.127": "0", + "2.1.11.128": "0", + "2.1.11.129": "0", + "2.1.11.130": "0", + "2.1.11.131": "0", + "2.1.11.132": "0", + "2.1.11.133": "0", + "2.1.11.134": "0", + "2.1.11.135": "0", + "2.1.11.136": "0", + "2.1.11.137": "0", + "2.1.11.138": "0", + "2.1.11.139": "0", + "2.1.11.140": "0", + "2.1.11.141": "0", + "2.1.11.142": "0", + "2.1.11.143": "0", + "2.1.11.144": "0", + "2.1.11.145": "0", + "2.1.11.146": "0", + "2.1.11.147": "0", + "2.1.11.148": "0", + "2.1.11.149": "0", + "2.1.11.150": "0", + "2.1.11.151": "0", + "2.1.11.152": "0", + "2.1.11.153": "0", + "2.1.11.154": "0", + "2.1.11.155": "0", + "2.1.11.156": "0", + "2.1.11.157": "0", + "2.1.11.158": "0", + "2.1.11.159": "0", + "2.1.11.160": "0", + "2.1.11.161": "0", + "2.1.11.162": "0", + "2.1.11.163": "0", + "2.1.11.164": "0", + "2.1.11.165": "0", + "2.1.11.166": "0", + "2.1.11.167": "0", + "2.1.11.168": "0", + "2.1.11.169": "0", + "2.1.11.170": "0", + "2.1.11.171": "0", + "2.1.11.172": "0", + "2.1.11.173": "0", + "2.1.11.174": "0", + "2.1.11.175": "0", + "2.1.11.176": "0", + "2.1.11.177": "0", + "2.1.11.178": "0", + "2.1.11.179": "0", + "2.1.11.180": "0", + "2.1.11.181": "0", + "2.1.11.182": "0", + "2.1.11.183": "0", + "2.1.11.184": "0", + "2.1.11.185": "0", + "2.1.11.186": "0", + "2.1.11.187": "0", + "2.1.11.188": "0", + "2.1.11.189": "0", + "2.1.11.190": "0", + "2.1.11.191": "0", + "2.1.11.192": "0", + "2.1.11.193": "0", + "2.1.11.194": "0", + "2.1.11.195": "0", + "2.1.11.196": "0", + "2.1.11.197": "0", + "2.1.11.198": "0", + "2.1.11.199": "0", + "2.1.11.200": "0", + "2.1.11.201": "0", + "2.1.11.202": "0", + "2.1.11.203": "0", + "2.1.11.204": "0", + "2.1.11.205": "0", + "2.1.11.206": "0", + "2.1.11.207": "0", + "2.1.11.208": "0", + "2.1.11.209": "0", + "2.1.11.210": "0", + "2.1.11.211": "0", + "2.1.11.212": "0", + "2.1.11.213": "0", + "2.1.11.214": "0", + "2.1.11.215": "0", + "2.1.11.216": "0", + "2.1.11.217": "0", + "2.1.11.218": "0", + "2.1.11.219": "0", + "2.1.11.220": "0", + "2.1.11.221": "0", + "2.1.11.222": "0", + "2.1.11.223": "0", + "2.1.11.224": "0", + "2.1.11.225": "0", + "2.1.11.226": "0", + "2.1.11.227": "0", + "2.1.11.228": "0", + "2.1.11.229": "0", + "2.1.11.230": "0", + "2.1.11.231": "0", + "2.1.11.232": "0", + "2.1.11.233": "0", + "2.1.11.234": "0", + "2.1.11.235": "0", + "2.1.11.236": "0", + "2.1.11.237": "0", + "2.1.11.238": "0", + "2.1.11.239": "0", + "2.1.11.240": "0", + "2.1.11.241": "0", + "2.1.11.242": "0", + "2.1.11.243": "0", + "2.1.11.244": "0", + "2.1.11.245": "0", + "2.1.11.246": "0", + "2.1.11.247": "0", + "2.1.11.248": "0", + "2.1.11.249": "0", + "2.1.11.250": "0", + "2.1.11.251": "0", + "2.1.11.252": "0", + "2.1.11.253": "0", + "2.1.11.254": "0", + "2.1.11.255": "0", + "2.1.11.256": "0", + "2.1.11.257": "0", + "2.1.11.258": "0", + "2.1.11.259": "0", + "2.1.11.260": "0", + "2.1.11.261": "0", + "2.1.11.262": "0", + "2.1.11.263": "0", + "2.1.11.264": "0", + "2.1.11.265": "0", + "2.1.11.266": "0", + "2.1.11.267": "0", + "2.1.11.268": "0", + "2.1.11.269": "0", + "2.1.11.270": "0", + "2.1.11.271": "0", + "2.1.11.272": "0", + "2.1.11.273": "0", + "2.1.11.274": "0", + "2.1.11.275": "0", + "2.1.11.276": "0", + "2.1.11.277": "0", + "2.1.11.278": "0", + "2.1.11.279": "0", + "2.1.11.280": "0", + "2.1.11.281": "0", + "2.1.11.282": "0", + "2.1.11.283": "0", + "2.1.11.284": "0", + "2.1.11.285": "0", + "2.1.11.286": "0", + "2.1.11.287": "0", + "2.1.11.288": "0", + "2.1.11.289": "0", + "2.1.11.290": "0", + "2.1.11.291": "0", + "2.1.11.292": "0", + "2.1.11.293": "0", + "2.1.11.294": "0", + "2.1.11.295": "0", + "2.1.11.296": "0", + "2.1.11.297": "0", + "2.1.11.298": "0", + "2.1.11.299": "0", + "2.1.11.300": "0", + "2.1.11.301": "0", + "2.1.11.302": "0", + "2.1.11.303": "0", + "2.1.11.304": "0", + "2.1.11.305": "0", + "2.1.11.306": "0", + "2.1.11.307": "0", + "2.1.11.308": "0", + "2.1.11.309": "0", + "2.1.11.310": "0", + "2.1.11.311": "0", + "2.1.11.312": "0", + "2.1.11.313": "0", + "2.1.11.314": "0", + "2.1.11.315": "0", + "2.1.11.316": "0", + "2.1.11.317": "0", + "2.1.11.318": "0", + "2.1.11.319": "0", + "2.1.11.320": "0", + "2.1.11.321": "0", + "2.1.11.322": "0", + "2.1.11.323": "0", + "2.1.11.324": "0", + "2.1.11.325": "0", + "2.1.11.326": "0", + "2.1.11.327": "0", + "2.1.11.328": "0", + "2.1.11.329": "0", + "2.1.11.330": "0", + "2.1.11.331": "0", + "2.1.11.332": "0", + "2.1.11.333": "0", + "2.1.11.334": "0", + "2.1.11.335": "0", + "2.1.11.336": "0", + "2.1.11.337": "0", + "2.1.11.338": "0", + "2.1.11.339": "0", + "2.1.11.340": "0", + "2.1.11.341": "0", + "2.1.11.342": "0", + "2.1.11.343": "0", + "2.1.11.344": "0", + "2.1.11.345": "0", + "2.1.11.346": "0", + "2.1.11.347": "0", + "2.1.11.348": "0", + "2.1.11.349": "0", + "2.1.11.350": "0", + "2.1.11.351": "0", + "2.1.11.352": "0", + "2.1.11.353": "0", + "2.1.11.354": "0", + "2.1.11.355": "0", + "2.1.11.356": "0", + "2.1.11.357": "0", + "2.1.11.358": "0", + "2.1.11.359": "0", + "2.1.11.360": "0", + "2.1.11.361": "0", + "2.1.11.362": "0", + "2.1.11.363": "0", + "2.1.11.364": "0", + "2.1.11.365": "0", + "2.1.11.366": "0", + "2.1.11.367": "0", + "2.1.11.368": "0", + "2.1.11.369": "0", + "2.1.11.370": "0", + "2.1.11.371": "0", + "2.1.11.372": "0", + "2.1.11.373": "0", + "2.1.11.374": "0", + "2.1.11.375": "0", + "2.1.11.376": "0", + "2.1.11.377": "0", + "2.1.11.378": "0", + "2.1.11.379": "0", + "2.1.11.380": "0", + "2.1.11.381": "0", + "2.1.11.382": "0", + "2.1.11.383": "0", + "2.1.11.384": "0", + "2.1.11.385": "0", + "2.1.11.386": "0", + "2.1.11.387": "0", + "2.1.11.388": "0", + "2.1.11.389": "0", + "2.1.11.390": "0", + "2.1.11.391": "0", + "2.1.11.392": "0", + "2.1.11.393": "0", + "2.1.11.394": "0", + "2.1.11.395": "0", + "2.1.11.396": "0", + "2.1.11.397": "0", + "2.1.11.398": "0", + "2.1.11.399": "0", + "2.1.11.400": "0", + "2.1.12.1": "0", + "2.1.12.2": "0", + "2.1.12.3": "0", + "2.1.12.4": "0", + "2.1.12.5": "0", + "2.1.12.6": "0", + "2.1.12.7": "0", + "2.1.12.8": "0", + "2.1.12.9": "0", + "2.1.12.10": "0", + "2.1.12.11": "0", + "2.1.12.12": "0", + "2.1.12.13": "0", + "2.1.12.14": "0", + "2.1.12.15": "0", + "2.1.12.16": "0", + "2.1.12.17": "0", + "2.1.12.18": "0", + "2.1.12.19": "0", + "2.1.12.20": "0", + "2.1.12.21": "0", + "2.1.12.22": "0", + "2.1.12.23": "0", + "2.1.12.24": "0", + "2.1.12.25": "0", + "2.1.12.26": "0", + "2.1.12.27": "0", + "2.1.12.28": "0", + "2.1.12.29": "0", + "2.1.12.30": "0", + "2.1.12.31": "0", + "2.1.12.32": "0", + "2.1.12.33": "0", + "2.1.12.34": "0", + "2.1.12.35": "0", + "2.1.12.36": "0", + "2.1.12.37": "0", + "2.1.12.38": "0", + "2.1.12.39": "0", + "2.1.12.40": "0", + "2.1.12.41": "0", + "2.1.12.42": "0", + "2.1.12.43": "0", + "2.1.12.44": "0", + "2.1.12.45": "0", + "2.1.12.46": "0", + "2.1.12.47": "0", + "2.1.12.48": "0", + "2.1.12.49": "0", + "2.1.12.50": "0", + "2.1.12.51": "0", + "2.1.12.52": "0", + "2.1.12.53": "0", + "2.1.12.54": "0", + "2.1.12.55": "0", + "2.1.12.56": "0", + "2.1.12.57": "0", + "2.1.12.58": "0", + "2.1.12.59": "0", + "2.1.12.60": "0", + "2.1.12.61": "0", + "2.1.12.62": "0", + "2.1.12.63": "0", + "2.1.12.64": "0", + "2.1.12.65": "0", + "2.1.12.66": "0", + "2.1.12.67": "0", + "2.1.12.68": "0", + "2.1.12.69": "0", + "2.1.12.70": "0", + "2.1.12.71": "0", + "2.1.12.72": "0", + "2.1.12.73": "0", + "2.1.12.74": "0", + "2.1.12.75": "0", + "2.1.12.76": "0", + "2.1.12.77": "0", + "2.1.12.78": "0", + "2.1.12.79": "0", + "2.1.12.80": "0", + "2.1.12.81": "0", + "2.1.12.82": "0", + "2.1.12.83": "0", + "2.1.12.84": "0", + "2.1.12.85": "0", + "2.1.12.86": "0", + "2.1.12.87": "0", + "2.1.12.88": "0", + "2.1.12.89": "0", + "2.1.12.90": "0", + "2.1.12.91": "0", + "2.1.12.92": "0", + "2.1.12.93": "0", + "2.1.12.94": "0", + "2.1.12.95": "0", + "2.1.12.96": "0", + "2.1.12.97": "0", + "2.1.12.98": "0", + "2.1.12.99": "0", + "2.1.12.100": "0", + "2.1.12.101": "0", + "2.1.12.102": "0", + "2.1.12.103": "0", + "2.1.12.104": "0", + "2.1.12.105": "0", + "2.1.12.106": "0", + "2.1.12.107": "0", + "2.1.12.108": "0", + "2.1.12.109": "0", + "2.1.12.110": "0", + "2.1.12.111": "0", + "2.1.12.112": "0", + "2.1.12.113": "0", + "2.1.12.114": "0", + "2.1.12.115": "0", + "2.1.12.116": "0", + "2.1.12.117": "0", + "2.1.12.118": "0", + "2.1.12.119": "0", + "2.1.12.120": "0", + "2.1.12.121": "0", + "2.1.12.122": "0", + "2.1.12.123": "0", + "2.1.12.124": "0", + "2.1.12.125": "0", + "2.1.12.126": "0", + "2.1.12.127": "0", + "2.1.12.128": "0", + "2.1.12.129": "0", + "2.1.12.130": "0", + "2.1.12.131": "0", + "2.1.12.132": "0", + "2.1.12.133": "0", + "2.1.12.134": "0", + "2.1.12.135": "0", + "2.1.12.136": "0", + "2.1.12.137": "0", + "2.1.12.138": "0", + "2.1.12.139": "0", + "2.1.12.140": "0", + "2.1.12.141": "0", + "2.1.12.142": "0", + "2.1.12.143": "0", + "2.1.12.144": "0", + "2.1.12.145": "0", + "2.1.12.146": "0", + "2.1.12.147": "0", + "2.1.12.148": "0", + "2.1.12.149": "0", + "2.1.12.150": "0", + "2.1.12.151": "0", + "2.1.12.152": "0", + "2.1.12.153": "0", + "2.1.12.154": "0", + "2.1.12.155": "0", + "2.1.12.156": "0", + "2.1.12.157": "0", + "2.1.12.158": "0", + "2.1.12.159": "0", + "2.1.12.160": "0", + "2.1.12.161": "0", + "2.1.12.162": "0", + "2.1.12.163": "0", + "2.1.12.164": "0", + "2.1.12.165": "0", + "2.1.12.166": "0", + "2.1.12.167": "0", + "2.1.12.168": "0", + "2.1.12.169": "0", + "2.1.12.170": "0", + "2.1.12.171": "0", + "2.1.12.172": "0", + "2.1.12.173": "0", + "2.1.12.174": "0", + "2.1.12.175": "0", + "2.1.12.176": "0", + "2.1.12.177": "0", + "2.1.12.178": "0", + "2.1.12.179": "0", + "2.1.12.180": "0", + "2.1.12.181": "0", + "2.1.12.182": "0", + "2.1.12.183": "0", + "2.1.12.184": "0", + "2.1.12.185": "0", + "2.1.12.186": "0", + "2.1.12.187": "0", + "2.1.12.188": "0", + "2.1.12.189": "0", + "2.1.12.190": "0", + "2.1.12.191": "0", + "2.1.12.192": "0", + "2.1.12.193": "0", + "2.1.12.194": "0", + "2.1.12.195": "0", + "2.1.12.196": "0", + "2.1.12.197": "0", + "2.1.12.198": "0", + "2.1.12.199": "0", + "2.1.12.200": "0", + "2.1.12.201": "0", + "2.1.12.202": "0", + "2.1.12.203": "0", + "2.1.12.204": "0", + "2.1.12.205": "0", + "2.1.12.206": "0", + "2.1.12.207": "0", + "2.1.12.208": "0", + "2.1.12.209": "0", + "2.1.12.210": "0", + "2.1.12.211": "0", + "2.1.12.212": "0", + "2.1.12.213": "0", + "2.1.12.214": "0", + "2.1.12.215": "0", + "2.1.12.216": "0", + "2.1.12.217": "0", + "2.1.12.218": "0", + "2.1.12.219": "0", + "2.1.12.220": "0", + "2.1.12.221": "0", + "2.1.12.222": "0", + "2.1.12.223": "0", + "2.1.12.224": "0", + "2.1.12.225": "0", + "2.1.12.226": "0", + "2.1.12.227": "0", + "2.1.12.228": "0", + "2.1.12.229": "0", + "2.1.12.230": "0", + "2.1.12.231": "0", + "2.1.12.232": "0", + "2.1.12.233": "0", + "2.1.12.234": "0", + "2.1.12.235": "0", + "2.1.12.236": "0", + "2.1.12.237": "0", + "2.1.12.238": "0", + "2.1.12.239": "0", + "2.1.12.240": "0", + "2.1.12.241": "0", + "2.1.12.242": "0", + "2.1.12.243": "0", + "2.1.12.244": "0", + "2.1.12.245": "0", + "2.1.12.246": "0", + "2.1.12.247": "0", + "2.1.12.248": "0", + "2.1.12.249": "0", + "2.1.12.250": "0", + "2.1.12.251": "0", + "2.1.12.252": "0", + "2.1.12.253": "0", + "2.1.12.254": "0", + "2.1.12.255": "0", + "2.1.12.256": "0", + "2.1.12.257": "0", + "2.1.12.258": "0", + "2.1.12.259": "0", + "2.1.12.260": "0", + "2.1.12.261": "0", + "2.1.12.262": "0", + "2.1.12.263": "0", + "2.1.12.264": "0", + "2.1.12.265": "0", + "2.1.12.266": "0", + "2.1.12.267": "0", + "2.1.12.268": "0", + "2.1.12.269": "0", + "2.1.12.270": "0", + "2.1.12.271": "0", + "2.1.12.272": "0", + "2.1.12.273": "0", + "2.1.12.274": "0", + "2.1.12.275": "0", + "2.1.12.276": "0", + "2.1.12.277": "0", + "2.1.12.278": "0", + "2.1.12.279": "0", + "2.1.12.280": "0", + "2.1.12.281": "0", + "2.1.12.282": "0", + "2.1.12.283": "0", + "2.1.12.284": "0", + "2.1.12.285": "0", + "2.1.12.286": "0", + "2.1.12.287": "0", + "2.1.12.288": "0", + "2.1.12.289": "0", + "2.1.12.290": "0", + "2.1.12.291": "0", + "2.1.12.292": "0", + "2.1.12.293": "0", + "2.1.12.294": "0", + "2.1.12.295": "0", + "2.1.12.296": "0", + "2.1.12.297": "0", + "2.1.12.298": "0", + "2.1.12.299": "0", + "2.1.12.300": "0", + "2.1.12.301": "0", + "2.1.12.302": "0", + "2.1.12.303": "0", + "2.1.12.304": "0", + "2.1.12.305": "0", + "2.1.12.306": "0", + "2.1.12.307": "0", + "2.1.12.308": "0", + "2.1.12.309": "0", + "2.1.12.310": "0", + "2.1.12.311": "0", + "2.1.12.312": "0", + "2.1.12.313": "0", + "2.1.12.314": "0", + "2.1.12.315": "0", + "2.1.12.316": "0", + "2.1.12.317": "0", + "2.1.12.318": "0", + "2.1.12.319": "0", + "2.1.12.320": "0", + "2.1.12.321": "0", + "2.1.12.322": "0", + "2.1.12.323": "0", + "2.1.12.324": "0", + "2.1.12.325": "0", + "2.1.12.326": "0", + "2.1.12.327": "0", + "2.1.12.328": "0", + "2.1.12.329": "0", + "2.1.12.330": "0", + "2.1.12.331": "0", + "2.1.12.332": "0", + "2.1.12.333": "0", + "2.1.12.334": "0", + "2.1.12.335": "0", + "2.1.12.336": "0", + "2.1.12.337": "0", + "2.1.12.338": "0", + "2.1.12.339": "0", + "2.1.12.340": "0", + "2.1.12.341": "0", + "2.1.12.342": "0", + "2.1.12.343": "0", + "2.1.12.344": "0", + "2.1.12.345": "0", + "2.1.12.346": "0", + "2.1.12.347": "0", + "2.1.12.348": "0", + "2.1.12.349": "0", + "2.1.12.350": "0", + "2.1.12.351": "0", + "2.1.12.352": "0", + "2.1.12.353": "0", + "2.1.12.354": "0", + "2.1.12.355": "0", + "2.1.12.356": "0", + "2.1.12.357": "0", + "2.1.12.358": "0", + "2.1.12.359": "0", + "2.1.12.360": "0", + "2.1.12.361": "0", + "2.1.12.362": "0", + "2.1.12.363": "0", + "2.1.12.364": "0", + "2.1.12.365": "0", + "2.1.12.366": "0", + "2.1.12.367": "0", + "2.1.12.368": "0", + "2.1.12.369": "0", + "2.1.12.370": "0", + "2.1.12.371": "0", + "2.1.12.372": "0", + "2.1.12.373": "0", + "2.1.12.374": "0", + "2.1.12.375": "0", + "2.1.12.376": "0", + "2.1.12.377": "0", + "2.1.12.378": "0", + "2.1.12.379": "0", + "2.1.12.380": "0", + "2.1.12.381": "0", + "2.1.12.382": "0", + "2.1.12.383": "0", + "2.1.12.384": "0", + "2.1.12.385": "0", + "2.1.12.386": "0", + "2.1.12.387": "0", + "2.1.12.388": "0", + "2.1.12.389": "0", + "2.1.12.390": "0", + "2.1.12.391": "0", + "2.1.12.392": "0", + "2.1.12.393": "0", + "2.1.12.394": "0", + "2.1.12.395": "0", + "2.1.12.396": "0", + "2.1.12.397": "0", + "2.1.12.398": "0", + "2.1.12.399": "0", + "2.1.12.400": "0" + }, + "acdPolicyList": { + "1.1.2.1": "Traffic-1", + "1.1.2.2": "Traffic-2", + "1.1.2.3": "Traffic-3", + "1.1.2.4": "Traffic-4", + "1.1.3.1": "100", + "1.1.3.2": "100", + "1.1.3.3": "100", + "1.1.3.4": "100" + }, + "acdPolicyPort": { + "1.1.2.1": "1", + "1.1.2.2": "2", + "1.1.2.3": "3", + "1.1.2.4": "4", + "1.1.2.5": "0", + "1.1.2.6": "0", + "1.1.2.7": "0" + }, + "acdPolicyTableTid": { + "1.0": "5" + } + } + }, + "ACD-PORT-MIB": { + "tables": { + "acdPortConfig": { + "1.1.2.1": "EVEN_VLAN_UPLINK", + "1.1.2.2": "ODD_VLAN_UPLINK", + "1.1.2.3": "EVEN_VLAN_DOWNLIN", + "1.1.2.4": "ODD_VLAN_DOWNLINK", + "1.1.2.5": "Management", + "1.1.2.6": "LAG-1", + "1.1.2.7": "LAG-2", + "1.1.3.1": "", + "1.1.3.2": "", + "1.1.3.3": "", + "1.1.3.4": "", + "1.1.3.5": "", + "1.1.3.6": "", + "1.1.3.7": "", + "1.1.4.1": "00 15 AD 47 3E 61", + "1.1.4.2": "00 15 AD 47 3E 62", + "1.1.4.3": "00 15 AD 47 3E 63", + "1.1.4.4": "00 15 AD 47 3E 64", + "1.1.4.5": "00 15 AD 47 3E 65", + "1.1.4.6": "00 15 AD 47 3E 61", + "1.1.4.7": "00 15 AD 47 3E 63", + "1.1.5.1": ".1.3.6.1.4.1.22420.1.1.10.1.1.1", + "1.1.5.2": ".1.3.6.1.4.1.22420.1.1.10.1.1.2", + "1.1.5.3": ".1.3.6.1.4.1.22420.1.1.10.1.1.3", + "1.1.5.4": ".1.3.6.1.4.1.22420.1.1.10.1.1.4", + "1.1.5.5": ".1.3.6.1.4.1.22420.1.1.10.1.1.5", + "1.1.5.6": ".1.3.6.1.4.1.22420.1.1.10.1.1.6", + "1.1.5.7": ".1.3.6.1.4.1.22420.1.1.10.1.1.7", + "1.1.6.1": "1", + "1.1.6.2": "1", + "1.1.6.3": "1", + "1.1.6.4": "1", + "1.1.6.5": "1", + "1.1.6.6": "1", + "1.1.6.7": "1", + "1.1.7.1": "4096", + "1.1.7.2": "4096", + "1.1.7.3": "2000", + "1.1.7.4": "4096", + "1.1.7.5": "2000", + "1.1.7.6": "10240", + "1.1.7.7": "10240", + "1.1.8.1": "1", + "1.1.8.2": "1", + "1.1.8.3": "1", + "1.1.8.4": "1", + "1.1.8.5": "1", + "1.1.8.6": "2", + "1.1.8.7": "2", + "1.1.9.1": "1000", + "1.1.9.2": "1000", + "1.1.9.3": "1000", + "1.1.9.4": "1000", + "1.1.9.5": "100", + "1.1.9.6": "10000", + "1.1.9.7": "10000", + "1.1.10.1": "2", + "1.1.10.2": "2", + "1.1.10.3": "2", + "1.1.10.4": "2", + "1.1.10.5": "2", + "1.1.10.6": "2", + "1.1.10.7": "2", + "1.1.11.1": "1", + "1.1.11.2": "1", + "1.1.11.3": "1", + "1.1.11.4": "1", + "1.1.11.5": "1", + "1.1.11.6": "2", + "1.1.11.7": "2", + "1.1.12.1": "2", + "1.1.12.2": "2", + "1.1.12.3": "2", + "1.1.12.4": "2", + "1.1.12.5": "2", + "1.1.12.6": "2", + "1.1.12.7": "2", + "1.1.13.1": "00 00 00 E0", + "1.1.13.2": "00 00 00 EA", + "1.1.13.3": "00 00 00 EA", + "1.1.13.4": "00 00 00 E0", + "1.1.13.5": "00 00 00 CA", + "1.1.13.6": "00 00 00 E0", + "1.1.13.7": "00 00 00 E0", + "1.1.14.1": "2", + "1.1.14.2": "2", + "1.1.14.3": "2", + "1.1.14.4": "2" + }, + "acdPortStats": { + "1.1.2.1": "FF FF FF FF", + "1.1.2.2": "FF FF FF FF", + "1.1.2.3": "FF FF FF FF", + "1.1.2.4": "FF FF FF FF", + "1.1.2.5": "FF FF FF FF", + "1.1.2.6": "7F FF FF FF", + "1.1.2.7": "7F FF FF FF", + "1.1.3.1": "15250077610", + "1.1.3.2": "110445216", + "1.1.3.3": "12089036710", + "1.1.3.4": "354824130", + "1.1.3.5": "1389916831", + "1.1.3.6": "0", + "1.1.3.7": "0", + "1.1.4.1": "15250077610", + "1.1.4.2": "110445216", + "1.1.4.3": "12089036710", + "1.1.4.4": "354824130", + "1.1.4.5": "1389916831", + "1.1.4.6": "0", + "1.1.4.7": "0", + "1.1.5.1": "20489450", + "1.1.5.2": "0", + "1.1.5.3": "12156384", + "1.1.5.4": "0", + "1.1.5.5": "8738407", + "1.1.5.6": "0", + "1.1.5.7": "0", + "1.1.6.1": "1327125", + "1.1.6.2": "751328", + "1.1.6.3": "1854514", + "1.1.6.4": "2381370", + "1.1.6.5": "6", + "1.1.6.6": "0", + "1.1.6.7": "0", + "1.1.7.1": "64", + "1.1.7.2": "0", + "1.1.7.3": "24", + "1.1.7.4": "0", + "1.1.7.5": "558852", + "1.1.7.6": "0", + "1.1.7.7": "0", + "1.1.8.1": "0", + "1.1.8.2": "0", + "1.1.8.3": "0", + "1.1.8.4": "0", + "1.1.8.5": "0", + "1.1.8.6": "0", + "1.1.8.7": "0", + "1.1.9.1": "20489655", + "1.1.9.2": "0", + "1.1.9.3": "0", + "1.1.9.4": "0", + "1.1.9.5": "8739318", + "1.1.9.6": "0", + "1.1.9.7": "0", + "1.1.10.1": "0", + "1.1.10.2": "0", + "1.1.10.3": "0", + "1.1.10.4": "0", + "1.1.10.5": "0", + "1.1.10.6": "0", + "1.1.10.7": "0", + "1.1.11.1": "0", + "1.1.11.2": "0", + "1.1.11.3": "0", + "1.1.11.4": "0", + "1.1.11.5": "0", + "1.1.11.6": "0", + "1.1.11.7": "0", + "1.1.12.1": "0", + "1.1.12.2": "0", + "1.1.12.3": "0", + "1.1.12.4": "0", + "1.1.12.5": "0", + "1.1.12.6": "0", + "1.1.12.7": "0", + "1.1.13.1": "0", + "1.1.13.2": "0", + "1.1.13.3": "0", + "1.1.13.4": "0", + "1.1.13.5": "0", + "1.1.13.6": "0", + "1.1.13.7": "0", + "1.1.14.1": "0", + "1.1.14.2": "0", + "1.1.14.3": "0", + "1.1.14.4": "0", + "1.1.14.5": "0", + "1.1.14.6": "0", + "1.1.14.7": "0", + "1.1.15.1": "0", + "1.1.15.2": "0", + "1.1.15.3": "0", + "1.1.15.4": "0", + "1.1.15.5": "0", + "1.1.15.6": "0", + "1.1.15.7": "0", + "1.1.16.1": "0", + "1.1.16.2": "0", + "1.1.16.3": "0", + "1.1.16.4": "0", + "1.1.16.5": "0", + "1.1.16.6": "0", + "1.1.16.7": "0", + "1.1.17.1": "0", + "1.1.17.2": "0", + "1.1.17.3": "0", + "1.1.17.4": "0", + "1.1.17.5": "0", + "1.1.17.6": "0", + "1.1.17.7": "0", + "1.1.18.1": "0", + "1.1.18.2": "0", + "1.1.18.3": "0", + "1.1.18.4": "0", + "1.1.18.5": "0", + "1.1.18.6": "0", + "1.1.18.7": "0", + "1.1.19.1": "0", + "1.1.19.2": "0", + "1.1.19.3": "3630757", + "1.1.19.4": "0", + "1.1.19.5": "763909", + "1.1.19.6": "0", + "1.1.19.7": "0", + "1.1.20.1": "10311905", + "1.1.20.2": "0", + "1.1.20.3": "774602", + "1.1.20.4": "0", + "1.1.20.5": "6697154", + "1.1.20.6": "0", + "1.1.20.7": "0", + "1.1.21.1": "1829023", + "1.1.21.2": "751328", + "1.1.21.3": "2010683", + "1.1.21.4": "2381370", + "1.1.21.5": "835749", + "1.1.21.6": "0", + "1.1.21.7": "0", + "1.1.22.1": "2878", + "1.1.22.2": "0", + "1.1.22.3": "3635", + "1.1.22.4": "0", + "1.1.22.5": "765806", + "1.1.22.6": "0", + "1.1.22.7": "0", + "1.1.23.1": "23328", + "1.1.23.2": "0", + "1.1.23.3": "2148", + "1.1.23.4": "0", + "1.1.23.5": "110624", + "1.1.23.6": "0", + "1.1.23.7": "0", + "1.1.24.1": "9649475", + "1.1.24.2": "0", + "1.1.24.3": "7589097", + "1.1.24.4": "0", + "1.1.24.5": "53576", + "1.1.24.6": "0", + "1.1.24.7": "0", + "1.1.25.1": "30", + "1.1.25.2": "0", + "1.1.25.3": "0", + "1.1.25.4": "0", + "1.1.25.5": "70447", + "1.1.25.6": "0", + "1.1.25.7": "0", + "1.1.26.1": "0", + "1.1.26.2": "0", + "1.1.26.3": "0", + "1.1.26.4": "0", + "1.1.26.5": "0", + "1.1.26.6": "0", + "1.1.26.7": "0", + "1.1.27.1": "0", + "1.1.27.2": "0", + "1.1.27.3": "0", + "1.1.27.4": "0", + "1.1.27.5": "0", + "1.1.27.6": "0", + "1.1.27.7": "0", + "1.1.28.1": "0", + "1.1.28.2": "0", + "1.1.28.3": "0", + "1.1.28.4": "0", + "1.1.28.5": "0", + "1.1.28.6": "0", + "1.1.28.7": "0", + "1.1.29.1": "0", + "1.1.29.2": "0", + "1.1.29.3": "0", + "1.1.29.4": "0", + "1.1.29.5": "0", + "1.1.29.6": "0", + "1.1.29.7": "0", + "1.1.30.1": "0", + "1.1.30.2": "0", + "1.1.30.3": "0", + "1.1.30.4": "0", + "1.1.30.5": "0", + "1.1.30.6": "0", + "1.1.30.7": "0", + "1.1.31.1": "0", + "1.1.31.2": "0", + "1.1.31.3": "0", + "1.1.31.4": "0", + "1.1.31.5": "0", + "1.1.31.6": "0", + "1.1.31.7": "0", + "1.1.32.1": "0", + "1.1.32.2": "0", + "1.1.32.3": "0", + "1.1.32.4": "0", + "1.1.32.5": "0", + "1.1.32.6": "0", + "1.1.32.7": "0", + "2.1.2.1": "7F FF FF FF", + "2.1.2.2": "7F FF FF FF", + "2.1.2.3": "7F FF FF FF", + "2.1.2.4": "7F FF FF FF", + "2.1.2.5": "7F FF FF FF", + "2.1.2.6": "7F FF FF FF", + "2.1.2.7": "7F FF FF FF", + "2.1.3.1": "12813326425", + "2.1.3.2": "135053161", + "2.1.3.3": "15078973313", + "2.1.3.4": "314336220", + "2.1.3.5": "132731521314", + "2.1.3.6": "0", + "2.1.3.7": "0", + "2.1.4.1": "12813326425", + "2.1.4.2": "135053161", + "2.1.4.3": "15078973313", + "2.1.4.4": "314336220", + "2.1.4.5": "132731521314", + "2.1.4.6": "0", + "2.1.4.7": "0", + "2.1.5.1": "0", + "2.1.5.2": "0", + "2.1.5.3": "0", + "2.1.5.4": "0", + "2.1.5.5": "0", + "2.1.5.6": "0", + "2.1.5.7": "0", + "2.1.6.1": "0", + "2.1.6.2": "0", + "2.1.6.3": "0", + "2.1.6.4": "0", + "2.1.6.5": "0", + "2.1.6.6": "0", + "2.1.6.7": "0", + "2.1.7.1": "0", + "2.1.7.2": "0", + "2.1.7.3": "0", + "2.1.7.4": "0", + "2.1.7.5": "0", + "2.1.7.6": "0", + "2.1.7.7": "0", + "2.1.8.1": "0", + "2.1.8.2": "0", + "2.1.8.3": "0", + "2.1.8.4": "0", + "2.1.8.5": "0", + "2.1.8.6": "0", + "2.1.8.7": "0", + "2.1.9.1": "12685439", + "2.1.9.2": "0", + "2.1.9.3": "13188103", + "2.1.9.4": "0", + "2.1.9.5": "6717361", + "2.1.9.6": "0", + "2.1.9.7": "0", + "2.1.10.1": "1333629", + "2.1.10.2": "755094", + "2.1.10.3": "1854490", + "2.1.10.4": "2381335", + "2.1.10.5": "1059020007", + "2.1.10.6": "0", + "2.1.10.7": "0", + "2.1.11.1": "786060", + "2.1.11.2": "35", + "2.1.11.3": "64", + "2.1.11.4": "0", + "2.1.11.5": "291437231", + "2.1.11.6": "0", + "2.1.11.7": "0", + "2.1.12.1": "0", + "2.1.12.2": "0", + "2.1.12.3": "3292", + "2.1.12.4": "0", + "2.1.12.5": "0", + "2.1.12.6": "0", + "2.1.12.7": "0", + "2.1.13.1": "13471464", + "2.1.13.2": "0", + "2.1.13.3": "0", + "2.1.13.4": "0", + "2.1.13.5": "1121596659", + "2.1.13.6": "0", + "2.1.13.7": "0", + "2.1.14.1": "0", + "2.1.14.2": "0", + "2.1.14.3": "0", + "2.1.14.4": "0", + "2.1.14.5": "0", + "2.1.14.6": "0", + "2.1.14.7": "0", + "2.1.15.1": "0", + "2.1.15.2": "0", + "2.1.15.3": "0", + "2.1.15.4": "0", + "2.1.15.5": "0", + "2.1.15.6": "0", + "2.1.15.7": "0", + "2.1.16.1": "0", + "2.1.16.2": "0", + "2.1.16.3": "0", + "2.1.16.4": "0", + "2.1.16.5": "0", + "2.1.16.6": "0", + "2.1.16.7": "0", + "2.1.17.1": "0", + "2.1.17.2": "0", + "2.1.17.3": "0", + "2.1.17.4": "0", + "2.1.17.5": "0", + "2.1.17.6": "0", + "2.1.17.7": "0", + "2.1.18.1": "0", + "2.1.18.2": "0", + "2.1.18.3": "0", + "2.1.18.4": "0", + "2.1.18.5": "0", + "2.1.18.6": "0", + "2.1.18.7": "0", + "2.1.19.1": "0", + "2.1.19.2": "0", + "2.1.19.3": "0", + "2.1.19.4": "0", + "2.1.19.5": "0", + "2.1.19.6": "0", + "2.1.19.7": "0", + "2.1.20.1": "0", + "2.1.20.2": "0", + "2.1.20.3": "0", + "2.1.20.4": "0", + "2.1.20.5": "0", + "2.1.20.6": "0", + "2.1.20.7": "0", + "2.1.21.1": "0", + "2.1.21.2": "0", + "2.1.21.3": "0", + "2.1.21.4": "0", + "2.1.21.5": "0", + "2.1.21.6": "0", + "2.1.21.7": "0", + "2.1.22.1": "0", + "2.1.22.2": "0", + "2.1.22.3": "0", + "2.1.22.4": "0", + "2.1.22.5": "0", + "2.1.22.6": "0", + "2.1.22.7": "0", + "2.1.23.1": "976276", + "2.1.23.2": "42", + "2.1.23.3": "2010989", + "2.1.23.4": "0", + "2.1.23.5": "86506700", + "2.1.23.6": "0", + "2.1.23.7": "0", + "2.1.24.1": "4299190", + "2.1.24.2": "23", + "2.1.24.3": "524707", + "2.1.24.4": "0", + "2.1.24.5": "1211571089", + "2.1.24.6": "0", + "2.1.24.7": "0", + "2.1.25.1": "1491555", + "2.1.25.2": "755029", + "2.1.25.3": "2361587", + "2.1.25.4": "2381335", + "2.1.25.5": "37333757", + "2.1.25.6": "0", + "2.1.25.7": "0", + "2.1.26.1": "3686", + "2.1.26.2": "35", + "2.1.26.3": "3003", + "2.1.26.4": "0", + "2.1.26.5": "16931363", + "2.1.26.6": "0", + "2.1.26.7": "0", + "2.1.27.1": "2165", + "2.1.27.2": "0", + "2.1.27.3": "24786", + "2.1.27.4": "0", + "2.1.27.5": "2365546", + "2.1.27.6": "0", + "2.1.27.7": "0", + "2.1.28.1": "836135", + "2.1.28.2": "0", + "2.1.28.3": "10120877", + "2.1.28.4": "0", + "2.1.28.5": "2436877", + "2.1.28.6": "0", + "2.1.28.7": "0", + "2.1.29.1": "7196121", + "2.1.29.2": "0", + "2.1.29.3": "0", + "2.1.29.4": "0", + "2.1.29.5": "29267", + "2.1.29.6": "0", + "2.1.29.7": "0", + "2.1.30.1": "0", + "2.1.30.2": "0", + "2.1.30.3": "0", + "2.1.30.4": "0", + "2.1.30.5": "0", + "2.1.30.6": "0", + "2.1.30.7": "0", + "2.1.31.1": "0", + "2.1.31.2": "0", + "2.1.31.3": "0", + "2.1.31.4": "0", + "2.1.31.5": "0", + "2.1.31.6": "0", + "2.1.31.7": "0", + "2.1.32.1": "0", + "2.1.32.2": "0", + "2.1.32.3": "0", + "2.1.32.4": "0", + "2.1.32.5": "0", + "2.1.32.6": "0", + "2.1.32.7": "0", + "2.1.33.1": "0", + "2.1.33.2": "0", + "2.1.33.3": "0", + "2.1.33.4": "0", + "2.1.33.5": "2", + "2.1.33.6": "0", + "2.1.33.7": "0", + "2.1.34.1": "0", + "2.1.34.2": "0", + "2.1.34.3": "0", + "2.1.34.4": "0", + "2.1.34.5": "0", + "2.1.34.6": "0", + "2.1.34.7": "0", + "2.1.35.1": "0", + "2.1.35.2": "0", + "2.1.35.3": "0", + "2.1.35.4": "0", + "2.1.35.5": "0", + "2.1.35.6": "0", + "2.1.35.7": "0", + "2.1.36.1": "0", + "2.1.36.2": "0", + "2.1.36.3": "0", + "2.1.36.4": "0", + "2.1.36.5": "0", + "2.1.36.6": "0", + "2.1.36.7": "0", + "2.1.37.1": "E0", + "2.1.37.2": "E0", + "2.1.37.3": "E0", + "2.1.37.4": "E0", + "2.1.37.5": "E0", + "2.1.37.6": "", + "2.1.37.7": "", + "3.1.2.1": "EVEN_VLAN_UPLINK", + "3.1.2.2": "ODD_VLAN_UPLINK", + "3.1.2.3": "EVEN_VLAN_DOWNLIN", + "3.1.2.4": "ODD_VLAN_DOWNLINK", + "3.1.2.5": "Management", + "3.1.2.6": "LAG-1", + "3.1.2.7": "LAG-2", + "3.1.3.1": "21816639", + "3.1.3.2": "751328", + "3.1.3.3": "14010922", + "3.1.3.4": "2381370", + "3.1.3.5": "9297715", + "3.1.3.6": "0", + "3.1.3.7": "0", + "3.1.4.1": "0", + "3.1.4.2": "0", + "3.1.4.3": "0", + "3.1.4.4": "0", + "3.1.4.5": "0", + "3.1.4.6": "0", + "3.1.4.7": "0", + "3.1.5.1": "14805128", + "3.1.5.2": "755129", + "3.1.5.3": "15045949", + "3.1.5.4": "2381335", + "3.1.5.5": "1357175081", + "3.1.5.6": "0", + "3.1.5.7": "0", + "3.1.6.1": "0", + "3.1.6.2": "0", + "3.1.6.3": "0", + "3.1.6.4": "0", + "3.1.6.5": "0", + "3.1.6.6": "0", + "3.1.6.7": "0", + "3.1.7.1": "15250077610", + "3.1.7.2": "110445216", + "3.1.7.3": "12089036710", + "3.1.7.4": "354824130", + "3.1.7.5": "1389962972", + "3.1.7.6": "0", + "3.1.7.7": "0", + "3.1.8.1": "12813326425", + "3.1.8.2": "135053161", + "3.1.8.3": "15078973313", + "3.1.8.4": "314336220", + "3.1.8.5": "132731573180", + "3.1.8.6": "0", + "3.1.8.7": "0" + }, + "acdPortStatus": { + "1.1.2.1": "1000", + "1.1.2.2": "0", + "1.1.2.3": "0", + "1.1.2.4": "0", + "1.1.2.5": "100", + "1.1.2.6": "0", + "1.1.2.7": "0", + "1.1.3.1": "2", + "1.1.3.2": "0", + "1.1.3.3": "0", + "1.1.3.4": "0", + "1.1.3.5": "2", + "1.1.3.6": "0", + "1.1.3.7": "0", + "1.1.4.1": "1", + "1.1.4.2": "0", + "1.1.4.3": "0", + "1.1.4.4": "0", + "1.1.4.5": "1", + "1.1.4.6": "0", + "1.1.4.7": "0", + "1.1.5.1": "2", + "1.1.5.2": "0", + "1.1.5.3": "0", + "1.1.5.4": "0", + "1.1.5.5": "2", + "1.1.5.6": "0", + "1.1.5.7": "0", + "1.1.6.1": "1", + "1.1.6.2": "0", + "1.1.6.3": "0", + "1.1.6.4": "0", + "1.1.6.5": "1", + "1.1.6.6": "0", + "1.1.6.7": "0", + "1.1.7.1": "", + "1.1.7.2": "", + "1.1.7.3": "", + "1.1.7.4": "00 00 00 E0", + "1.1.7.5": "00 00 00 CF", + "1.1.7.6": "", + "1.1.7.7": "", + "1.1.8.1": "1", + "1.1.8.2": "2", + "1.1.8.3": "2", + "1.1.8.4": "2", + "1.1.8.5": "1", + "1.1.8.6": "2", + "1.1.8.7": "2", + "1.1.9.1": "00 00 02", + "1.1.9.2": "", + "1.1.9.3": "", + "1.1.9.4": "", + "1.1.9.5": "00 00 80", + "1.1.9.6": "", + "1.1.9.7": "", + "1.1.10.1": "2", + "1.1.10.2": "0", + "1.1.10.3": "0", + "1.1.10.4": "0", + "1.1.10.5": "2", + "1.1.10.6": "0", + "1.1.10.7": "0", + "1.1.11.1": "2", + "1.1.11.2": "0", + "1.1.11.3": "0", + "1.1.11.4": "0", + "1.1.11.5": "1", + "1.1.11.6": "0", + "1.1.11.7": "0", + "1.1.12.1": "1", + "1.1.12.2": "0", + "1.1.12.3": "0", + "1.1.12.4": "0", + "1.1.12.5": "2", + "1.1.12.6": "0", + "1.1.12.7": "0", + "1.1.13.1": "1", + "1.1.13.2": "0", + "1.1.13.3": "0", + "1.1.13.4": "0", + "1.1.13.5": "2", + "1.1.13.6": "0", + "1.1.13.7": "0", + "1.1.14.1": "1", + "1.1.14.2": "2", + "1.1.14.3": "2", + "1.1.14.4": "2", + "1.1.14.5": "1", + "1.1.14.6": "2", + "1.1.14.7": "2" + }, + "acdPortTableTid": { + "1.0": "11" + } + } + }, + "ACD-REGULATOR-MIB": { + "tables": { + "acdRegulator": { + "1.1.2.1": "150Mb_Reg", + "1.1.3.1": "154000", + "1.1.4.1": "8", + "1.1.5.1": "40000", + "1.1.6.1": "8", + "1.1.7.1": "1", + "1.1.8.1": "2", + "1.1.9.1": "1", + "1.1.10.1": "1", + "1.1.11.1": "165000", + "1.1.12.1": "40000", + "2.1.2.1": "2716569892", + "2.1.3.1": "5", + "2.1.4.1": "24191406372", + "2.1.5.1": "24075872", + "2.1.6.1": "0", + "2.1.7.1": "24075872", + "2.1.8.1": "0", + "2.1.9.1": "1327175847", + "2.1.10.1": "0", + "2.1.11.1": "1327175847", + "2.1.12.1": "1167711", + "2.1.13.1": "0", + "2.1.14.1": "1167711", + "2.1.15.1": "0", + "2.1.16.1": "15105527127", + "2.1.17.1": "16295758", + "2.1.18.1": "9085879245", + "2.1.19.1": "7780114", + "2.1.20.1": "1327175847", + "2.1.21.1": "1167711", + "2.1.22.1": "0", + "2.1.23.1": "0", + "2.1.24.1": "0" + }, + "acdRegulatorTableTid": { + "1.0": "28" + } + } + }, + "ACD-SFP-MIB": { + "tables": { + "acdSfp": { + "1.1.2.1": "1", + "1.1.2.3": "3", + "1.1.3.1": "7", + "1.1.3.3": "128", + "1.1.4.1": "OEM", + "1.1.4.3": "PROLABS", + "1.1.5.1": "00 00 00", + "1.1.5.3": "00 00 00", + "1.1.6.1": "53 46 50 2D 4C 58 2D 53 4D 00 00 00 00 00 00 00", + "1.1.6.3": "SFP-1000BASE-T-C", + "1.1.7.1": "31 2E 30 20 00 05 1E 4E 43 49 35 30 4C 30 38 35", + "1.1.7.3": "41 32 20 20 00 00 00 50 52 4C 39 34 30 30 33 39", + "1.1.8.1": "1310", + "1.1.8.3": "0", + "1.1.9.1": "NCI50L0853", + "1.1.9.3": "PRL940039251", + "1.1.10.1": "2009", + "1.1.10.3": "2021", + "1.1.11.1": "10", + "1.1.11.3": "8", + "1.1.12.1": "1", + "1.1.12.3": "16", + "1.1.13.1": "0", + "1.1.13.3": "0", + "1.1.14.1": "0", + "1.1.14.3": "0", + "1.1.15.1": "1", + "1.1.15.3": "1", + "1.1.16.1": "2", + "1.1.16.3": "2", + "1.1.17.1": "2", + "1.1.17.3": "2", + "1.1.18.1": "2", + "1.1.18.3": "2", + "1.1.19.1": "3", + "1.1.19.3": "3", + "1.1.20.1": "4", + "1.1.20.3": "4", + "1.1.21.1": "00 00 00 02 12 00 0D 01", + "1.1.21.3": "00 00 00 08 00 00 00 00", + "2.1.2.1": "1", + "2.1.2.3": "3", + "2.1.3.1": "0", + "2.1.3.3": "0", + "2.1.4.1": "0", + "2.1.4.3": "0", + "2.1.5.1": "0", + "2.1.5.3": "0", + "2.1.6.1": "0", + "2.1.6.3": "0", + "2.1.7.1": "0", + "2.1.7.3": "0", + "2.1.8.1": "-inf dBm", + "2.1.8.3": "-inf dBm", + "2.1.9.1": "-inf dBm", + "2.1.9.3": "-inf dBm", + "3.1.2.1": "1", + "3.1.2.3": "3", + "3.1.3.1": "0", + "3.1.3.3": "0", + "3.1.4.1": "0", + "3.1.4.3": "0", + "3.1.5.1": "0", + "3.1.5.3": "0", + "3.1.6.1": "0", + "3.1.6.3": "0", + "3.1.7.1": "0", + "3.1.7.3": "0", + "3.1.8.1": "0", + "3.1.8.3": "0", + "3.1.9.1": "0", + "3.1.9.3": "0", + "3.1.10.1": "0", + "3.1.10.3": "0", + "3.1.11.1": "0", + "3.1.11.3": "0", + "3.1.12.1": "0", + "3.1.12.3": "0", + "3.1.13.1": "0", + "3.1.13.3": "0", + "3.1.14.1": "0", + "3.1.14.3": "0", + "3.1.15.1": "0", + "3.1.15.3": "0", + "3.1.16.1": "0", + "3.1.16.3": "0", + "3.1.17.1": "0", + "3.1.17.3": "0", + "3.1.18.1": "0", + "3.1.18.3": "0", + "3.1.19.1": "0", + "3.1.19.3": "0", + "3.1.20.1": "0", + "3.1.20.3": "0", + "3.1.21.1": "0", + "3.1.21.3": "0", + "3.1.22.1": "0", + "3.1.22.3": "0", + "3.1.23.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.23.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.24.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.24.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.25.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.25.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.26.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.26.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.27.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.27.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.28.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.28.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.29.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.29.3": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.30.1": "2D 69 6E 00 20 64 42 6D 0A", + "3.1.30.3": "2D 69 6E 00 20 64 42 6D 0A", + "4.1.2.1": "1", + "4.1.2.3": "3", + "4.1.3.1": "2", + "4.1.3.3": "2", + "4.1.4.1": "2", + "4.1.4.3": "2", + "4.1.5.1": "2", + "4.1.5.3": "2", + "4.1.6.1": "2", + "4.1.6.3": "2", + "4.1.7.1": "2", + "4.1.7.3": "2", + "4.1.8.1": "2", + "4.1.8.3": "2", + "4.1.9.1": "2", + "4.1.9.3": "2", + "4.1.10.1": "2", + "4.1.10.3": "2", + "4.1.11.1": "2", + "4.1.11.3": "2", + "4.1.12.1": "2", + "4.1.12.3": "2", + "4.1.13.1": "2", + "4.1.13.3": "2", + "4.1.14.1": "2", + "4.1.14.3": "2", + "4.1.15.1": "2", + "4.1.15.3": "2", + "4.1.16.1": "2", + "4.1.16.3": "2", + "4.1.17.1": "2", + "4.1.17.3": "2", + "4.1.18.1": "2", + "4.1.18.3": "2", + "4.1.19.1": "2", + "4.1.19.3": "2", + "4.1.20.1": "2", + "4.1.20.3": "2", + "4.1.21.1": "2", + "4.1.21.3": "2", + "4.1.22.1": "2", + "4.1.22.3": "2" + } + } + }, + "ACD-SMAP-MIB": { + "tables": { + "acdSmapConfig": { + "1.1.2.1": "1", + "1.1.2.2": "1", + "1.1.2.3": "1", + "1.1.2.4": "1", + "1.1.2.51": "1", + "1.1.2.52": "1", + "1.1.2.53": "1", + "1.1.2.54": "1", + "1.1.2.55": "1", + "1.1.2.56": "1", + "1.1.3.1": "8P0D-8P0D", + "1.1.3.2": "8P0D-7P1D", + "1.1.3.3": "8P0D-6P2D", + "1.1.3.4": "8P0D-5P3D", + "1.1.3.51": "*EVEN_VLAN_UPLINK", + "1.1.3.52": "*ODD_VLAN_UPLINK", + "1.1.3.53": "*EVEN_VLAN_DOWNLIN", + "1.1.3.54": "*ODD_VLAN_DOWNLINK", + "1.1.3.55": "*LAG-1", + "1.1.3.56": "*LAG-2", + "1.1.4.1": "1", + "1.1.4.2": "1", + "1.1.4.3": "1", + "1.1.4.4": "1", + "1.1.4.51": "1", + "1.1.4.52": "1", + "1.1.4.53": "1", + "1.1.4.54": "1", + "1.1.4.55": "1", + "1.1.4.56": "1", + "1.1.5.1": "2", + "1.1.5.2": "2", + "1.1.5.3": "2", + "1.1.5.4": "2", + "1.1.5.51": "2", + "1.1.5.52": "2", + "1.1.5.53": "2", + "1.1.5.54": "2", + "1.1.5.55": "2", + "1.1.5.56": "2", + "1.1.6.1": "2", + "1.1.6.2": "2", + "1.1.6.3": "2", + "1.1.6.4": "2", + "1.1.6.51": "2", + "1.1.6.52": "2", + "1.1.6.53": "2", + "1.1.6.54": "2", + "1.1.6.55": "2", + "1.1.6.56": "2", + "2.1.2.1.0": "1", + "2.1.2.1.1": "1", + "2.1.2.1.2": "1", + "2.1.2.1.3": "1", + "2.1.2.1.4": "1", + "2.1.2.1.5": "1", + "2.1.2.1.6": "1", + "2.1.2.1.7": "1", + "2.1.2.2.0": "1", + "2.1.2.2.1": "1", + "2.1.2.2.2": "1", + "2.1.2.2.3": "1", + "2.1.2.2.4": "1", + "2.1.2.2.5": "1", + "2.1.2.2.6": "1", + "2.1.2.2.7": "1", + "2.1.2.3.0": "1", + "2.1.2.3.1": "1", + "2.1.2.3.2": "1", + "2.1.2.3.3": "1", + "2.1.2.3.4": "1", + "2.1.2.3.5": "1", + "2.1.2.3.6": "1", + "2.1.2.3.7": "1", + "2.1.2.4.0": "1", + "2.1.2.4.1": "1", + "2.1.2.4.2": "1", + "2.1.2.4.3": "1", + "2.1.2.4.4": "1", + "2.1.2.4.5": "1", + "2.1.2.4.6": "1", + "2.1.2.4.7": "1", + "2.1.2.51.0": "1", + "2.1.2.51.1": "1", + "2.1.2.51.2": "1", + "2.1.2.51.3": "1", + "2.1.2.51.4": "1", + "2.1.2.51.5": "1", + "2.1.2.51.6": "1", + "2.1.2.51.7": "1", + "2.1.2.52.0": "1", + "2.1.2.52.1": "1", + "2.1.2.52.2": "1", + "2.1.2.52.3": "1", + "2.1.2.52.4": "1", + "2.1.2.52.5": "1", + "2.1.2.52.6": "1", + "2.1.2.52.7": "1", + "2.1.2.53.0": "1", + "2.1.2.53.1": "1", + "2.1.2.53.2": "1", + "2.1.2.53.3": "1", + "2.1.2.53.4": "1", + "2.1.2.53.5": "1", + "2.1.2.53.6": "1", + "2.1.2.53.7": "1", + "2.1.2.54.0": "1", + "2.1.2.54.1": "1", + "2.1.2.54.2": "1", + "2.1.2.54.3": "1", + "2.1.2.54.4": "1", + "2.1.2.54.5": "1", + "2.1.2.54.6": "1", + "2.1.2.54.7": "1", + "2.1.2.55.0": "1", + "2.1.2.55.1": "1", + "2.1.2.55.2": "1", + "2.1.2.55.3": "1", + "2.1.2.55.4": "1", + "2.1.2.55.5": "1", + "2.1.2.55.6": "1", + "2.1.2.55.7": "1", + "2.1.2.56.0": "1", + "2.1.2.56.1": "1", + "2.1.2.56.2": "1", + "2.1.2.56.3": "1", + "2.1.2.56.4": "1", + "2.1.2.56.5": "1", + "2.1.2.56.6": "1", + "2.1.2.56.7": "1", + "2.1.3.1.0": "0", + "2.1.3.1.1": "1", + "2.1.3.1.2": "2", + "2.1.3.1.3": "3", + "2.1.3.1.4": "4", + "2.1.3.1.5": "5", + "2.1.3.1.6": "6", + "2.1.3.1.7": "7", + "2.1.3.2.0": "0", + "2.1.3.2.1": "1", + "2.1.3.2.2": "2", + "2.1.3.2.3": "3", + "2.1.3.2.4": "5", + "2.1.3.2.5": "5", + "2.1.3.2.6": "6", + "2.1.3.2.7": "7", + "2.1.3.3.0": "0", + "2.1.3.3.1": "1", + "2.1.3.3.2": "3", + "2.1.3.3.3": "3", + "2.1.3.3.4": "5", + "2.1.3.3.5": "5", + "2.1.3.3.6": "6", + "2.1.3.3.7": "7", + "2.1.3.4.0": "1", + "2.1.3.4.1": "1", + "2.1.3.4.2": "3", + "2.1.3.4.3": "3", + "2.1.3.4.4": "5", + "2.1.3.4.5": "5", + "2.1.3.4.6": "6", + "2.1.3.4.7": "7", + "2.1.3.51.0": "0", + "2.1.3.51.1": "1", + "2.1.3.51.2": "2", + "2.1.3.51.3": "3", + "2.1.3.51.4": "4", + "2.1.3.51.5": "5", + "2.1.3.51.6": "6", + "2.1.3.51.7": "7", + "2.1.3.52.0": "0", + "2.1.3.52.1": "1", + "2.1.3.52.2": "2", + "2.1.3.52.3": "3", + "2.1.3.52.4": "4", + "2.1.3.52.5": "5", + "2.1.3.52.6": "6", + "2.1.3.52.7": "7", + "2.1.3.53.0": "0", + "2.1.3.53.1": "1", + "2.1.3.53.2": "2", + "2.1.3.53.3": "3", + "2.1.3.53.4": "4", + "2.1.3.53.5": "5", + "2.1.3.53.6": "6", + "2.1.3.53.7": "7", + "2.1.3.54.0": "0", + "2.1.3.54.1": "1", + "2.1.3.54.2": "2", + "2.1.3.54.3": "3", + "2.1.3.54.4": "4", + "2.1.3.54.5": "5", + "2.1.3.54.6": "6", + "2.1.3.54.7": "7", + "2.1.3.55.0": "0", + "2.1.3.55.1": "1", + "2.1.3.55.2": "2", + "2.1.3.55.3": "3", + "2.1.3.55.4": "4", + "2.1.3.55.5": "5", + "2.1.3.55.6": "6", + "2.1.3.55.7": "7", + "2.1.3.56.0": "0", + "2.1.3.56.1": "1", + "2.1.3.56.2": "2", + "2.1.3.56.3": "3", + "2.1.3.56.4": "4", + "2.1.3.56.5": "5", + "2.1.3.56.6": "6", + "2.1.3.56.7": "7", + "2.1.4.1.0": "0", + "2.1.4.1.1": "1", + "2.1.4.1.2": "2", + "2.1.4.1.3": "3", + "2.1.4.1.4": "4", + "2.1.4.1.5": "5", + "2.1.4.1.6": "6", + "2.1.4.1.7": "7", + "2.1.4.2.0": "0", + "2.1.4.2.1": "1", + "2.1.4.2.2": "2", + "2.1.4.2.3": "3", + "2.1.4.2.4": "4", + "2.1.4.2.5": "4", + "2.1.4.2.6": "6", + "2.1.4.2.7": "7", + "2.1.4.3.0": "0", + "2.1.4.3.1": "1", + "2.1.4.3.2": "2", + "2.1.4.3.3": "2", + "2.1.4.3.4": "4", + "2.1.4.3.5": "4", + "2.1.4.3.6": "6", + "2.1.4.3.7": "7", + "2.1.4.4.0": "0", + "2.1.4.4.1": "0", + "2.1.4.4.2": "2", + "2.1.4.4.3": "2", + "2.1.4.4.4": "4", + "2.1.4.4.5": "4", + "2.1.4.4.6": "6", + "2.1.4.4.7": "7", + "2.1.4.51.0": "0", + "2.1.4.51.1": "1", + "2.1.4.51.2": "2", + "2.1.4.51.3": "3", + "2.1.4.51.4": "4", + "2.1.4.51.5": "5", + "2.1.4.51.6": "6", + "2.1.4.51.7": "7", + "2.1.4.52.0": "0", + "2.1.4.52.1": "1", + "2.1.4.52.2": "2", + "2.1.4.52.3": "3", + "2.1.4.52.4": "4", + "2.1.4.52.5": "5", + "2.1.4.52.6": "6", + "2.1.4.52.7": "7", + "2.1.4.53.0": "0", + "2.1.4.53.1": "1", + "2.1.4.53.2": "2", + "2.1.4.53.3": "3", + "2.1.4.53.4": "4", + "2.1.4.53.5": "5", + "2.1.4.53.6": "6", + "2.1.4.53.7": "7", + "2.1.4.54.0": "0", + "2.1.4.54.1": "1", + "2.1.4.54.2": "2", + "2.1.4.54.3": "3", + "2.1.4.54.4": "4", + "2.1.4.54.5": "5", + "2.1.4.54.6": "6", + "2.1.4.54.7": "7", + "2.1.4.55.0": "0", + "2.1.4.55.1": "1", + "2.1.4.55.2": "2", + "2.1.4.55.3": "3", + "2.1.4.55.4": "4", + "2.1.4.55.5": "5", + "2.1.4.55.6": "6", + "2.1.4.55.7": "7", + "2.1.4.56.0": "0", + "2.1.4.56.1": "1", + "2.1.4.56.2": "2", + "2.1.4.56.3": "3", + "2.1.4.56.4": "4", + "2.1.4.56.5": "5", + "2.1.4.56.6": "6", + "2.1.4.56.7": "7", + "5.1.2.1": "1", + "5.1.2.2": "1", + "5.1.2.3": "1", + "5.1.2.4": "1", + "5.1.2.5": "1", + "5.1.2.6": "1", + "5.1.2.7": "1", + "6.1.2.1.1": "0", + "6.1.2.1.2": "1", + "6.1.2.1.3": "2", + "6.1.2.1.4": "3", + "6.1.2.1.5": "4", + "6.1.2.1.6": "5", + "6.1.2.1.7": "6", + "6.1.2.1.8": "7", + "6.1.2.2.1": "0", + "6.1.2.2.2": "1", + "6.1.2.2.3": "2", + "6.1.2.2.4": "3", + "6.1.2.2.5": "4", + "6.1.2.2.6": "5", + "6.1.2.2.7": "6", + "6.1.2.2.8": "7", + "6.1.2.3.1": "0", + "6.1.2.3.2": "1", + "6.1.2.3.3": "2", + "6.1.2.3.4": "3", + "6.1.2.3.5": "4", + "6.1.2.3.6": "5", + "6.1.2.3.7": "6", + "6.1.2.3.8": "7", + "6.1.2.4.1": "0", + "6.1.2.4.2": "1", + "6.1.2.4.3": "2", + "6.1.2.4.4": "3", + "6.1.2.4.5": "4", + "6.1.2.4.6": "5", + "6.1.2.4.7": "6", + "6.1.2.4.8": "7", + "6.1.2.5.1": "0", + "6.1.2.5.2": "1", + "6.1.2.5.3": "2", + "6.1.2.5.4": "3", + "6.1.2.5.5": "4", + "6.1.2.5.6": "5", + "6.1.2.5.7": "6", + "6.1.2.5.8": "7", + "6.1.2.6.1": "0", + "6.1.2.6.2": "1", + "6.1.2.6.3": "2", + "6.1.2.6.4": "3", + "6.1.2.6.5": "4", + "6.1.2.6.6": "5", + "6.1.2.6.7": "6", + "6.1.2.6.8": "7", + "6.1.2.7.1": "0", + "6.1.2.7.2": "1", + "6.1.2.7.3": "2", + "6.1.2.7.4": "3", + "6.1.2.7.5": "4", + "6.1.2.7.6": "5", + "6.1.2.7.7": "6", + "6.1.2.7.8": "7", + "6.1.3.1.1": "0", + "6.1.3.1.2": "1", + "6.1.3.1.3": "2", + "6.1.3.1.4": "3", + "6.1.3.1.5": "4", + "6.1.3.1.6": "5", + "6.1.3.1.7": "6", + "6.1.3.1.8": "7", + "6.1.3.2.1": "0", + "6.1.3.2.2": "1", + "6.1.3.2.3": "2", + "6.1.3.2.4": "3", + "6.1.3.2.5": "4", + "6.1.3.2.6": "5", + "6.1.3.2.7": "6", + "6.1.3.2.8": "7", + "6.1.3.3.1": "0", + "6.1.3.3.2": "1", + "6.1.3.3.3": "2", + "6.1.3.3.4": "3", + "6.1.3.3.5": "4", + "6.1.3.3.6": "5", + "6.1.3.3.7": "6", + "6.1.3.3.8": "7", + "6.1.3.4.1": "0", + "6.1.3.4.2": "1", + "6.1.3.4.3": "2", + "6.1.3.4.4": "3", + "6.1.3.4.5": "4", + "6.1.3.4.6": "5", + "6.1.3.4.7": "6", + "6.1.3.4.8": "7", + "6.1.3.5.1": "0", + "6.1.3.5.2": "1", + "6.1.3.5.3": "2", + "6.1.3.5.4": "3", + "6.1.3.5.5": "4", + "6.1.3.5.6": "5", + "6.1.3.5.7": "6", + "6.1.3.5.8": "7", + "6.1.3.6.1": "0", + "6.1.3.6.2": "1", + "6.1.3.6.3": "2", + "6.1.3.6.4": "3", + "6.1.3.6.5": "4", + "6.1.3.6.6": "5", + "6.1.3.6.7": "6", + "6.1.3.6.8": "7", + "6.1.3.7.1": "0", + "6.1.3.7.2": "1", + "6.1.3.7.3": "2", + "6.1.3.7.4": "3", + "6.1.3.7.5": "4", + "6.1.3.7.6": "5", + "6.1.3.7.7": "6", + "6.1.3.7.8": "7", + "6.1.4.1.1": "0", + "6.1.4.1.2": "1", + "6.1.4.1.3": "2", + "6.1.4.1.4": "3", + "6.1.4.1.5": "4", + "6.1.4.1.6": "5", + "6.1.4.1.7": "6", + "6.1.4.1.8": "7", + "6.1.4.2.1": "0", + "6.1.4.2.2": "1", + "6.1.4.2.3": "2", + "6.1.4.2.4": "3", + "6.1.4.2.5": "4", + "6.1.4.2.6": "5", + "6.1.4.2.7": "6", + "6.1.4.2.8": "7", + "6.1.4.3.1": "0", + "6.1.4.3.2": "1", + "6.1.4.3.3": "2", + "6.1.4.3.4": "3", + "6.1.4.3.5": "4", + "6.1.4.3.6": "5", + "6.1.4.3.7": "6", + "6.1.4.3.8": "7", + "6.1.4.4.1": "0", + "6.1.4.4.2": "1", + "6.1.4.4.3": "2", + "6.1.4.4.4": "3", + "6.1.4.4.5": "4", + "6.1.4.4.6": "5", + "6.1.4.4.7": "6", + "6.1.4.4.8": "7", + "6.1.4.5.1": "0", + "6.1.4.5.2": "1", + "6.1.4.5.3": "2", + "6.1.4.5.4": "3", + "6.1.4.5.5": "4", + "6.1.4.5.6": "5", + "6.1.4.5.7": "6", + "6.1.4.5.8": "7", + "6.1.4.6.1": "0", + "6.1.4.6.2": "1", + "6.1.4.6.3": "2", + "6.1.4.6.4": "3", + "6.1.4.6.5": "4", + "6.1.4.6.6": "5", + "6.1.4.6.7": "6", + "6.1.4.6.8": "7", + "6.1.4.7.1": "0", + "6.1.4.7.2": "1", + "6.1.4.7.3": "2", + "6.1.4.7.4": "3", + "6.1.4.7.5": "4", + "6.1.4.7.6": "5", + "6.1.4.7.7": "6", + "6.1.4.7.8": "7" + } + } + }, + "ACD-TID-MIB": { + "tables": { + "acdTidGeneral": { + "1.0": "294", + "2.0": "101" + }, + "acdTidGlobalCfg": { + "2.0": "25213" + }, + "acdTidInfo": { + "1.1.2.1": ".1.3.6.1.4.1.22420.2.2.3", + "1.1.2.2": ".1.3.6.1.4.1.22420.2.2.4", + "1.1.2.3": ".1.3.6.1.4.1.22420.2.1.10", + "1.1.2.4": ".1.3.6.1.4.1.22420.2.1.11", + "1.1.2.5": ".1.3.6.1.4.1.22420.2.9.1.1.1", + "1.1.2.6": ".1.3.6.1.4.1.22420.2.3.1", + "1.1.2.7": ".1.3.6.1.4.1.22420.2.6.1", + "1.1.3.1": "1", + "1.1.3.2": "1", + "1.1.3.3": "1", + "1.1.3.4": "2", + "1.1.3.5": "1", + "1.1.3.6": "1", + "1.1.3.7": "1", + "1.1.4.1": "Transaction Identifier for acdSmapL2FilterTable", + "1.1.4.2": "Transaction Identifier for acdSmapIPv4FilterTable", + "1.1.4.3": "Transaction Identifier for acdAlarmCfgTable", + "1.1.4.4": "Transaction Identifier for acdAlarmStatusTable", + "1.1.4.5": "Transaction Identifier for acdPortConfigTable", + "1.1.4.6": "Transaction Identifier for acdPolicyTable", + "1.1.4.7": "Transaction Identifier for acdRegulatorTable", + "1.1.5.1": "2", + "1.1.5.2": "1", + "1.1.5.3": "247", + "1.1.5.4": "101", + "1.1.5.5": "11", + "1.1.5.6": "5", + "1.1.5.7": "28" + } + } + }, + "IEEE-802.1": { + "tables": { + "ieee8021BridgeMIB": { + "1.5.1.0": "9", + "1.5.2.1.2.1": "1", + "1.5.2.1.2.2": "1", + "1.5.2.1.2.3": "1", + "1.5.2.1.2.4": "1", + "1.5.2.1.2.5": "1", + "1.5.2.1.2.6": "1", + "1.5.2.1.2.7": "1", + "1.5.2.1.2.8": "1", + "1.5.2.1.3.1": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.2": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.3": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.4": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.5": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.6": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 35 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.7": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 36 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.3.8": "59 2E 31 37 33 31 20 6C 65 76 65 6C 20 37 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00", + "1.5.2.1.4.1": "0", + "1.5.2.1.4.2": "1", + "1.5.2.1.4.3": "2", + "1.5.2.1.4.4": "3", + "1.5.2.1.4.5": "4", + "1.5.2.1.4.6": "5", + "1.5.2.1.4.7": "6", + "1.5.2.1.4.8": "7", + "1.5.2.1.5.1": "0", + "1.5.2.1.5.2": "0", + "1.5.2.1.5.3": "0", + "1.5.2.1.5.4": "0", + "1.5.2.1.5.5": "0", + "1.5.2.1.5.6": "0", + "1.5.2.1.5.7": "0", + "1.5.2.1.5.8": "0", + "1.5.2.1.6.1": "1", + "1.5.2.1.6.2": "1", + "1.5.2.1.6.3": "1", + "1.5.2.1.6.4": "1", + "1.5.2.1.6.5": "1", + "1.5.2.1.6.6": "1", + "1.5.2.1.6.7": "1", + "1.5.2.1.6.8": "1", + "1.5.2.1.7.1": "1", + "1.5.2.1.7.2": "1", + "1.5.2.1.7.3": "1", + "1.5.2.1.7.4": "1", + "1.5.2.1.7.5": "1", + "1.5.2.1.7.6": "1", + "1.5.2.1.7.7": "1", + "1.5.2.1.7.8": "1", + "1.5.2.1.8.1": "1", + "1.5.2.1.8.2": "1", + "1.5.2.1.8.3": "1", + "1.5.2.1.8.4": "1", + "1.5.2.1.8.5": "1", + "1.5.2.1.8.6": "1", + "1.5.2.1.8.7": "1", + "1.5.2.1.8.8": "1" + }, + "lldpMIB": { + "1.1.9.1.2.1": "01 80 C2 00 00 0E", + "1.2.1.0": "15:18:20:13.08", + "1.2.2.0": "28", + "1.2.3.0": "27", + "1.2.4.0": "0", + "1.2.5.0": "27", + "1.2.6.1.3.1.1": "3011688", + "1.2.6.1.3.2.1": "3011688", + "1.2.6.1.3.3.1": "3011688", + "1.2.6.1.3.4.1": "3011688", + "1.2.6.1.3.5.1": "0", + "1.2.6.1.4.1.1": "0", + "1.2.6.1.4.2.1": "0", + "1.2.6.1.4.3.1": "0", + "1.2.6.1.4.4.1": "0", + "1.2.6.1.4.5.1": "0", + "1.2.7.1.3.1.1": "0", + "1.2.7.1.3.2.1": "0", + "1.2.7.1.3.3.1": "0", + "1.2.7.1.3.4.1": "0", + "1.2.7.1.3.5.1": "0", + "1.2.7.1.4.1.1": "0", + "1.2.7.1.4.2.1": "0", + "1.2.7.1.4.3.1": "0", + "1.2.7.1.4.4.1": "0", + "1.2.7.1.4.5.1": "0", + "1.2.7.1.5.1.1": "1333527", + "1.2.7.1.5.2.1": "754988", + "1.2.7.1.5.3.1": "1854347", + "1.2.7.1.5.4.1": "2381333", + "1.2.7.1.5.5.1": "0", + "1.2.7.1.6.1.1": "0", + "1.2.7.1.6.2.1": "0", + "1.2.7.1.6.3.1": "0", + "1.2.7.1.6.4.1": "0", + "1.2.7.1.6.5.1": "0", + "1.2.7.1.7.1.1": "0", + "1.2.7.1.7.2.1": "0", + "1.2.7.1.7.3.1": "12", + "1.2.7.1.7.4.1": "0", + "1.2.7.1.7.5.1": "0", + "1.2.7.1.8.1.1": "12", + "1.2.7.1.8.2.1": "12", + "1.2.7.1.8.3.1": "2", + "1.2.7.1.8.4.1": "1", + "1.2.7.1.8.5.1": "0", + "1.4.1.1.5.105317634.1.1.2": "4", + "1.4.1.1.6.105317634.1.1.2": "9C E1 76 13 80 D9", + "1.4.1.1.7.105317634.1.1.2": "5", + "1.4.1.1.8.105317634.1.1.2": "GigabitEthernet0/0/0/0", + "1.4.1.1.9.105317634.1.1.2": "", + "1.4.1.1.10.105317634.1.1.2": "LNBT-NCS-55A2-001.gilarivertel.", + "1.4.1.1.11.105317634.1.1.2": "7.5.2, NCS-5500", + "1.4.1.1.14.105317634.1.1.2": "2", + "1.4.1.1.15.105317634.1.1.2": "2", + "1.4.2.1.3.105317634.1.1.2.1.4.10.10.20.160": "2", + "1.4.2.1.3.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54": "2", + "1.4.2.1.4.105317634.1.1.2.1.4.10.10.20.160": "68", + "1.4.2.1.4.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54": "68", + "1.4.2.1.5.105317634.1.1.2.1.4.10.10.20.160": ".0.0.0", + "1.4.2.1.5.105317634.1.1.2.2.16.38.4.87.192.0.0.0.0.0.0.0.0.0.0.0.54": ".0.0.0" + } + } + }, + "IF-MIB::ifXTable": { + "tables": { + "ifConnectorPresent": { + "1": "true", + "2": "true", + "3": "true", + "4": "true", + "5": "true", + "6": "true", + "7": "true", + "1003": "true" + }, + "ifCounterDiscontinuityTime": { + "1": "0:0:00:00.00", + "2": "0:0:00:00.00", + "3": "0:0:00:00.00", + "4": "0:0:00:00.00", + "5": "0:0:00:00.00", + "6": "0:0:00:00.00", + "7": "0:0:00:00.00", + "1003": "0:0:00:00.00" + }, + "ifHCInBroadcastPkts": { + "1": "786060", + "2": "35", + "3": "64", + "4": "0", + "5": "291433787", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCInMulticastPkts": { + "1": "1333618", + "2": "755094", + "3": "1854490", + "4": "2381335", + "5": "1059008058", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCInOctets": { + "1": "12813324665", + "2": "135053161", + "3": "15078973313", + "4": "314336220", + "5": "132727052162", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCInUcastPkts": { + "1": "12685439", + "2": "0", + "3": "13188103", + "4": "0", + "5": "6690176", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCOutBroadcastPkts": { + "1": "64", + "2": "0", + "3": "24", + "4": "0", + "5": "558851", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCOutMulticastPkts": { + "1": "1327114", + "2": "751328", + "3": "1854514", + "4": "2381370", + "5": "6", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCOutOctets": { + "1": "15250068986", + "2": "110445216", + "3": "12089036710", + "4": "354824130", + "5": "1387157336", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHCOutUcastPkts": { + "1": "20489384", + "2": "0", + "3": "12156384", + "4": "0", + "5": "8711365", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifHighSpeed": { + "1": "1000", + "2": "0", + "3": "0", + "4": "0", + "5": "100", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInBroadcastPkts": { + "1": "786060", + "2": "35", + "3": "64", + "4": "0", + "5": "291433787", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInMulticastPkts": { + "1": "1333618", + "2": "755094", + "3": "1854490", + "4": "2381335", + "5": "1059008058", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifName": { + "1": "EVEN_VLAN_UPLINK", + "2": "ODD_VLAN_UPLINK", + "3": "EVEN_VLAN_DOWNLIN", + "4": "ODD_VLAN_DOWNLINK", + "5": "Management", + "6": "LAG-1", + "7": "LAG-2", + "1003": "VLAN_MGMT" + }, + "ifOutBroadcastPkts": { + "1": "64", + "2": "0", + "3": "24", + "4": "0", + "5": "558851", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifOutMulticastPkts": { + "1": "1327114", + "2": "751328", + "3": "1854514", + "4": "2381370", + "5": "6", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifPromiscuousMode": { + "1": "false", + "2": "false", + "3": "false", + "4": "false", + "5": "false", + "6": "false", + "7": "false", + "1003": "false" + }, + "ifTableLastChange": { + "0": "0:0:00:00.00" + } + } + }, + "IF-MIB::interfaces": { + "tables": { + "ifAdminStatus": { + "1": "up", + "2": "up", + "3": "up", + "4": "up", + "5": "up", + "6": "up", + "7": "up", + "1003": "up" + }, + "ifDescr": { + "1": "EVEN_VLAN_UPLINK", + "2": "ODD_VLAN_UPLINK", + "3": "EVEN_VLAN_DOWNLIN", + "4": "ODD_VLAN_DOWNLINK", + "5": "Management", + "6": "LAG-1", + "7": "LAG-2", + "1003": "VLAN_MGMT" + }, + "ifInDiscards": { + "1": "0", + "2": "0", + "3": "0", + "4": "0", + "5": "0", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInErrors": { + "1": "0", + "2": "0", + "3": "0", + "4": "0", + "5": "0", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInNUcastPkts": { + "1": "2119675", + "2": "755129", + "3": "1854554", + "4": "2381335", + "5": "1350437934", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInOctets": { + "1": "4223389593", + "2": "135053161", + "3": "2194071425", + "4": "314336220", + "5": "3877078151", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInUcastPkts": { + "1": "12685439", + "2": "0", + "3": "13188103", + "4": "0", + "5": "6684985", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifInUnknownProtos": { + "1": "0", + "2": "0", + "3": "0", + "4": "0", + "5": "0", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifIndex": { + "1": "1", + "2": "2", + "3": "3", + "4": "4", + "5": "5", + "6": "6", + "7": "7", + "1003": "1003" + }, + "ifLastChange": { + "1": "0:0:00:00.00", + "2": "0:0:00:00.00", + "3": "0:0:00:00.00", + "4": "0:0:00:00.00", + "5": "0:0:00:00.00", + "6": "0:0:00:00.00", + "7": "0:0:00:00.00", + "1003": "0:0:00:00.00" + }, + "ifMtu": { + "1": "4096", + "2": "4096", + "3": "2000", + "4": "4096", + "5": "2000", + "6": "10240", + "7": "10240", + "1003": "2000" + }, + "ifNumber": { + "0": "8" + }, + "ifOperStatus": { + "1": "up", + "2": "down", + "3": "down", + "4": "down", + "5": "up", + "6": "down", + "7": "down", + "1003": "up" + }, + "ifOutDiscards": { + "1": "0", + "2": "0", + "3": "0", + "4": "0", + "5": "0", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifOutErrors": { + "1": "0", + "2": "0", + "3": "0", + "4": "0", + "5": "0", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifOutNUcastPkts": { + "1": "1327175", + "2": "751328", + "3": "1854538", + "4": "2381370", + "5": "558852", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifOutOctets": { + "1": "2365165170", + "2": "110445216", + "3": "3499102118", + "4": "354824130", + "5": "1386639353", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifOutQLen": { + "1": "0", + "2": "0", + "3": "0", + "4": "0", + "5": "0", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifOutUcastPkts": { + "1": "20489370", + "2": "0", + "3": "12156384", + "4": "0", + "5": "8706162", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifPhysAddress": { + "1": "0:15:ad:47:3e:61", + "2": "0:15:ad:47:3e:62", + "3": "0:15:ad:47:3e:63", + "4": "0:15:ad:47:3e:64", + "5": "0:15:ad:47:3e:65", + "6": "0:15:ad:47:3e:61", + "7": "0:15:ad:47:3e:63", + "1003": "0:15:ad:47:3e:65" + }, + "ifSpecific": { + "1": ".0.0", + "2": ".0.0", + "3": ".0.0", + "4": ".0.0", + "5": ".0.0", + "6": ".0.0", + "7": ".0.0", + "1003": ".0.0" + }, + "ifSpeed": { + "1": "1000000000", + "2": "0", + "3": "0", + "4": "0", + "5": "100000000", + "6": "0", + "7": "0", + "1003": "0" + }, + "ifType": { + "1": "ethernetCsmacd", + "2": "ethernetCsmacd", + "3": "ethernetCsmacd", + "4": "ethernetCsmacd", + "5": "ethernetCsmacd", + "6": "ethernetCsmacd", + "7": "ethernetCsmacd", + "1003": "ethernetCsmacd" + } + } + }, + "IP-MIB": { + "tables": { + "ipAdEntAddr": { + "10.13.60.102": "10.13.60.102", + "127.0.0.1": "127.0.0.1", + "192.168.1.254": "192.168.1.254" + }, + "ipAdEntBcastAddr": { + "10.13.60.102": "1", + "127.0.0.1": "0", + "192.168.1.254": "1" + }, + "ipAdEntIfIndex": { + "10.13.60.102": "15", + "127.0.0.1": "1", + "192.168.1.254": "10" + }, + "ipAdEntNetMask": { + "10.13.60.102": "255.255.255.0", + "127.0.0.1": "255.0.0.0", + "192.168.1.254": "255.255.255.0" + }, + "ipAddressCreated": { + "1.4.10.13.60.102": "0:0:00:00.00", + "1.4.127.0.0.1": "0:0:00:00.00", + "1.4.192.168.1.254": "0:0:00:00.00", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "0:0:00:00.00", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "0:0:00:00.00" + }, + "ipAddressIfIndex": { + "1.4.10.13.60.102": "15", + "1.4.127.0.0.1": "1", + "1.4.192.168.1.254": "10", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "1", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "10" + }, + "ipAddressLastChanged": { + "1.4.10.13.60.102": "0:0:00:00.00", + "1.4.127.0.0.1": "0:0:00:00.00", + "1.4.192.168.1.254": "0:0:00:00.00", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "0:0:00:00.00", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "0:0:00:00.00" + }, + "ipAddressOrigin": { + "1.4.10.13.60.102": "manual", + "1.4.127.0.0.1": "manual", + "1.4.192.168.1.254": "manual", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "manual", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "linklayer" + }, + "ipAddressPrefix": { + "1.4.10.13.60.102": ".1.3.6.1.2.1.4.32.1.5.15.1.4.10.13.60.0.24", + "1.4.127.0.0.1": ".1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8", + "1.4.192.168.1.254": ".1.3.6.1.2.1.4.32.1.5.10.1.4.192.168.1.0.24", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": ".1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": ".1.3.6.1.2.1.4.32.1.5.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64" + }, + "ipAddressRowStatus": { + "1.4.10.13.60.102": "active", + "1.4.127.0.0.1": "active", + "1.4.192.168.1.254": "active", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "active", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "active" + }, + "ipAddressStatus": { + "1.4.10.13.60.102": "preferred", + "1.4.127.0.0.1": "preferred", + "1.4.192.168.1.254": "preferred", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "preferred", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "preferred" + }, + "ipAddressStorageType": { + "1.4.10.13.60.102": "volatile", + "1.4.127.0.0.1": "volatile", + "1.4.192.168.1.254": "volatile", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "volatile", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "volatile" + }, + "ipAddressType": { + "1.4.10.13.60.102": "unicast", + "1.4.127.0.0.1": "unicast", + "1.4.192.168.1.254": "unicast", + "2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1": "unicast", + "2.16.254.128.0.0.0.0.0.0.2.21.173.255.254.71.62.101": "unicast" + }, + "ipDefaultTTL": { + "0": "64" + }, + "ipForwDatagrams": { + "0": "0" + }, + "ipForward": { + "4.1.1.0.0.0.0.0.0.0.0.0.10.13.60.1": "0.0.0.0", + "4.1.1.10.13.60.0.255.255.255.0.0.0.0.0.0": "10.13.60.0", + "4.1.1.127.0.0.0.255.0.0.0.0.0.0.0.0": "127.0.0.0", + "4.1.1.192.168.1.0.255.255.255.0.0.0.0.0.0": "192.168.1.0", + "4.1.2.0.0.0.0.0.0.0.0.0.10.13.60.1": "0.0.0.0", + "4.1.2.10.13.60.0.255.255.255.0.0.0.0.0.0": "255.255.255.0", + "4.1.2.127.0.0.0.255.0.0.0.0.0.0.0.0": "255.0.0.0", + "4.1.2.192.168.1.0.255.255.255.0.0.0.0.0.0": "255.255.255.0", + "4.1.3.0.0.0.0.0.0.0.0.0.10.13.60.1": "0", + "4.1.3.10.13.60.0.255.255.255.0.0.0.0.0.0": "0", + "4.1.3.127.0.0.0.255.0.0.0.0.0.0.0.0": "0", + "4.1.3.192.168.1.0.255.255.255.0.0.0.0.0.0": "0", + "4.1.4.0.0.0.0.0.0.0.0.0.10.13.60.1": "10.13.60.1", + "4.1.4.10.13.60.0.255.255.255.0.0.0.0.0.0": "0.0.0.0", + "4.1.4.127.0.0.0.255.0.0.0.0.0.0.0.0": "0.0.0.0", + "4.1.4.192.168.1.0.255.255.255.0.0.0.0.0.0": "0.0.0.0", + "4.1.5.0.0.0.0.0.0.0.0.0.10.13.60.1": "15", + "4.1.5.10.13.60.0.255.255.255.0.0.0.0.0.0": "15", + "4.1.5.127.0.0.0.255.0.0.0.0.0.0.0.0": "1", + "4.1.5.192.168.1.0.255.255.255.0.0.0.0.0.0": "10", + "4.1.6.0.0.0.0.0.0.0.0.0.10.13.60.1": "remote", + "4.1.6.10.13.60.0.255.255.255.0.0.0.0.0.0": "local", + "4.1.6.127.0.0.0.255.0.0.0.0.0.0.0.0": "local", + "4.1.6.192.168.1.0.255.255.255.0.0.0.0.0.0": "local", + "4.1.7.0.0.0.0.0.0.0.0.0.10.13.60.1": "local", + "4.1.7.10.13.60.0.255.255.255.0.0.0.0.0.0": "local", + "4.1.7.127.0.0.0.255.0.0.0.0.0.0.0.0": "local", + "4.1.7.192.168.1.0.255.255.255.0.0.0.0.0.0": "local", + "4.1.9.0.0.0.0.0.0.0.0.0.10.13.60.1": ".0.0", + "4.1.9.10.13.60.0.255.255.255.0.0.0.0.0.0": ".0.0", + "4.1.9.127.0.0.0.255.0.0.0.0.0.0.0.0": ".0.0", + "4.1.9.192.168.1.0.255.255.255.0.0.0.0.0.0": ".0.0", + "4.1.10.0.0.0.0.0.0.0.0.0.10.13.60.1": "0", + "4.1.10.10.13.60.0.255.255.255.0.0.0.0.0.0": "0", + "4.1.10.127.0.0.0.255.0.0.0.0.0.0.0.0": "0", + "4.1.10.192.168.1.0.255.255.255.0.0.0.0.0.0": "0", + "4.1.11.0.0.0.0.0.0.0.0.0.10.13.60.1": "0", + "4.1.11.10.13.60.0.255.255.255.0.0.0.0.0.0": "0", + "4.1.11.127.0.0.0.255.0.0.0.0.0.0.0.0": "0", + "4.1.11.192.168.1.0.255.255.255.0.0.0.0.0.0": "0", + "4.1.12.0.0.0.0.0.0.0.0.0.10.13.60.1": "-1", + "4.1.12.10.13.60.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.12.127.0.0.0.255.0.0.0.0.0.0.0.0": "-1", + "4.1.12.192.168.1.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.13.0.0.0.0.0.0.0.0.0.10.13.60.1": "-1", + "4.1.13.10.13.60.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.13.127.0.0.0.255.0.0.0.0.0.0.0.0": "-1", + "4.1.13.192.168.1.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.14.0.0.0.0.0.0.0.0.0.10.13.60.1": "-1", + "4.1.14.10.13.60.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.14.127.0.0.0.255.0.0.0.0.0.0.0.0": "-1", + "4.1.14.192.168.1.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.15.0.0.0.0.0.0.0.0.0.10.13.60.1": "-1", + "4.1.15.10.13.60.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.15.127.0.0.0.255.0.0.0.0.0.0.0.0": "-1", + "4.1.15.192.168.1.0.255.255.255.0.0.0.0.0.0": "-1", + "4.1.16.0.0.0.0.0.0.0.0.0.10.13.60.1": "active", + "4.1.16.10.13.60.0.255.255.255.0.0.0.0.0.0": "active", + "4.1.16.127.0.0.0.255.0.0.0.0.0.0.0.0": "active", + "4.1.16.192.168.1.0.255.255.255.0.0.0.0.0.0": "active", + "6.0": "5", + "7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "15", + "7.1.7.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "15", + "7.1.7.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "1", + "7.1.7.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "10", + "7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "5", + "7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "remote", + "7.1.8.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "local", + "7.1.8.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "local", + "7.1.8.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "local", + "7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "local", + "7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "local", + "7.1.9.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "local", + "7.1.9.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "local", + "7.1.9.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "local", + "7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "local", + "7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "0", + "7.1.10.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "0", + "7.1.10.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "0", + "7.1.10.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "0", + "7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "0", + "7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "0", + "7.1.11.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "0", + "7.1.11.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "0", + "7.1.11.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "0", + "7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "0", + "7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "0", + "7.1.12.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "0", + "7.1.12.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "0", + "7.1.12.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "0", + "7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "256", + "7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "-1", + "7.1.13.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "-1", + "7.1.13.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "-1", + "7.1.13.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "-1", + "7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "-1", + "7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "-1", + "7.1.14.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "-1", + "7.1.14.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "-1", + "7.1.14.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "-1", + "7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "-1", + "7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "-1", + "7.1.15.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "-1", + "7.1.15.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "-1", + "7.1.15.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "-1", + "7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "-1", + "7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "-1", + "7.1.16.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "-1", + "7.1.16.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "-1", + "7.1.16.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "-1", + "7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "-1", + "7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.13.60.1": "active", + "7.1.17.1.4.10.13.60.0.24.1.15.1.4.0.0.0.0": "active", + "7.1.17.1.4.127.0.0.0.8.1.1.1.4.0.0.0.0": "active", + "7.1.17.1.4.192.168.1.0.24.1.10.1.4.0.0.0.0": "active", + "7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0": "active" + }, + "ipForwarding": { + "0": "notForwarding" + }, + "ipInAddrErrors": { + "0": "25342" + }, + "ipInDelivers": { + "0": "10386667" + }, + "ipInDiscards": { + "0": "0" + }, + "ipInHdrErrors": { + "0": "0" + }, + "ipInReceives": { + "0": "11758115" + }, + "ipInUnknownProtos": { + "0": "1346100" + }, + "ipNetToMediaTable": { + "1.1.15.10.13.60.1": "15", + "1.2.15.10.13.60.1": "b4:c:25:e0:40:6a", + "1.3.15.10.13.60.1": "10.13.60.1", + "1.4.15.10.13.60.1": "dynamic" + }, + "ipNetToPhysicalTable": { + "1.4.15.1.4.10.13.60.1": "b4:c:25:e0:40:6a", + "1.6.15.1.4.10.13.60.1": "dynamic", + "1.7.15.1.4.10.13.60.1": "reachable", + "1.8.15.1.4.10.13.60.1": "active" + }, + "ipOutDiscards": { + "0": "0" + }, + "ipOutNoRoutes": { + "0": "0" + }, + "ipOutRequests": { + "0": "24102802" + }, + "ipReasmTimeout": { + "0": "30 seconds" + }, + "ipRouteTable": { + "1.1.0.0.0.0": "0.0.0.0", + "1.1.10.13.60.0": "10.13.60.0", + "1.1.127.0.0.0": "127.0.0.0", + "1.1.192.168.1.0": "192.168.1.0", + "1.2.0.0.0.0": "15", + "1.2.10.13.60.0": "15", + "1.2.127.0.0.0": "1", + "1.2.192.168.1.0": "10", + "1.3.0.0.0.0": "1", + "1.3.10.13.60.0": "0", + "1.3.127.0.0.0": "0", + "1.3.192.168.1.0": "0", + "1.7.0.0.0.0": "10.13.60.1", + "1.7.10.13.60.0": "0.0.0.0", + "1.7.127.0.0.0": "0.0.0.0", + "1.7.192.168.1.0": "0.0.0.0", + "1.8.0.0.0.0": "4", + "1.8.10.13.60.0": "3", + "1.8.127.0.0.0": "3", + "1.8.192.168.1.0": "3", + "1.9.0.0.0.0": "2", + "1.9.10.13.60.0": "2", + "1.9.127.0.0.0": "2", + "1.9.192.168.1.0": "2", + "1.11.0.0.0.0": "0.0.0.0", + "1.11.10.13.60.0": "255.255.255.0", + "1.11.127.0.0.0": "255.0.0.0", + "1.11.192.168.1.0": "255.255.255.0", + "1.13.0.0.0.0": ".0.0", + "1.13.10.13.60.0": ".0.0", + "1.13.127.0.0.0": ".0.0", + "1.13.192.168.1.0": ".0.0" + }, + "ipTrafficStats": { + "1.1.3.1": "11757840", + "1.1.3.2": "155258538", + "1.1.4.1": "11757840", + "1.1.4.2": "155258538", + "1.1.6.1": "0", + "1.1.6.2": "0", + "1.1.7.1": "0", + "1.1.7.2": "0", + "1.1.9.1": "25342", + "1.1.9.2": "0", + "1.1.10.1": "1346100", + "1.1.10.2": "0", + "1.1.12.1": "0", + "1.1.12.2": "0", + "1.1.13.1": "0", + "1.1.13.2": "0", + "1.1.14.1": "10", + "1.1.14.2": "0", + "1.1.15.1": "4", + "1.1.15.2": "0", + "1.1.16.1": "0", + "1.1.16.2": "0", + "1.1.17.1": "0", + "1.1.17.2": "5081439", + "1.1.18.1": "10386392", + "1.1.18.2": "44484", + "1.1.19.1": "10386392", + "1.1.19.2": "44484", + "1.1.20.1": "24102520", + "1.1.20.2": "6", + "1.1.21.1": "24102520", + "1.1.21.2": "6", + "1.1.22.1": "0", + "1.1.22.2": "0", + "1.1.24.1": "0", + "1.1.24.2": "0", + "1.1.25.1": "0", + "1.1.25.2": "0", + "1.1.28.1": "0", + "1.1.28.2": "0", + "1.1.29.1": "17052", + "1.1.29.2": "0", + "1.1.46.1": "0:0:00:00.00", + "1.1.46.2": "0:0:00:00.00", + "1.1.47.1": "30000 milli-seconds", + "1.1.47.2": "30000 milli-seconds" + } + }, + "unresolved_oids": { + ".1.3.6.1.2.1.4.14.0": "10", + ".1.3.6.1.2.1.4.15.0": "4", + ".1.3.6.1.2.1.4.16.0": "0", + ".1.3.6.1.2.1.4.17.0": "8526", + ".1.3.6.1.2.1.4.18.0": "0", + ".1.3.6.1.2.1.4.19.0": "17052", + ".1.3.6.1.2.1.4.23.0": "0", + ".1.3.6.1.2.1.4.25.0": "notForwarding", + ".1.3.6.1.2.1.4.26.0": "64" + } + }, + "IPv6-MIB": { + "tables": { + "ipv6DefaultHopLimit": { + "0": "64" + }, + "ipv6Forwarding": { + "0": "notForwarding" + }, + "ipv6IfAdminStatus": { + "1": "up", + "10": "up" + }, + "ipv6IfDescr": { + "1": "lo", + "10": "eth5" + }, + "ipv6IfEffectiveMtu": { + "1": "16436 octets", + "10": "1500 octets" + }, + "ipv6IfLowerLayer": { + "1": ".0.0", + "10": ".0.0" + }, + "ipv6IfOperStatus": { + "1": "up", + "10": "up" + }, + "ipv6IfPhysicalAddress": { + "10": "0:15:ad:47:3e:65" + }, + "ipv6Interfaces": { + "0": "2" + } + } + }, + "SNMPv2-MIB::snmp": { + "tables": { + "snmpEnableAuthenTraps": { + "0": "enabled" + }, + "snmpInASNParseErrs": { + "0": "0" + }, + "snmpInBadCommunityNames": { + "0": "0" + }, + "snmpInBadCommunityUses": { + "0": "133" + }, + "snmpInBadValues": { + "0": "0" + }, + "snmpInBadVersions": { + "0": "0" + }, + "snmpInGenErrs": { + "0": "0" + }, + "snmpInGetNexts": { + "0": "67859" + }, + "snmpInGetRequests": { + "0": "11" + }, + "snmpInGetResponses": { + "0": "0" + }, + "snmpInNoSuchNames": { + "0": "0" + }, + "snmpInPkts": { + "0": "67874" + }, + "snmpInReadOnlys": { + "0": "0" + }, + "snmpInSetRequests": { + "0": "0" + }, + "snmpInTooBigs": { + "0": "0" + }, + "snmpInTotalReqVars": { + "0": "68062" + }, + "snmpInTotalSetVars": { + "0": "0" + }, + "snmpInTraps": { + "0": "0" + }, + "snmpOutBadValues": { + "0": "0" + }, + "snmpOutGenErrs": { + "0": "0" + }, + "snmpOutGetNexts": { + "0": "0" + }, + "snmpOutGetRequests": { + "0": "0" + }, + "snmpOutGetResponses": { + "0": "67898" + }, + "snmpOutNoSuchNames": { + "0": "0" + }, + "snmpOutPkts": { + "0": "67874" + }, + "snmpOutTooBigs": { + "0": "0" + }, + "snmpOutTraps": { + "0": "0" + }, + "snmpProxyDrops": { + "0": "0" + }, + "snmpSilentDrops": { + "0": "0" + } + }, + "unresolved_oids": { + ".1.3.6.1.2.1.11.27.0": "0" + } + }, + "SNMPv2-MIB::system": { + "tables": { + "sysContact": { + "0": "root" + }, + "sysDescr": { + "0": "AMN-1000-GT-S" + }, + "sysLocation": { + "0": "Unknown" + }, + "sysName": { + "0": "LABNID-NID12-DC-MTSO-Pri.alluvion.net" + }, + "sysORDescr": { + "1": "The management information definitions for the ACD-ALARM-MIB.", + "2": "The management information definitions for the ACD-FILTER-MIB.", + "3": "The management information definitions for the ACD-POLICY-MIB.", + "4": "The management information definitions for the ACD-SFP-MIB.", + "5": "The management information definitions for the ACD-PAA-MIB.", + "6": "The management information definitions for the ACD-REGULATOR-MIB.", + "7": "The management information definitions for the ACD-CFM-MIB.", + "8": "The management information definitions for the ACD-SMAP-MIB.", + "9": "The management information definitions for the ACD-PORT-MIB.", + "10": "The management information definitions for the ACD-SHAPER-MIB.", + "11": "The management information definitions for the ACD-DISCOVER-MIB.", + "12": "The management information definitions for the ACD-SA-MIB.", + "13": "The MIB module for SNMPv2 entities", + "14": "The MIB module for managing TCP implementations", + "15": "The MIB module for managing IP and ICMP implementations", + "16": "The MIB module for managing UDP implementations", + "17": "View-based Access Control Model for SNMP.", + "18": "The MIB modules for managing SNMP Notification, plus filtering.", + "19": "The MIB module for logging SNMP Notifications." + }, + "sysORID": { + "1": ".1.3.6.1.4.1.22420.2.1", + "2": ".1.3.6.1.4.1.22420.2.2", + "3": ".1.3.6.1.4.1.22420.2.3", + "4": ".1.3.6.1.4.1.22420.2.4", + "5": ".1.3.6.1.4.1.22420.2.5", + "6": ".1.3.6.1.4.1.22420.2.6", + "7": ".1.3.6.1.4.1.22420.2.7", + "8": ".1.3.6.1.4.1.22420.2.8", + "9": ".1.3.6.1.4.1.22420.2.9", + "10": ".1.3.6.1.4.1.22420.2.10", + "11": ".1.3.6.1.4.1.22420.2.11", + "12": ".1.3.6.1.4.1.22420.2.12", + "13": ".1.3.6.1.6.3.1", + "14": ".1.3.6.1.2.1.49", + "15": ".1.3.6.1.2.1.4", + "16": ".1.3.6.1.2.1.50", + "17": ".1.3.6.1.6.3.16.2.2.1", + "18": ".1.3.6.1.6.3.13.3.1.3", + "19": ".1.3.6.1.2.1.92" + }, + "sysORLastChange": { + "0": "0:0:00:00.32" + }, + "sysORUpTime": { + "1": "0:0:00:00.10", + "2": "0:0:00:00.10", + "3": "0:0:00:00.10", + "4": "0:0:00:00.10", + "5": "0:0:00:00.10", + "6": "0:0:00:00.10", + "7": "0:0:00:00.10", + "8": "0:0:00:00.10", + "9": "0:0:00:00.10", + "10": "0:0:00:00.10", + "11": "0:0:00:00.10", + "12": "0:0:00:00.10", + "13": "0:0:00:00.13", + "14": "0:0:00:00.13", + "15": "0:0:00:00.13", + "16": "0:0:00:00.13", + "17": "0:0:00:00.13", + "18": "0:0:00:00.15", + "19": "0:0:00:00.32" + }, + "sysObjectID": { + "0": ".1.3.6.1.4.1.22420.1.1" + }, + "sysServices": { + "0": "127" + }, + "sysUpTime": { + "0": "0:0:41:41.00" + } + } + }, + "STD-MIB": { + "unresolved_oids": { + ".1.3.6.1.2.1.10.7.2.1.1.1": "1", + ".1.3.6.1.2.1.10.7.2.1.1.2": "2", + ".1.3.6.1.2.1.10.7.2.1.1.3": "3", + ".1.3.6.1.2.1.10.7.2.1.1.4": "4", + ".1.3.6.1.2.1.10.7.2.1.1.5": "5", + ".1.3.6.1.2.1.10.7.2.1.1.6": "6", + ".1.3.6.1.2.1.10.7.2.1.1.7": "7", + ".1.3.6.1.2.1.10.7.2.1.2.1": "0", + ".1.3.6.1.2.1.10.7.2.1.2.2": "0", + ".1.3.6.1.2.1.10.7.2.1.2.3": "0", + ".1.3.6.1.2.1.10.7.2.1.2.4": "0", + ".1.3.6.1.2.1.10.7.2.1.2.5": "0", + ".1.3.6.1.2.1.10.7.2.1.2.6": "0", + ".1.3.6.1.2.1.10.7.2.1.2.7": "0", + ".1.3.6.1.2.1.10.7.2.1.3.1": "0", + ".1.3.6.1.2.1.10.7.2.1.3.2": "0", + ".1.3.6.1.2.1.10.7.2.1.3.3": "0", + ".1.3.6.1.2.1.10.7.2.1.3.4": "0", + ".1.3.6.1.2.1.10.7.2.1.3.5": "0", + ".1.3.6.1.2.1.10.7.2.1.3.6": "0", + ".1.3.6.1.2.1.10.7.2.1.3.7": "0", + ".1.3.6.1.2.1.10.7.2.1.4.1": "0", + ".1.3.6.1.2.1.10.7.2.1.4.2": "0", + ".1.3.6.1.2.1.10.7.2.1.4.3": "0", + ".1.3.6.1.2.1.10.7.2.1.4.4": "0", + ".1.3.6.1.2.1.10.7.2.1.4.5": "0", + ".1.3.6.1.2.1.10.7.2.1.4.6": "0", + ".1.3.6.1.2.1.10.7.2.1.4.7": "0", + ".1.3.6.1.2.1.10.7.2.1.5.1": "0", + ".1.3.6.1.2.1.10.7.2.1.5.2": "0", + ".1.3.6.1.2.1.10.7.2.1.5.3": "0", + ".1.3.6.1.2.1.10.7.2.1.5.4": "0", + ".1.3.6.1.2.1.10.7.2.1.5.5": "0", + ".1.3.6.1.2.1.10.7.2.1.5.6": "0", + ".1.3.6.1.2.1.10.7.2.1.5.7": "0", + ".1.3.6.1.2.1.10.7.2.1.6.1": "0", + ".1.3.6.1.2.1.10.7.2.1.6.2": "0", + ".1.3.6.1.2.1.10.7.2.1.6.3": "0", + ".1.3.6.1.2.1.10.7.2.1.6.4": "0", + ".1.3.6.1.2.1.10.7.2.1.6.5": "0", + ".1.3.6.1.2.1.10.7.2.1.6.6": "0", + ".1.3.6.1.2.1.10.7.2.1.6.7": "0", + ".1.3.6.1.2.1.10.7.2.1.7.1": "0", + ".1.3.6.1.2.1.10.7.2.1.7.2": "0", + ".1.3.6.1.2.1.10.7.2.1.7.3": "0", + ".1.3.6.1.2.1.10.7.2.1.7.4": "0", + ".1.3.6.1.2.1.10.7.2.1.7.5": "0", + ".1.3.6.1.2.1.10.7.2.1.7.6": "0", + ".1.3.6.1.2.1.10.7.2.1.7.7": "0", + ".1.3.6.1.2.1.10.7.2.1.8.1": "0", + ".1.3.6.1.2.1.10.7.2.1.8.2": "0", + ".1.3.6.1.2.1.10.7.2.1.8.3": "0", + ".1.3.6.1.2.1.10.7.2.1.8.4": "0", + ".1.3.6.1.2.1.10.7.2.1.8.5": "0", + ".1.3.6.1.2.1.10.7.2.1.8.6": "0", + ".1.3.6.1.2.1.10.7.2.1.8.7": "0", + ".1.3.6.1.2.1.10.7.2.1.9.1": "0", + ".1.3.6.1.2.1.10.7.2.1.9.2": "0", + ".1.3.6.1.2.1.10.7.2.1.9.3": "0", + ".1.3.6.1.2.1.10.7.2.1.9.4": "0", + ".1.3.6.1.2.1.10.7.2.1.9.5": "0", + ".1.3.6.1.2.1.10.7.2.1.9.6": "0", + ".1.3.6.1.2.1.10.7.2.1.9.7": "0", + ".1.3.6.1.2.1.10.7.2.1.10.1": "0", + ".1.3.6.1.2.1.10.7.2.1.10.2": "0", + ".1.3.6.1.2.1.10.7.2.1.10.3": "0", + ".1.3.6.1.2.1.10.7.2.1.10.4": "0", + ".1.3.6.1.2.1.10.7.2.1.10.5": "0", + ".1.3.6.1.2.1.10.7.2.1.10.6": "0", + ".1.3.6.1.2.1.10.7.2.1.10.7": "0", + ".1.3.6.1.2.1.10.7.2.1.11.1": "0", + ".1.3.6.1.2.1.10.7.2.1.11.2": "0", + ".1.3.6.1.2.1.10.7.2.1.11.3": "0", + ".1.3.6.1.2.1.10.7.2.1.11.4": "0", + ".1.3.6.1.2.1.10.7.2.1.11.5": "0", + ".1.3.6.1.2.1.10.7.2.1.11.6": "0", + ".1.3.6.1.2.1.10.7.2.1.11.7": "0", + ".1.3.6.1.2.1.10.7.2.1.13.1": "0", + ".1.3.6.1.2.1.10.7.2.1.13.2": "0", + ".1.3.6.1.2.1.10.7.2.1.13.3": "0", + ".1.3.6.1.2.1.10.7.2.1.13.4": "0", + ".1.3.6.1.2.1.10.7.2.1.13.5": "0", + ".1.3.6.1.2.1.10.7.2.1.13.6": "0", + ".1.3.6.1.2.1.10.7.2.1.13.7": "0", + ".1.3.6.1.2.1.10.7.2.1.16.1": "0", + ".1.3.6.1.2.1.10.7.2.1.16.2": "0", + ".1.3.6.1.2.1.10.7.2.1.16.3": "0", + ".1.3.6.1.2.1.10.7.2.1.16.4": "0", + ".1.3.6.1.2.1.10.7.2.1.16.5": "0", + ".1.3.6.1.2.1.10.7.2.1.16.6": "0", + ".1.3.6.1.2.1.10.7.2.1.16.7": "0", + ".1.3.6.1.2.1.10.7.2.1.17.1": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.17.2": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.17.3": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.17.4": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.17.5": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.17.6": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.17.7": ".0.0.0", + ".1.3.6.1.2.1.10.7.2.1.18.1": "0", + ".1.3.6.1.2.1.10.7.2.1.18.2": "0", + ".1.3.6.1.2.1.10.7.2.1.18.3": "0", + ".1.3.6.1.2.1.10.7.2.1.18.4": "0", + ".1.3.6.1.2.1.10.7.2.1.18.5": "0", + ".1.3.6.1.2.1.10.7.2.1.18.6": "0", + ".1.3.6.1.2.1.10.7.2.1.18.7": "0", + ".1.3.6.1.2.1.10.7.2.1.19.1": "3", + ".1.3.6.1.2.1.10.7.2.1.19.2": "3", + ".1.3.6.1.2.1.10.7.2.1.19.3": "3", + ".1.3.6.1.2.1.10.7.2.1.19.4": "3", + ".1.3.6.1.2.1.10.7.2.1.19.5": "3", + ".1.3.6.1.2.1.10.7.2.1.19.6": "2", + ".1.3.6.1.2.1.10.7.2.1.19.7": "2", + ".1.3.6.1.2.1.10.7.2.1.20.1": "2", + ".1.3.6.1.2.1.10.7.2.1.20.2": "2", + ".1.3.6.1.2.1.10.7.2.1.20.3": "2", + ".1.3.6.1.2.1.10.7.2.1.20.4": "2", + ".1.3.6.1.2.1.10.7.2.1.20.5": "2", + ".1.3.6.1.2.1.10.7.2.1.20.6": "2", + ".1.3.6.1.2.1.10.7.2.1.20.7": "2", + ".1.3.6.1.2.1.10.7.2.1.21.1": "3", + ".1.3.6.1.2.1.10.7.2.1.21.2": "3", + ".1.3.6.1.2.1.10.7.2.1.21.3": "3", + ".1.3.6.1.2.1.10.7.2.1.21.4": "3", + ".1.3.6.1.2.1.10.7.2.1.21.5": "3", + ".1.3.6.1.2.1.10.7.2.1.21.6": "3", + ".1.3.6.1.2.1.10.7.2.1.21.7": "3", + ".1.3.6.1.2.1.10.7.10.1.1.1": "4", + ".1.3.6.1.2.1.10.7.10.1.1.2": "4", + ".1.3.6.1.2.1.10.7.10.1.1.3": "4", + ".1.3.6.1.2.1.10.7.10.1.1.4": "4", + ".1.3.6.1.2.1.10.7.10.1.1.5": "4", + ".1.3.6.1.2.1.10.7.10.1.1.6": "4", + ".1.3.6.1.2.1.10.7.10.1.1.7": "4", + ".1.3.6.1.2.1.10.7.10.1.2.1": "4", + ".1.3.6.1.2.1.10.7.10.1.2.2": "4", + ".1.3.6.1.2.1.10.7.10.1.2.3": "4", + ".1.3.6.1.2.1.10.7.10.1.2.4": "4", + ".1.3.6.1.2.1.10.7.10.1.2.5": "4", + ".1.3.6.1.2.1.10.7.10.1.2.6": "4", + ".1.3.6.1.2.1.10.7.10.1.2.7": "4", + ".1.3.6.1.2.1.10.7.10.1.3.1": "0", + ".1.3.6.1.2.1.10.7.10.1.3.2": "0", + ".1.3.6.1.2.1.10.7.10.1.3.3": "3292", + ".1.3.6.1.2.1.10.7.10.1.3.4": "0", + ".1.3.6.1.2.1.10.7.10.1.3.5": "0", + ".1.3.6.1.2.1.10.7.10.1.3.6": "0", + ".1.3.6.1.2.1.10.7.10.1.3.7": "0", + ".1.3.6.1.2.1.10.7.10.1.4.1": "0", + ".1.3.6.1.2.1.10.7.10.1.4.2": "0", + ".1.3.6.1.2.1.10.7.10.1.4.3": "0", + ".1.3.6.1.2.1.10.7.10.1.4.4": "0", + ".1.3.6.1.2.1.10.7.10.1.4.5": "0", + ".1.3.6.1.2.1.10.7.10.1.4.6": "0", + ".1.3.6.1.2.1.10.7.10.1.4.7": "0", + ".1.3.6.1.2.1.10.7.10.1.5.1": "0", + ".1.3.6.1.2.1.10.7.10.1.5.2": "0", + ".1.3.6.1.2.1.10.7.10.1.5.3": "3292", + ".1.3.6.1.2.1.10.7.10.1.5.4": "0", + ".1.3.6.1.2.1.10.7.10.1.5.5": "0", + ".1.3.6.1.2.1.10.7.10.1.5.6": "0", + ".1.3.6.1.2.1.10.7.10.1.5.7": "0", + ".1.3.6.1.2.1.10.7.10.1.6.1": "0", + ".1.3.6.1.2.1.10.7.10.1.6.2": "0", + ".1.3.6.1.2.1.10.7.10.1.6.3": "0", + ".1.3.6.1.2.1.10.7.10.1.6.4": "0", + ".1.3.6.1.2.1.10.7.10.1.6.5": "0", + ".1.3.6.1.2.1.10.7.10.1.6.6": "0", + ".1.3.6.1.2.1.10.7.10.1.6.7": "0", + ".1.3.6.1.2.1.10.7.11.1.1.1": "0", + ".1.3.6.1.2.1.10.7.11.1.1.2": "0", + ".1.3.6.1.2.1.10.7.11.1.1.3": "0", + ".1.3.6.1.2.1.10.7.11.1.1.4": "0", + ".1.3.6.1.2.1.10.7.11.1.1.5": "0", + ".1.3.6.1.2.1.10.7.11.1.1.6": "0", + ".1.3.6.1.2.1.10.7.11.1.1.7": "0", + ".1.3.6.1.2.1.10.7.11.1.2.1": "0", + ".1.3.6.1.2.1.10.7.11.1.2.2": "0", + ".1.3.6.1.2.1.10.7.11.1.2.3": "0", + ".1.3.6.1.2.1.10.7.11.1.2.4": "0", + ".1.3.6.1.2.1.10.7.11.1.2.5": "0", + ".1.3.6.1.2.1.10.7.11.1.2.6": "0", + ".1.3.6.1.2.1.10.7.11.1.2.7": "0", + ".1.3.6.1.2.1.10.7.11.1.3.1": "0", + ".1.3.6.1.2.1.10.7.11.1.3.2": "0", + ".1.3.6.1.2.1.10.7.11.1.3.3": "0", + ".1.3.6.1.2.1.10.7.11.1.3.4": "0", + ".1.3.6.1.2.1.10.7.11.1.3.5": "0", + ".1.3.6.1.2.1.10.7.11.1.3.6": "0", + ".1.3.6.1.2.1.10.7.11.1.3.7": "0", + ".1.3.6.1.2.1.10.7.11.1.4.1": "0", + ".1.3.6.1.2.1.10.7.11.1.4.2": "0", + ".1.3.6.1.2.1.10.7.11.1.4.3": "0", + ".1.3.6.1.2.1.10.7.11.1.4.4": "0", + ".1.3.6.1.2.1.10.7.11.1.4.5": "0", + ".1.3.6.1.2.1.10.7.11.1.4.6": "0", + ".1.3.6.1.2.1.10.7.11.1.4.7": "0", + ".1.3.6.1.2.1.10.7.11.1.5.1": "0", + ".1.3.6.1.2.1.10.7.11.1.5.2": "0", + ".1.3.6.1.2.1.10.7.11.1.5.3": "0", + ".1.3.6.1.2.1.10.7.11.1.5.4": "0", + ".1.3.6.1.2.1.10.7.11.1.5.5": "0", + ".1.3.6.1.2.1.10.7.11.1.5.6": "0", + ".1.3.6.1.2.1.10.7.11.1.5.7": "0", + ".1.3.6.1.2.1.10.7.11.1.6.1": "0", + ".1.3.6.1.2.1.10.7.11.1.6.2": "0", + ".1.3.6.1.2.1.10.7.11.1.6.3": "0", + ".1.3.6.1.2.1.10.7.11.1.6.4": "0", + ".1.3.6.1.2.1.10.7.11.1.6.5": "0", + ".1.3.6.1.2.1.10.7.11.1.6.6": "0", + ".1.3.6.1.2.1.10.7.11.1.6.7": "0", + ".1.3.6.1.2.1.16.1.1.1.1.1": "1", + ".1.3.6.1.2.1.16.1.1.1.1.2": "2", + ".1.3.6.1.2.1.16.1.1.1.1.3": "3", + ".1.3.6.1.2.1.16.1.1.1.1.4": "4", + ".1.3.6.1.2.1.16.1.1.1.2.1": ".1.3.6.1.2.1.2.2.1.1.1", + ".1.3.6.1.2.1.16.1.1.1.2.2": ".1.3.6.1.2.1.2.2.1.1.2", + ".1.3.6.1.2.1.16.1.1.1.2.3": ".1.3.6.1.2.1.2.2.1.1.3", + ".1.3.6.1.2.1.16.1.1.1.2.4": ".1.3.6.1.2.1.2.2.1.1.4", + ".1.3.6.1.2.1.16.1.1.1.3.1": "0", + ".1.3.6.1.2.1.16.1.1.1.3.2": "0", + ".1.3.6.1.2.1.16.1.1.1.3.3": "0", + ".1.3.6.1.2.1.16.1.1.1.3.4": "0", + ".1.3.6.1.2.1.16.1.1.1.4.1": "4223389753", + ".1.3.6.1.2.1.16.1.1.1.4.2": "135053161", + ".1.3.6.1.2.1.16.1.1.1.4.3": "2194071425", + ".1.3.6.1.2.1.16.1.1.1.4.4": "314336220", + ".1.3.6.1.2.1.16.1.1.1.5.1": "14805115", + ".1.3.6.1.2.1.16.1.1.1.5.2": "755129", + ".1.3.6.1.2.1.16.1.1.1.5.3": "15045949", + ".1.3.6.1.2.1.16.1.1.1.5.4": "2381335", + ".1.3.6.1.2.1.16.1.1.1.6.1": "786060", + ".1.3.6.1.2.1.16.1.1.1.6.2": "35", + ".1.3.6.1.2.1.16.1.1.1.6.3": "64", + ".1.3.6.1.2.1.16.1.1.1.6.4": "0", + ".1.3.6.1.2.1.16.1.1.1.7.1": "1333616", + ".1.3.6.1.2.1.16.1.1.1.7.2": "755094", + ".1.3.6.1.2.1.16.1.1.1.7.3": "1854490", + ".1.3.6.1.2.1.16.1.1.1.7.4": "2381335", + ".1.3.6.1.2.1.16.1.1.1.8.1": "0", + ".1.3.6.1.2.1.16.1.1.1.8.2": "0", + ".1.3.6.1.2.1.16.1.1.1.8.3": "0", + ".1.3.6.1.2.1.16.1.1.1.8.4": "0", + ".1.3.6.1.2.1.16.1.1.1.9.1": "0", + ".1.3.6.1.2.1.16.1.1.1.9.2": "0", + ".1.3.6.1.2.1.16.1.1.1.9.3": "0", + ".1.3.6.1.2.1.16.1.1.1.9.4": "0", + ".1.3.6.1.2.1.16.1.1.1.10.1": "7196121", + ".1.3.6.1.2.1.16.1.1.1.10.2": "0", + ".1.3.6.1.2.1.16.1.1.1.10.3": "0", + ".1.3.6.1.2.1.16.1.1.1.10.4": "0", + ".1.3.6.1.2.1.16.1.1.1.11.1": "0", + ".1.3.6.1.2.1.16.1.1.1.11.2": "0", + ".1.3.6.1.2.1.16.1.1.1.11.3": "0", + ".1.3.6.1.2.1.16.1.1.1.11.4": "0", + ".1.3.6.1.2.1.16.1.1.1.12.1": "0", + ".1.3.6.1.2.1.16.1.1.1.12.2": "0", + ".1.3.6.1.2.1.16.1.1.1.12.3": "0", + ".1.3.6.1.2.1.16.1.1.1.12.4": "0", + ".1.3.6.1.2.1.16.1.1.1.13.1": "0", + ".1.3.6.1.2.1.16.1.1.1.13.2": "0", + ".1.3.6.1.2.1.16.1.1.1.13.3": "0", + ".1.3.6.1.2.1.16.1.1.1.13.4": "0", + ".1.3.6.1.2.1.16.1.1.1.14.1": "976276", + ".1.3.6.1.2.1.16.1.1.1.14.2": "42", + ".1.3.6.1.2.1.16.1.1.1.14.3": "2010989", + ".1.3.6.1.2.1.16.1.1.1.14.4": "0", + ".1.3.6.1.2.1.16.1.1.1.15.1": "4299190", + ".1.3.6.1.2.1.16.1.1.1.15.2": "23", + ".1.3.6.1.2.1.16.1.1.1.15.3": "524707", + ".1.3.6.1.2.1.16.1.1.1.15.4": "0", + ".1.3.6.1.2.1.16.1.1.1.16.1": "1491542", + ".1.3.6.1.2.1.16.1.1.1.16.2": "755029", + ".1.3.6.1.2.1.16.1.1.1.16.3": "2361587", + ".1.3.6.1.2.1.16.1.1.1.16.4": "2381335", + ".1.3.6.1.2.1.16.1.1.1.17.1": "3686", + ".1.3.6.1.2.1.16.1.1.1.17.2": "35", + ".1.3.6.1.2.1.16.1.1.1.17.3": "3003", + ".1.3.6.1.2.1.16.1.1.1.17.4": "0", + ".1.3.6.1.2.1.16.1.1.1.18.1": "2165", + ".1.3.6.1.2.1.16.1.1.1.18.2": "0", + ".1.3.6.1.2.1.16.1.1.1.18.3": "24786", + ".1.3.6.1.2.1.16.1.1.1.18.4": "0", + ".1.3.6.1.2.1.16.1.1.1.19.1": "836135", + ".1.3.6.1.2.1.16.1.1.1.19.2": "0", + ".1.3.6.1.2.1.16.1.1.1.19.3": "10120877", + ".1.3.6.1.2.1.16.1.1.1.19.4": "0", + ".1.3.6.1.2.1.16.1.1.1.20.1": "system", + ".1.3.6.1.2.1.16.1.1.1.20.2": "system", + ".1.3.6.1.2.1.16.1.1.1.20.3": "system", + ".1.3.6.1.2.1.16.1.1.1.20.4": "system", + ".1.3.6.1.2.1.16.1.1.1.21.1": "1", + ".1.3.6.1.2.1.16.1.1.1.21.2": "1", + ".1.3.6.1.2.1.16.1.1.1.21.3": "1", + ".1.3.6.1.2.1.16.1.1.1.21.4": "1", + ".1.3.6.1.2.1.16.1.4.1.1.1": "0", + ".1.3.6.1.2.1.16.1.4.1.1.2": "0", + ".1.3.6.1.2.1.16.1.4.1.1.3": "0", + ".1.3.6.1.2.1.16.1.4.1.1.4": "0", + ".1.3.6.1.2.1.16.1.4.1.2.1": "0:0:41:52.73", + ".1.3.6.1.2.1.16.1.4.1.2.2": "0:0:41:52.73", + ".1.3.6.1.2.1.16.1.4.1.2.3": "0:0:41:52.73", + ".1.3.6.1.2.1.16.1.4.1.2.4": "0:0:41:52.73", + ".1.3.6.1.2.1.16.1.7.1.1.1": "0", + ".1.3.6.1.2.1.16.1.7.1.1.2": "0", + ".1.3.6.1.2.1.16.1.7.1.1.3": "0", + ".1.3.6.1.2.1.16.1.7.1.1.4": "0", + ".1.3.6.1.2.1.16.1.7.1.2.1": "14805115", + ".1.3.6.1.2.1.16.1.7.1.2.2": "755129", + ".1.3.6.1.2.1.16.1.7.1.2.3": "15045949", + ".1.3.6.1.2.1.16.1.7.1.2.4": "2381335", + ".1.3.6.1.2.1.16.1.7.1.3.1": "2", + ".1.3.6.1.2.1.16.1.7.1.3.2": "0", + ".1.3.6.1.2.1.16.1.7.1.3.3": "3", + ".1.3.6.1.2.1.16.1.7.1.3.4": "0", + ".1.3.6.1.2.1.16.1.7.1.4.1": "12813324345", + ".1.3.6.1.2.1.16.1.7.1.4.2": "135053161", + ".1.3.6.1.2.1.16.1.7.1.4.3": "15078973313", + ".1.3.6.1.2.1.16.1.7.1.4.4": "314336220", + ".1.3.6.1.2.1.16.1.7.1.5.1": "0", + ".1.3.6.1.2.1.16.1.7.1.5.2": "0", + ".1.3.6.1.2.1.16.1.7.1.5.3": "0", + ".1.3.6.1.2.1.16.1.7.1.5.4": "0", + ".1.3.6.1.2.1.16.1.7.1.6.1": "976276", + ".1.3.6.1.2.1.16.1.7.1.6.2": "42", + ".1.3.6.1.2.1.16.1.7.1.6.3": "2010989", + ".1.3.6.1.2.1.16.1.7.1.6.4": "0", + ".1.3.6.1.2.1.16.1.7.1.7.1": "0", + ".1.3.6.1.2.1.16.1.7.1.7.2": "0", + ".1.3.6.1.2.1.16.1.7.1.7.3": "0", + ".1.3.6.1.2.1.16.1.7.1.7.4": "0", + ".1.3.6.1.2.1.16.1.7.1.8.1": "4299190", + ".1.3.6.1.2.1.16.1.7.1.8.2": "23", + ".1.3.6.1.2.1.16.1.7.1.8.3": "524707", + ".1.3.6.1.2.1.16.1.7.1.8.4": "0", + ".1.3.6.1.2.1.16.1.7.1.9.1": "0", + ".1.3.6.1.2.1.16.1.7.1.9.2": "0", + ".1.3.6.1.2.1.16.1.7.1.9.3": "0", + ".1.3.6.1.2.1.16.1.7.1.9.4": "0", + ".1.3.6.1.2.1.16.1.7.1.10.1": "1491542", + ".1.3.6.1.2.1.16.1.7.1.10.2": "755029", + ".1.3.6.1.2.1.16.1.7.1.10.3": "2361587", + ".1.3.6.1.2.1.16.1.7.1.10.4": "2381335", + ".1.3.6.1.2.1.16.1.7.1.11.1": "0", + ".1.3.6.1.2.1.16.1.7.1.11.2": "0", + ".1.3.6.1.2.1.16.1.7.1.11.3": "0", + ".1.3.6.1.2.1.16.1.7.1.11.4": "0", + ".1.3.6.1.2.1.16.1.7.1.12.1": "3686", + ".1.3.6.1.2.1.16.1.7.1.12.2": "35", + ".1.3.6.1.2.1.16.1.7.1.12.3": "3003", + ".1.3.6.1.2.1.16.1.7.1.12.4": "0", + ".1.3.6.1.2.1.16.1.7.1.13.1": "0", + ".1.3.6.1.2.1.16.1.7.1.13.2": "0", + ".1.3.6.1.2.1.16.1.7.1.13.3": "0", + ".1.3.6.1.2.1.16.1.7.1.13.4": "0", + ".1.3.6.1.2.1.16.1.7.1.14.1": "2165", + ".1.3.6.1.2.1.16.1.7.1.14.2": "0", + ".1.3.6.1.2.1.16.1.7.1.14.3": "24786", + ".1.3.6.1.2.1.16.1.7.1.14.4": "0", + ".1.3.6.1.2.1.16.1.7.1.15.1": "0", + ".1.3.6.1.2.1.16.1.7.1.15.2": "0", + ".1.3.6.1.2.1.16.1.7.1.15.3": "0", + ".1.3.6.1.2.1.16.1.7.1.15.4": "0", + ".1.3.6.1.2.1.16.1.7.1.16.1": "836135", + ".1.3.6.1.2.1.16.1.7.1.16.2": "0", + ".1.3.6.1.2.1.16.1.7.1.16.3": "10120877", + ".1.3.6.1.2.1.16.1.7.1.16.4": "0", + ".1.3.6.1.2.1.16.2.1.1.1.1": "1", + ".1.3.6.1.2.1.16.2.1.1.1.2": "2", + ".1.3.6.1.2.1.16.2.1.1.1.3": "3", + ".1.3.6.1.2.1.16.2.1.1.1.4": "4", + ".1.3.6.1.2.1.16.2.1.1.1.5": "5", + ".1.3.6.1.2.1.16.2.1.1.1.6": "6", + ".1.3.6.1.2.1.16.2.1.1.1.7": "7", + ".1.3.6.1.2.1.16.2.1.1.1.8": "8", + ".1.3.6.1.2.1.16.2.1.1.2.1": ".1.3.6.1.2.1.2.2.1.1.1", + ".1.3.6.1.2.1.16.2.1.1.2.2": ".1.3.6.1.2.1.2.2.1.1.1", + ".1.3.6.1.2.1.16.2.1.1.2.3": ".1.3.6.1.2.1.2.2.1.1.2", + ".1.3.6.1.2.1.16.2.1.1.2.4": ".1.3.6.1.2.1.2.2.1.1.2", + ".1.3.6.1.2.1.16.2.1.1.2.5": ".1.3.6.1.2.1.2.2.1.1.3", + ".1.3.6.1.2.1.16.2.1.1.2.6": ".1.3.6.1.2.1.2.2.1.1.3", + ".1.3.6.1.2.1.16.2.1.1.2.7": ".1.3.6.1.2.1.2.2.1.1.4", + ".1.3.6.1.2.1.16.2.1.1.2.8": ".1.3.6.1.2.1.2.2.1.1.4", + ".1.3.6.1.2.1.16.2.1.1.3.1": "60", + ".1.3.6.1.2.1.16.2.1.1.3.2": "48", + ".1.3.6.1.2.1.16.2.1.1.3.3": "60", + ".1.3.6.1.2.1.16.2.1.1.3.4": "48", + ".1.3.6.1.2.1.16.2.1.1.3.5": "60", + ".1.3.6.1.2.1.16.2.1.1.3.6": "48", + ".1.3.6.1.2.1.16.2.1.1.3.7": "60", + ".1.3.6.1.2.1.16.2.1.1.3.8": "48", + ".1.3.6.1.2.1.16.2.1.1.4.1": "60", + ".1.3.6.1.2.1.16.2.1.1.4.2": "48", + ".1.3.6.1.2.1.16.2.1.1.4.3": "60", + ".1.3.6.1.2.1.16.2.1.1.4.4": "48", + ".1.3.6.1.2.1.16.2.1.1.4.5": "60", + ".1.3.6.1.2.1.16.2.1.1.4.6": "48", + ".1.3.6.1.2.1.16.2.1.1.4.7": "60", + ".1.3.6.1.2.1.16.2.1.1.4.8": "48", + ".1.3.6.1.2.1.16.2.1.1.5.1": "30", + ".1.3.6.1.2.1.16.2.1.1.5.2": "1800", + ".1.3.6.1.2.1.16.2.1.1.5.3": "30", + ".1.3.6.1.2.1.16.2.1.1.5.4": "1800", + ".1.3.6.1.2.1.16.2.1.1.5.5": "30", + ".1.3.6.1.2.1.16.2.1.1.5.6": "1800", + ".1.3.6.1.2.1.16.2.1.1.5.7": "30", + ".1.3.6.1.2.1.16.2.1.1.5.8": "1800", + ".1.3.6.1.2.1.16.2.1.1.6.1": "system", + ".1.3.6.1.2.1.16.2.1.1.6.2": "system", + ".1.3.6.1.2.1.16.2.1.1.6.3": "system", + ".1.3.6.1.2.1.16.2.1.1.6.4": "system", + ".1.3.6.1.2.1.16.2.1.1.6.5": "system", + ".1.3.6.1.2.1.16.2.1.1.6.6": "system", + ".1.3.6.1.2.1.16.2.1.1.6.7": "system", + ".1.3.6.1.2.1.16.2.1.1.6.8": "system", + ".1.3.6.1.2.1.16.2.1.1.7.1": "1", + ".1.3.6.1.2.1.16.2.1.1.7.2": "1", + ".1.3.6.1.2.1.16.2.1.1.7.3": "1", + ".1.3.6.1.2.1.16.2.1.1.7.4": "1", + ".1.3.6.1.2.1.16.2.1.1.7.5": "1", + ".1.3.6.1.2.1.16.2.1.1.7.6": "1", + ".1.3.6.1.2.1.16.2.1.1.7.7": "1", + ".1.3.6.1.2.1.16.2.1.1.7.8": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.1": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.24": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.25": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.26": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.27": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.28": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.29": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.30": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.31": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.32": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.33": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.34": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.35": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.36": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.37": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.38": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.39": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.40": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.41": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.42": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.43": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.44": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.45": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.46": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.47": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.48": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.49": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.50": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.51": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.52": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.53": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.54": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.55": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.56": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.57": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.58": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.59": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.60": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.61": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.62": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.63": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.64": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.65": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.66": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.67": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.68": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.69": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.70": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.71": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.72": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.73": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.74": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.75": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.76": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.77": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.78": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.79": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.80": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.81": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.82": "1", + ".1.3.6.1.2.1.16.2.2.1.1.1.83": "1", + ".1.3.6.1.2.1.16.2.2.1.1.2.1": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.24": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.25": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.26": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.27": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.28": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.29": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.30": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.31": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.32": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.33": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.34": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.35": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.36": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.37": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.38": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.39": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.40": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.41": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.42": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.43": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.44": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.45": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.46": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.47": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.48": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.49": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.50": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.51": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.52": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.53": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.54": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.55": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.56": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.57": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.58": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.59": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.60": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.61": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.62": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.63": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.64": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.65": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.66": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.67": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.68": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.69": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.70": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.71": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.72": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.73": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.74": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.75": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.76": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.77": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.78": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.79": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.80": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.81": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.82": "2", + ".1.3.6.1.2.1.16.2.2.1.1.2.83": "2", + ".1.3.6.1.2.1.16.2.2.1.1.3.1": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.24": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.25": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.26": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.27": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.28": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.29": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.30": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.31": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.32": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.33": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.34": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.35": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.36": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.37": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.38": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.39": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.40": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.41": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.42": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.43": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.44": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.45": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.46": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.47": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.48": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.49": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.50": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.51": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.52": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.53": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.54": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.55": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.56": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.57": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.58": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.59": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.60": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.61": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.62": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.63": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.64": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.65": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.66": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.67": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.68": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.69": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.70": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.71": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.72": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.73": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.74": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.75": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.76": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.77": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.78": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.79": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.80": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.81": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.82": "3", + ".1.3.6.1.2.1.16.2.2.1.1.3.83": "3", + ".1.3.6.1.2.1.16.2.2.1.1.4.1": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.24": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.25": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.26": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.27": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.28": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.29": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.30": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.31": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.32": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.33": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.34": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.35": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.36": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.37": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.38": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.39": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.40": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.41": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.42": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.43": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.44": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.45": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.46": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.47": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.48": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.49": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.50": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.51": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.52": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.53": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.54": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.55": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.56": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.57": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.58": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.59": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.60": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.61": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.62": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.63": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.64": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.65": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.66": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.67": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.68": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.69": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.70": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.71": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.72": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.73": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.74": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.75": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.76": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.77": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.78": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.79": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.80": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.81": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.82": "4", + ".1.3.6.1.2.1.16.2.2.1.1.4.83": "4", + ".1.3.6.1.2.1.16.2.2.1.2.1.1": "1", + ".1.3.6.1.2.1.16.2.2.1.2.1.24": "24", + ".1.3.6.1.2.1.16.2.2.1.2.1.25": "25", + ".1.3.6.1.2.1.16.2.2.1.2.1.26": "26", + ".1.3.6.1.2.1.16.2.2.1.2.1.27": "27", + ".1.3.6.1.2.1.16.2.2.1.2.1.28": "28", + ".1.3.6.1.2.1.16.2.2.1.2.1.29": "29", + ".1.3.6.1.2.1.16.2.2.1.2.1.30": "30", + ".1.3.6.1.2.1.16.2.2.1.2.1.31": "31", + ".1.3.6.1.2.1.16.2.2.1.2.1.32": "32", + ".1.3.6.1.2.1.16.2.2.1.2.1.33": "33", + ".1.3.6.1.2.1.16.2.2.1.2.1.34": "34", + ".1.3.6.1.2.1.16.2.2.1.2.1.35": "35", + ".1.3.6.1.2.1.16.2.2.1.2.1.36": "36", + ".1.3.6.1.2.1.16.2.2.1.2.1.37": "37", + ".1.3.6.1.2.1.16.2.2.1.2.1.38": "38", + ".1.3.6.1.2.1.16.2.2.1.2.1.39": "39", + ".1.3.6.1.2.1.16.2.2.1.2.1.40": "40", + ".1.3.6.1.2.1.16.2.2.1.2.1.41": "41", + ".1.3.6.1.2.1.16.2.2.1.2.1.42": "42", + ".1.3.6.1.2.1.16.2.2.1.2.1.43": "43", + ".1.3.6.1.2.1.16.2.2.1.2.1.44": "44", + ".1.3.6.1.2.1.16.2.2.1.2.1.45": "45", + ".1.3.6.1.2.1.16.2.2.1.2.1.46": "46", + ".1.3.6.1.2.1.16.2.2.1.2.1.47": "47", + ".1.3.6.1.2.1.16.2.2.1.2.1.48": "48", + ".1.3.6.1.2.1.16.2.2.1.2.1.49": "49", + ".1.3.6.1.2.1.16.2.2.1.2.1.50": "50", + ".1.3.6.1.2.1.16.2.2.1.2.1.51": "51", + ".1.3.6.1.2.1.16.2.2.1.2.1.52": "52", + ".1.3.6.1.2.1.16.2.2.1.2.1.53": "53", + ".1.3.6.1.2.1.16.2.2.1.2.1.54": "54", + ".1.3.6.1.2.1.16.2.2.1.2.1.55": "55", + ".1.3.6.1.2.1.16.2.2.1.2.1.56": "56", + ".1.3.6.1.2.1.16.2.2.1.2.1.57": "57", + ".1.3.6.1.2.1.16.2.2.1.2.1.58": "58", + ".1.3.6.1.2.1.16.2.2.1.2.1.59": "59", + ".1.3.6.1.2.1.16.2.2.1.2.1.60": "60", + ".1.3.6.1.2.1.16.2.2.1.2.1.61": "61", + ".1.3.6.1.2.1.16.2.2.1.2.1.62": "62", + ".1.3.6.1.2.1.16.2.2.1.2.1.63": "63", + ".1.3.6.1.2.1.16.2.2.1.2.1.64": "64", + ".1.3.6.1.2.1.16.2.2.1.2.1.65": "65", + ".1.3.6.1.2.1.16.2.2.1.2.1.66": "66", + ".1.3.6.1.2.1.16.2.2.1.2.1.67": "67", + ".1.3.6.1.2.1.16.2.2.1.2.1.68": "68", + ".1.3.6.1.2.1.16.2.2.1.2.1.69": "69", + ".1.3.6.1.2.1.16.2.2.1.2.1.70": "70", + ".1.3.6.1.2.1.16.2.2.1.2.1.71": "71", + ".1.3.6.1.2.1.16.2.2.1.2.1.72": "72", + ".1.3.6.1.2.1.16.2.2.1.2.1.73": "73", + ".1.3.6.1.2.1.16.2.2.1.2.1.74": "74", + ".1.3.6.1.2.1.16.2.2.1.2.1.75": "75", + ".1.3.6.1.2.1.16.2.2.1.2.1.76": "76", + ".1.3.6.1.2.1.16.2.2.1.2.1.77": "77", + ".1.3.6.1.2.1.16.2.2.1.2.1.78": "78", + ".1.3.6.1.2.1.16.2.2.1.2.1.79": "79", + ".1.3.6.1.2.1.16.2.2.1.2.1.80": "80", + ".1.3.6.1.2.1.16.2.2.1.2.1.81": "81", + ".1.3.6.1.2.1.16.2.2.1.2.1.82": "82", + ".1.3.6.1.2.1.16.2.2.1.2.1.83": "83", + ".1.3.6.1.2.1.16.2.2.1.2.2.1": "1", + ".1.3.6.1.2.1.16.2.2.1.2.2.24": "24", + ".1.3.6.1.2.1.16.2.2.1.2.2.25": "25", + ".1.3.6.1.2.1.16.2.2.1.2.2.26": "26", + ".1.3.6.1.2.1.16.2.2.1.2.2.27": "27", + ".1.3.6.1.2.1.16.2.2.1.2.2.28": "28", + ".1.3.6.1.2.1.16.2.2.1.2.2.29": "29", + ".1.3.6.1.2.1.16.2.2.1.2.2.30": "30", + ".1.3.6.1.2.1.16.2.2.1.2.2.31": "31", + ".1.3.6.1.2.1.16.2.2.1.2.2.32": "32", + ".1.3.6.1.2.1.16.2.2.1.2.2.33": "33", + ".1.3.6.1.2.1.16.2.2.1.2.2.34": "34", + ".1.3.6.1.2.1.16.2.2.1.2.2.35": "35", + ".1.3.6.1.2.1.16.2.2.1.2.2.36": "36", + ".1.3.6.1.2.1.16.2.2.1.2.2.37": "37", + ".1.3.6.1.2.1.16.2.2.1.2.2.38": "38", + ".1.3.6.1.2.1.16.2.2.1.2.2.39": "39", + ".1.3.6.1.2.1.16.2.2.1.2.2.40": "40", + ".1.3.6.1.2.1.16.2.2.1.2.2.41": "41", + ".1.3.6.1.2.1.16.2.2.1.2.2.42": "42", + ".1.3.6.1.2.1.16.2.2.1.2.2.43": "43", + ".1.3.6.1.2.1.16.2.2.1.2.2.44": "44", + ".1.3.6.1.2.1.16.2.2.1.2.2.45": "45", + ".1.3.6.1.2.1.16.2.2.1.2.2.46": "46", + ".1.3.6.1.2.1.16.2.2.1.2.2.47": "47", + ".1.3.6.1.2.1.16.2.2.1.2.2.48": "48", + ".1.3.6.1.2.1.16.2.2.1.2.2.49": "49", + ".1.3.6.1.2.1.16.2.2.1.2.2.50": "50", + ".1.3.6.1.2.1.16.2.2.1.2.2.51": "51", + ".1.3.6.1.2.1.16.2.2.1.2.2.52": "52", + ".1.3.6.1.2.1.16.2.2.1.2.2.53": "53", + ".1.3.6.1.2.1.16.2.2.1.2.2.54": "54", + ".1.3.6.1.2.1.16.2.2.1.2.2.55": "55", + ".1.3.6.1.2.1.16.2.2.1.2.2.56": "56", + ".1.3.6.1.2.1.16.2.2.1.2.2.57": "57", + ".1.3.6.1.2.1.16.2.2.1.2.2.58": "58", + ".1.3.6.1.2.1.16.2.2.1.2.2.59": "59", + ".1.3.6.1.2.1.16.2.2.1.2.2.60": "60", + ".1.3.6.1.2.1.16.2.2.1.2.2.61": "61", + ".1.3.6.1.2.1.16.2.2.1.2.2.62": "62", + ".1.3.6.1.2.1.16.2.2.1.2.2.63": "63", + ".1.3.6.1.2.1.16.2.2.1.2.2.64": "64", + ".1.3.6.1.2.1.16.2.2.1.2.2.65": "65", + ".1.3.6.1.2.1.16.2.2.1.2.2.66": "66", + ".1.3.6.1.2.1.16.2.2.1.2.2.67": "67", + ".1.3.6.1.2.1.16.2.2.1.2.2.68": "68", + ".1.3.6.1.2.1.16.2.2.1.2.2.69": "69", + ".1.3.6.1.2.1.16.2.2.1.2.2.70": "70", + ".1.3.6.1.2.1.16.2.2.1.2.2.71": "71", + ".1.3.6.1.2.1.16.2.2.1.2.2.72": "72", + ".1.3.6.1.2.1.16.2.2.1.2.2.73": "73", + ".1.3.6.1.2.1.16.2.2.1.2.2.74": "74", + ".1.3.6.1.2.1.16.2.2.1.2.2.75": "75", + ".1.3.6.1.2.1.16.2.2.1.2.2.76": "76", + ".1.3.6.1.2.1.16.2.2.1.2.2.77": "77", + ".1.3.6.1.2.1.16.2.2.1.2.2.78": "78", + ".1.3.6.1.2.1.16.2.2.1.2.2.79": "79", + ".1.3.6.1.2.1.16.2.2.1.2.2.80": "80", + ".1.3.6.1.2.1.16.2.2.1.2.2.81": "81", + ".1.3.6.1.2.1.16.2.2.1.2.2.82": "82", + ".1.3.6.1.2.1.16.2.2.1.2.2.83": "83", + ".1.3.6.1.2.1.16.2.2.1.2.3.1": "1", + ".1.3.6.1.2.1.16.2.2.1.2.3.24": "24", + ".1.3.6.1.2.1.16.2.2.1.2.3.25": "25", + ".1.3.6.1.2.1.16.2.2.1.2.3.26": "26", + ".1.3.6.1.2.1.16.2.2.1.2.3.27": "27", + ".1.3.6.1.2.1.16.2.2.1.2.3.28": "28", + ".1.3.6.1.2.1.16.2.2.1.2.3.29": "29", + ".1.3.6.1.2.1.16.2.2.1.2.3.30": "30", + ".1.3.6.1.2.1.16.2.2.1.2.3.31": "31", + ".1.3.6.1.2.1.16.2.2.1.2.3.32": "32", + ".1.3.6.1.2.1.16.2.2.1.2.3.33": "33", + ".1.3.6.1.2.1.16.2.2.1.2.3.34": "34", + ".1.3.6.1.2.1.16.2.2.1.2.3.35": "35", + ".1.3.6.1.2.1.16.2.2.1.2.3.36": "36", + ".1.3.6.1.2.1.16.2.2.1.2.3.37": "37", + ".1.3.6.1.2.1.16.2.2.1.2.3.38": "38", + ".1.3.6.1.2.1.16.2.2.1.2.3.39": "39", + ".1.3.6.1.2.1.16.2.2.1.2.3.40": "40", + ".1.3.6.1.2.1.16.2.2.1.2.3.41": "41", + ".1.3.6.1.2.1.16.2.2.1.2.3.42": "42", + ".1.3.6.1.2.1.16.2.2.1.2.3.43": "43", + ".1.3.6.1.2.1.16.2.2.1.2.3.44": "44", + ".1.3.6.1.2.1.16.2.2.1.2.3.45": "45", + ".1.3.6.1.2.1.16.2.2.1.2.3.46": "46", + ".1.3.6.1.2.1.16.2.2.1.2.3.47": "47", + ".1.3.6.1.2.1.16.2.2.1.2.3.48": "48", + ".1.3.6.1.2.1.16.2.2.1.2.3.49": "49", + ".1.3.6.1.2.1.16.2.2.1.2.3.50": "50", + ".1.3.6.1.2.1.16.2.2.1.2.3.51": "51", + ".1.3.6.1.2.1.16.2.2.1.2.3.52": "52", + ".1.3.6.1.2.1.16.2.2.1.2.3.53": "53", + ".1.3.6.1.2.1.16.2.2.1.2.3.54": "54", + ".1.3.6.1.2.1.16.2.2.1.2.3.55": "55", + ".1.3.6.1.2.1.16.2.2.1.2.3.56": "56", + ".1.3.6.1.2.1.16.2.2.1.2.3.57": "57", + ".1.3.6.1.2.1.16.2.2.1.2.3.58": "58", + ".1.3.6.1.2.1.16.2.2.1.2.3.59": "59", + ".1.3.6.1.2.1.16.2.2.1.2.3.60": "60", + ".1.3.6.1.2.1.16.2.2.1.2.3.61": "61", + ".1.3.6.1.2.1.16.2.2.1.2.3.62": "62", + ".1.3.6.1.2.1.16.2.2.1.2.3.63": "63", + ".1.3.6.1.2.1.16.2.2.1.2.3.64": "64", + ".1.3.6.1.2.1.16.2.2.1.2.3.65": "65", + ".1.3.6.1.2.1.16.2.2.1.2.3.66": "66", + ".1.3.6.1.2.1.16.2.2.1.2.3.67": "67", + ".1.3.6.1.2.1.16.2.2.1.2.3.68": "68", + ".1.3.6.1.2.1.16.2.2.1.2.3.69": "69", + ".1.3.6.1.2.1.16.2.2.1.2.3.70": "70", + ".1.3.6.1.2.1.16.2.2.1.2.3.71": "71", + ".1.3.6.1.2.1.16.2.2.1.2.3.72": "72", + ".1.3.6.1.2.1.16.2.2.1.2.3.73": "73", + ".1.3.6.1.2.1.16.2.2.1.2.3.74": "74", + ".1.3.6.1.2.1.16.2.2.1.2.3.75": "75", + ".1.3.6.1.2.1.16.2.2.1.2.3.76": "76", + ".1.3.6.1.2.1.16.2.2.1.2.3.77": "77", + ".1.3.6.1.2.1.16.2.2.1.2.3.78": "78", + ".1.3.6.1.2.1.16.2.2.1.2.3.79": "79", + ".1.3.6.1.2.1.16.2.2.1.2.3.80": "80", + ".1.3.6.1.2.1.16.2.2.1.2.3.81": "81", + ".1.3.6.1.2.1.16.2.2.1.2.3.82": "82", + ".1.3.6.1.2.1.16.2.2.1.2.3.83": "83", + ".1.3.6.1.2.1.16.2.2.1.2.4.1": "1", + ".1.3.6.1.2.1.16.2.2.1.2.4.24": "24", + ".1.3.6.1.2.1.16.2.2.1.2.4.25": "25", + ".1.3.6.1.2.1.16.2.2.1.2.4.26": "26", + ".1.3.6.1.2.1.16.2.2.1.2.4.27": "27", + ".1.3.6.1.2.1.16.2.2.1.2.4.28": "28", + ".1.3.6.1.2.1.16.2.2.1.2.4.29": "29", + ".1.3.6.1.2.1.16.2.2.1.2.4.30": "30", + ".1.3.6.1.2.1.16.2.2.1.2.4.31": "31", + ".1.3.6.1.2.1.16.2.2.1.2.4.32": "32", + ".1.3.6.1.2.1.16.2.2.1.2.4.33": "33", + ".1.3.6.1.2.1.16.2.2.1.2.4.34": "34", + ".1.3.6.1.2.1.16.2.2.1.2.4.35": "35", + ".1.3.6.1.2.1.16.2.2.1.2.4.36": "36", + ".1.3.6.1.2.1.16.2.2.1.2.4.37": "37", + ".1.3.6.1.2.1.16.2.2.1.2.4.38": "38", + ".1.3.6.1.2.1.16.2.2.1.2.4.39": "39", + ".1.3.6.1.2.1.16.2.2.1.2.4.40": "40", + ".1.3.6.1.2.1.16.2.2.1.2.4.41": "41", + ".1.3.6.1.2.1.16.2.2.1.2.4.42": "42", + ".1.3.6.1.2.1.16.2.2.1.2.4.43": "43", + ".1.3.6.1.2.1.16.2.2.1.2.4.44": "44", + ".1.3.6.1.2.1.16.2.2.1.2.4.45": "45", + ".1.3.6.1.2.1.16.2.2.1.2.4.46": "46", + ".1.3.6.1.2.1.16.2.2.1.2.4.47": "47", + ".1.3.6.1.2.1.16.2.2.1.2.4.48": "48", + ".1.3.6.1.2.1.16.2.2.1.2.4.49": "49", + ".1.3.6.1.2.1.16.2.2.1.2.4.50": "50", + ".1.3.6.1.2.1.16.2.2.1.2.4.51": "51", + ".1.3.6.1.2.1.16.2.2.1.2.4.52": "52", + ".1.3.6.1.2.1.16.2.2.1.2.4.53": "53", + ".1.3.6.1.2.1.16.2.2.1.2.4.54": "54", + ".1.3.6.1.2.1.16.2.2.1.2.4.55": "55", + ".1.3.6.1.2.1.16.2.2.1.2.4.56": "56", + ".1.3.6.1.2.1.16.2.2.1.2.4.57": "57", + ".1.3.6.1.2.1.16.2.2.1.2.4.58": "58", + ".1.3.6.1.2.1.16.2.2.1.2.4.59": "59", + ".1.3.6.1.2.1.16.2.2.1.2.4.60": "60", + ".1.3.6.1.2.1.16.2.2.1.2.4.61": "61", + ".1.3.6.1.2.1.16.2.2.1.2.4.62": "62", + ".1.3.6.1.2.1.16.2.2.1.2.4.63": "63", + ".1.3.6.1.2.1.16.2.2.1.2.4.64": "64", + ".1.3.6.1.2.1.16.2.2.1.2.4.65": "65", + ".1.3.6.1.2.1.16.2.2.1.2.4.66": "66", + ".1.3.6.1.2.1.16.2.2.1.2.4.67": "67", + ".1.3.6.1.2.1.16.2.2.1.2.4.68": "68", + ".1.3.6.1.2.1.16.2.2.1.2.4.69": "69", + ".1.3.6.1.2.1.16.2.2.1.2.4.70": "70", + ".1.3.6.1.2.1.16.2.2.1.2.4.71": "71", + ".1.3.6.1.2.1.16.2.2.1.2.4.72": "72", + ".1.3.6.1.2.1.16.2.2.1.2.4.73": "73", + ".1.3.6.1.2.1.16.2.2.1.2.4.74": "74", + ".1.3.6.1.2.1.16.2.2.1.2.4.75": "75", + ".1.3.6.1.2.1.16.2.2.1.2.4.76": "76", + ".1.3.6.1.2.1.16.2.2.1.2.4.77": "77", + ".1.3.6.1.2.1.16.2.2.1.2.4.78": "78", + ".1.3.6.1.2.1.16.2.2.1.2.4.79": "79", + ".1.3.6.1.2.1.16.2.2.1.2.4.80": "80", + ".1.3.6.1.2.1.16.2.2.1.2.4.81": "81", + ".1.3.6.1.2.1.16.2.2.1.2.4.82": "82", + ".1.3.6.1.2.1.16.2.2.1.2.4.83": "83", + ".1.3.6.1.2.1.16.2.2.1.3.1.1": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.24": "0:0:12:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.25": "0:0:12:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.26": "0:0:13:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.27": "0:0:13:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.28": "0:0:14:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.29": "0:0:14:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.30": "0:0:15:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.31": "0:0:15:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.32": "0:0:16:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.33": "0:0:16:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.34": "0:0:17:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.35": "0:0:17:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.36": "0:0:18:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.37": "0:0:18:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.38": "0:0:19:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.39": "0:0:19:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.40": "0:0:20:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.41": "0:0:20:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.42": "0:0:21:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.43": "0:0:21:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.44": "0:0:22:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.45": "0:0:22:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.46": "0:0:23:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.47": "0:0:23:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.48": "0:0:24:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.49": "0:0:24:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.50": "0:0:25:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.51": "0:0:25:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.52": "0:0:26:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.53": "0:0:26:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.54": "0:0:27:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.55": "0:0:27:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.56": "0:0:28:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.57": "0:0:28:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.58": "0:0:29:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.59": "0:0:29:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.60": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.61": "0:0:30:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.62": "0:0:31:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.63": "0:0:31:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.64": "0:0:32:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.65": "0:0:32:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.66": "0:0:33:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.67": "0:0:33:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.68": "0:0:34:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.69": "0:0:34:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.70": "0:0:35:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.71": "0:0:35:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.72": "0:0:36:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.1.73": "0:0:36:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.74": "0:0:37:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.75": "0:0:37:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.76": "0:0:38:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.77": "0:0:38:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.78": "0:0:39:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.79": "0:0:39:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.80": "0:0:40:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.81": "0:0:40:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.82": "0:0:41:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.1.83": "0:0:41:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.1": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.24": "0:0:12:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.25": "0:0:12:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.26": "0:0:13:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.27": "0:0:13:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.28": "0:0:14:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.29": "0:0:14:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.30": "0:0:15:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.31": "0:0:15:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.32": "0:0:16:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.33": "0:0:16:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.34": "0:0:17:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.35": "0:0:17:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.36": "0:0:18:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.37": "0:0:18:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.38": "0:0:19:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.39": "0:0:19:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.40": "0:0:20:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.41": "0:0:20:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.42": "0:0:21:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.43": "0:0:21:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.44": "0:0:22:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.45": "0:0:22:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.46": "0:0:23:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.47": "0:0:23:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.48": "0:0:24:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.49": "0:0:24:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.50": "0:0:25:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.51": "0:0:25:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.52": "0:0:26:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.53": "0:0:26:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.54": "0:0:27:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.55": "0:0:27:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.56": "0:0:28:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.57": "0:0:28:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.58": "0:0:29:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.59": "0:0:29:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.60": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.61": "0:0:30:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.62": "0:0:31:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.63": "0:0:31:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.64": "0:0:32:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.65": "0:0:32:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.66": "0:0:33:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.67": "0:0:33:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.68": "0:0:34:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.69": "0:0:34:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.70": "0:0:35:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.71": "0:0:35:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.2.72": "0:0:36:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.73": "0:0:36:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.74": "0:0:37:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.75": "0:0:37:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.76": "0:0:38:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.77": "0:0:38:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.78": "0:0:39:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.79": "0:0:39:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.80": "0:0:40:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.81": "0:0:40:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.82": "0:0:41:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.2.83": "0:0:41:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.1": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.24": "0:0:12:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.25": "0:0:12:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.26": "0:0:13:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.27": "0:0:13:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.28": "0:0:14:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.29": "0:0:14:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.30": "0:0:15:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.31": "0:0:15:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.32": "0:0:16:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.33": "0:0:16:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.34": "0:0:17:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.35": "0:0:17:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.36": "0:0:18:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.37": "0:0:18:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.38": "0:0:19:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.39": "0:0:19:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.40": "0:0:20:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.41": "0:0:20:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.42": "0:0:21:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.43": "0:0:21:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.44": "0:0:22:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.45": "0:0:22:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.46": "0:0:23:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.47": "0:0:23:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.48": "0:0:24:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.49": "0:0:24:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.50": "0:0:25:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.51": "0:0:25:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.52": "0:0:26:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.53": "0:0:26:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.54": "0:0:27:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.55": "0:0:27:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.56": "0:0:28:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.57": "0:0:28:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.58": "0:0:29:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.59": "0:0:29:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.60": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.61": "0:0:30:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.62": "0:0:31:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.63": "0:0:31:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.64": "0:0:32:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.65": "0:0:32:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.66": "0:0:33:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.67": "0:0:33:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.68": "0:0:34:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.69": "0:0:34:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.3.70": "0:0:35:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.71": "0:0:35:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.72": "0:0:36:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.73": "0:0:36:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.74": "0:0:37:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.75": "0:0:37:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.76": "0:0:38:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.77": "0:0:38:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.78": "0:0:39:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.79": "0:0:39:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.80": "0:0:40:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.81": "0:0:40:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.82": "0:0:41:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.3.83": "0:0:41:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.1": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.24": "0:0:12:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.25": "0:0:12:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.26": "0:0:13:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.27": "0:0:13:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.28": "0:0:14:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.29": "0:0:14:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.30": "0:0:15:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.31": "0:0:15:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.32": "0:0:16:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.33": "0:0:16:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.34": "0:0:17:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.35": "0:0:17:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.36": "0:0:18:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.37": "0:0:18:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.38": "0:0:19:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.39": "0:0:19:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.40": "0:0:20:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.41": "0:0:20:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.42": "0:0:21:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.43": "0:0:21:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.44": "0:0:22:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.45": "0:0:22:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.46": "0:0:23:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.47": "0:0:23:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.48": "0:0:24:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.49": "0:0:24:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.50": "0:0:25:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.51": "0:0:25:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.52": "0:0:26:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.53": "0:0:26:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.54": "0:0:27:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.55": "0:0:27:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.56": "0:0:28:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.57": "0:0:28:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.58": "0:0:29:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.59": "0:0:29:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.60": "0:0:30:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.61": "0:0:30:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.62": "0:0:31:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.63": "0:0:31:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.64": "0:0:32:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.65": "0:0:32:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.66": "0:0:33:00.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.67": "0:0:33:30.31", + ".1.3.6.1.2.1.16.2.2.1.3.4.68": "0:0:34:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.69": "0:0:34:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.70": "0:0:35:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.71": "0:0:35:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.72": "0:0:36:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.73": "0:0:36:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.74": "0:0:37:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.75": "0:0:37:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.76": "0:0:38:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.77": "0:0:38:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.78": "0:0:39:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.79": "0:0:39:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.80": "0:0:40:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.81": "0:0:40:30.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.82": "0:0:41:00.32", + ".1.3.6.1.2.1.16.2.2.1.3.4.83": "0:0:41:30.32", + ".1.3.6.1.2.1.16.2.2.1.4.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.24": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.4.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.24": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.4.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.4.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.4.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.5.1.1": "9600", + ".1.3.6.1.2.1.16.2.2.1.5.1.25": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.26": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.27": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.28": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.29": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.30": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.31": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.32": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.33": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.34": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.35": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.36": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.37": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.38": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.39": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.40": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.41": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.42": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.43": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.44": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.45": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.46": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.47": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.48": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.49": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.50": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.51": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.52": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.53": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.54": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.55": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.56": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.57": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.58": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.59": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.60": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.61": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.62": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.63": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.64": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.65": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.66": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.67": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.68": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.69": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.70": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.71": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.72": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.73": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.74": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.75": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.76": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.77": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.78": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.79": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.80": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.81": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.82": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.83": "160", + ".1.3.6.1.2.1.16.2.2.1.5.1.84": "160", + ".1.3.6.1.2.1.16.2.2.1.5.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.5.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.5.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.5.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.6.1.1": "60", + ".1.3.6.1.2.1.16.2.2.1.6.1.25": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.26": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.27": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.28": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.29": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.30": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.31": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.32": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.33": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.34": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.35": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.36": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.37": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.38": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.39": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.40": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.41": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.42": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.43": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.44": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.45": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.46": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.47": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.48": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.49": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.50": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.51": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.52": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.53": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.54": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.55": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.56": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.57": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.58": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.59": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.60": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.61": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.62": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.63": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.64": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.65": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.66": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.67": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.68": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.69": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.70": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.71": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.72": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.73": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.74": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.75": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.76": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.77": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.78": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.79": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.80": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.81": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.82": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.83": "1", + ".1.3.6.1.2.1.16.2.2.1.6.1.84": "1", + ".1.3.6.1.2.1.16.2.2.1.6.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.6.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.6.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.6.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.7.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.7.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.7.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.7.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.8.1.1": "60", + ".1.3.6.1.2.1.16.2.2.1.8.1.25": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.26": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.27": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.28": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.29": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.30": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.31": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.32": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.33": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.34": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.35": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.36": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.37": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.38": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.39": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.40": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.41": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.42": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.43": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.44": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.45": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.46": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.47": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.48": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.49": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.50": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.51": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.52": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.53": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.54": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.55": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.56": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.57": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.58": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.59": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.60": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.61": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.62": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.63": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.64": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.65": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.66": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.67": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.68": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.69": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.70": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.71": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.72": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.73": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.74": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.75": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.76": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.77": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.78": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.79": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.80": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.81": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.82": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.83": "1", + ".1.3.6.1.2.1.16.2.2.1.8.1.84": "1", + ".1.3.6.1.2.1.16.2.2.1.8.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.8.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.8.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.8.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.9.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.9.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.9.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.9.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.10.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.10.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.10.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.10.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.11.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.11.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.11.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.11.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.12.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.12.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.12.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.12.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.13.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.13.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.13.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.25": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.13.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.25": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.14.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.25": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.14.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.25": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.14.3.85": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.14.4.85": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.1": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.26": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.27": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.28": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.29": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.30": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.31": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.32": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.33": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.34": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.35": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.36": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.37": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.38": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.39": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.40": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.41": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.42": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.43": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.44": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.45": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.46": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.47": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.48": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.49": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.50": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.51": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.52": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.53": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.54": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.55": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.56": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.57": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.58": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.59": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.60": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.61": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.62": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.63": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.64": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.65": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.66": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.67": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.68": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.69": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.70": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.71": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.72": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.73": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.74": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.75": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.76": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.77": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.78": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.79": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.80": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.81": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.82": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.83": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.84": "0", + ".1.3.6.1.2.1.16.2.2.1.15.1.85": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.1": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.26": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.27": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.28": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.29": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.30": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.31": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.32": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.33": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.34": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.35": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.36": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.37": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.38": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.39": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.40": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.41": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.42": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.43": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.44": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.45": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.46": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.47": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.48": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.49": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.50": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.51": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.52": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.53": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.54": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.55": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.56": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.57": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.58": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.59": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.60": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.61": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.62": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.63": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.64": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.65": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.66": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.67": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.68": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.69": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.70": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.71": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.72": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.73": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.74": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.75": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.76": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.77": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.78": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.79": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.80": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.81": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.82": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.83": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.84": "0", + ".1.3.6.1.2.1.16.2.2.1.15.2.85": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.1": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.26": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.27": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.28": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.29": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.30": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.31": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.32": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.33": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.34": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.35": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.36": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.37": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.38": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.39": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.40": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.41": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.42": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.43": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.44": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.45": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.46": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.47": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.48": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.49": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.50": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.51": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.52": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.53": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.54": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.55": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.56": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.57": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.58": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.59": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.60": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.61": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.62": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.63": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.64": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.65": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.66": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.67": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.68": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.69": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.70": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.71": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.72": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.73": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.74": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.75": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.76": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.77": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.78": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.79": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.80": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.81": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.82": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.83": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.84": "0", + ".1.3.6.1.2.1.16.2.2.1.15.3.85": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.1": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.26": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.27": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.28": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.29": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.30": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.31": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.32": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.33": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.34": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.35": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.36": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.37": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.38": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.39": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.40": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.41": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.42": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.43": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.44": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.45": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.46": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.47": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.48": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.49": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.50": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.51": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.52": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.53": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.54": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.55": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.56": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.57": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.58": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.59": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.60": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.61": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.62": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.63": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.64": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.65": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.66": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.67": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.68": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.69": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.70": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.71": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.72": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.73": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.74": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.75": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.76": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.77": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.78": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.79": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.80": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.81": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.82": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.83": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.84": "0", + ".1.3.6.1.2.1.16.2.2.1.15.4.85": "0", + ".1.3.6.1.2.1.16.2.6.1.1.1.61": "0", + ".1.3.6.1.2.1.16.2.6.1.1.2.62": "0", + ".1.3.6.1.2.1.16.2.6.1.1.3.63": "0", + ".1.3.6.1.2.1.16.2.6.1.1.4.64": "0", + ".1.3.6.1.2.1.16.2.6.1.1.5.65": "0", + ".1.3.6.1.2.1.16.2.6.1.1.6.66": "0", + ".1.3.6.1.2.1.16.2.6.1.1.7.67": "0", + ".1.3.6.1.2.1.16.2.6.1.1.8.68": "0", + ".1.3.6.1.2.1.16.2.6.1.1.9.69": "0", + ".1.3.6.1.2.1.16.2.6.1.1.10.70": "0", + ".1.3.6.1.2.1.16.2.6.1.1.11.71": "0", + ".1.3.6.1.2.1.16.2.6.1.1.12.72": "0", + ".1.3.6.1.2.1.16.2.6.1.1.13.73": "0", + ".1.3.6.1.2.1.16.2.6.1.1.14.74": "0", + ".1.3.6.1.2.1.16.2.6.1.1.15.75": "0", + ".1.3.6.1.2.1.16.2.6.1.1.16.76": "0", + ".1.3.6.1.2.1.16.2.6.1.1.17.77": "0", + ".1.3.6.1.2.1.16.2.6.1.1.18.78": "0", + ".1.3.6.1.2.1.16.2.6.1.1.19.79": "0", + ".1.3.6.1.2.1.16.2.6.1.1.20.80": "0", + ".1.3.6.1.2.1.16.2.6.1.1.21.81": "0", + ".1.3.6.1.2.1.16.2.6.1.1.22.82": "0", + ".1.3.6.1.2.1.16.2.6.1.1.23.83": "0", + ".1.3.6.1.2.1.16.2.6.1.1.24.84": "0", + ".1.3.6.1.2.1.16.2.6.1.1.25.85": "0", + ".1.3.6.1.2.1.16.2.6.1.1.26.26": "0", + ".1.3.6.1.2.1.16.2.6.1.1.27.27": "0", + ".1.3.6.1.2.1.16.2.6.1.1.28.28": "0", + ".1.3.6.1.2.1.16.2.6.1.1.29.29": "0", + ".1.3.6.1.2.1.16.2.6.1.1.30.30": "0", + ".1.3.6.1.2.1.16.2.6.1.1.31.31": "0", + ".1.3.6.1.2.1.16.2.6.1.1.32.32": "0", + ".1.3.6.1.2.1.16.2.6.1.1.33.33": "0", + ".1.3.6.1.2.1.16.2.6.1.1.34.34": "0", + ".1.3.6.1.2.1.16.2.6.1.1.35.35": "0", + ".1.3.6.1.2.1.16.2.6.1.1.36.36": "0", + ".1.3.6.1.2.1.16.2.6.1.1.37.37": "0", + ".1.3.6.1.2.1.16.2.6.1.1.38.38": "0", + ".1.3.6.1.2.1.16.2.6.1.1.39.39": "0", + ".1.3.6.1.2.1.16.2.6.1.1.40.40": "0", + ".1.3.6.1.2.1.16.2.6.1.1.41.41": "0", + ".1.3.6.1.2.1.16.2.6.1.1.42.42": "0", + ".1.3.6.1.2.1.16.2.6.1.1.43.43": "0", + ".1.3.6.1.2.1.16.2.6.1.1.44.44": "0", + ".1.3.6.1.2.1.16.2.6.1.1.45.45": "0", + ".1.3.6.1.2.1.16.2.6.1.1.46.46": "0", + ".1.3.6.1.2.1.16.2.6.1.1.47.47": "0", + ".1.3.6.1.2.1.16.2.6.1.1.48.48": "0", + ".1.3.6.1.2.1.16.2.6.1.1.49.49": "0", + ".1.3.6.1.2.1.16.2.6.1.1.50.50": "0", + ".1.3.6.1.2.1.16.2.6.1.1.51.51": "0", + ".1.3.6.1.2.1.16.2.6.1.1.52.52": "0", + ".1.3.6.1.2.1.16.2.6.1.1.53.53": "0", + ".1.3.6.1.2.1.16.2.6.1.1.54.54": "0", + ".1.3.6.1.2.1.16.2.6.1.1.55.55": "0", + ".1.3.6.1.2.1.16.2.6.1.1.56.56": "0", + ".1.3.6.1.2.1.16.2.6.1.1.57.57": "0", + ".1.3.6.1.2.1.16.2.6.1.1.58.58": "0", + ".1.3.6.1.2.1.16.2.6.1.1.59.59": "0", + ".1.3.6.1.2.1.16.2.6.1.1.60.60": "0", + ".1.3.6.1.2.1.16.2.6.1.1.61.1": "0", + ".1.3.6.1.2.1.16.2.6.1.1.62.61": "0", + ".1.3.6.1.2.1.16.2.6.1.1.63.62": "0", + ".1.3.6.1.2.1.16.2.6.1.1.64.63": "0", + ".1.3.6.1.2.1.16.2.6.1.1.65.64": "0", + ".1.3.6.1.2.1.16.2.6.1.1.66.65": "0", + ".1.3.6.1.2.1.16.2.6.1.1.67.66": "0", + ".1.3.6.1.2.1.16.2.6.1.1.68.67": "0", + ".1.3.6.1.2.1.16.2.6.1.1.69.68": "0", + ".1.3.6.1.2.1.16.2.6.1.1.70.69": "0", + ".1.3.6.1.2.1.16.2.6.1.1.71.70": "0", + ".1.3.6.1.2.1.16.2.6.1.1.72.71": "0", + ".1.3.6.1.2.1.16.2.6.1.1.73.72": "0", + ".1.3.6.1.2.1.16.2.6.1.1.74.73": "0", + ".1.3.6.1.2.1.16.2.6.1.1.75.74": "0", + ".1.3.6.1.2.1.16.2.6.1.1.76.75": "0", + ".1.3.6.1.2.1.16.2.6.1.1.77.76": "0", + ".1.3.6.1.2.1.16.2.6.1.1.78.77": "0", + ".1.3.6.1.2.1.16.2.6.1.1.79.78": "0", + ".1.3.6.1.2.1.16.2.6.1.1.80.79": "0", + ".1.3.6.1.2.1.16.2.6.1.1.81.80": "0", + ".1.3.6.1.2.1.16.2.6.1.1.82.81": "0", + ".1.3.6.1.2.1.16.2.6.1.1.83.82": "0", + ".1.3.6.1.2.1.16.2.6.1.1.84.83": "0", + ".1.3.6.1.2.1.16.2.6.1.1.85.84": "0", + ".1.3.6.1.2.1.16.2.6.1.1.86.85": "0", + ".1.3.6.1.2.1.16.2.6.1.1.87.26": "0", + ".1.3.6.1.2.1.16.2.6.1.1.88.27": "0", + ".1.3.6.1.2.1.16.2.6.1.1.89.28": "0", + ".1.3.6.1.2.1.16.2.6.1.1.90.29": "0", + ".1.3.6.1.2.1.16.2.6.1.1.91.30": "0", + ".1.3.6.1.2.1.16.2.6.1.1.92.31": "0", + ".1.3.6.1.2.1.16.2.6.1.1.93.32": "0", + ".1.3.6.1.2.1.16.2.6.1.1.94.33": "0", + ".1.3.6.1.2.1.16.2.6.1.1.95.34": "0", + ".1.3.6.1.2.1.16.2.6.1.1.96.35": "0", + ".1.3.6.1.2.1.16.2.6.1.1.97.36": "0", + ".1.3.6.1.2.1.16.2.6.1.1.98.37": "0", + ".1.3.6.1.2.1.16.2.6.1.1.99.38": "0", + ".1.3.6.1.2.1.16.2.6.1.1.100.39": "0", + ".1.3.6.1.2.1.16.2.6.1.1.101.40": "0", + ".1.3.6.1.2.1.16.2.6.1.1.102.41": "0", + ".1.3.6.1.2.1.16.2.6.1.1.103.42": "0", + ".1.3.6.1.2.1.16.2.6.1.1.104.43": "0", + ".1.3.6.1.2.1.16.2.6.1.1.105.44": "0", + ".1.3.6.1.2.1.16.2.6.1.1.106.45": "0", + ".1.3.6.1.2.1.16.2.6.1.1.107.46": "0", + ".1.3.6.1.2.1.16.2.6.1.1.108.47": "0", + ".1.3.6.1.2.1.16.2.6.1.1.109.48": "0", + ".1.3.6.1.2.1.16.2.6.1.1.110.49": "0", + ".1.3.6.1.2.1.16.2.6.1.1.111.50": "0", + ".1.3.6.1.2.1.16.2.6.1.1.112.51": "0", + ".1.3.6.1.2.1.16.2.6.1.1.113.52": "0", + ".1.3.6.1.2.1.16.2.6.1.1.114.53": "0", + ".1.3.6.1.2.1.16.2.6.1.1.115.54": "0", + ".1.3.6.1.2.1.16.2.6.1.1.116.55": "0", + ".1.3.6.1.2.1.16.2.6.1.1.117.56": "0", + ".1.3.6.1.2.1.16.2.6.1.1.118.57": "0", + ".1.3.6.1.2.1.16.2.6.1.1.119.58": "0", + ".1.3.6.1.2.1.16.2.6.1.1.120.59": "0", + ".1.3.6.1.2.1.16.2.6.1.1.121.60": "0", + ".1.3.6.1.2.1.16.2.6.1.1.122.1": "0", + ".1.3.6.1.2.1.16.2.6.1.1.123.61": "0", + ".1.3.6.1.2.1.16.2.6.1.1.124.62": "0", + ".1.3.6.1.2.1.16.2.6.1.1.125.63": "0", + ".1.3.6.1.2.1.16.2.6.1.1.126.64": "0", + ".1.3.6.1.2.1.16.2.6.1.1.127.65": "0", + ".1.3.6.1.2.1.16.2.6.1.1.128.66": "0", + ".1.3.6.1.2.1.16.2.6.1.1.129.67": "0", + ".1.3.6.1.2.1.16.2.6.1.1.130.68": "0", + ".1.3.6.1.2.1.16.2.6.1.1.131.69": "0", + ".1.3.6.1.2.1.16.2.6.1.1.132.70": "0", + ".1.3.6.1.2.1.16.2.6.1.1.133.71": "0", + ".1.3.6.1.2.1.16.2.6.1.1.134.72": "0", + ".1.3.6.1.2.1.16.2.6.1.1.135.73": "0", + ".1.3.6.1.2.1.16.2.6.1.1.136.74": "0", + ".1.3.6.1.2.1.16.2.6.1.1.137.75": "0", + ".1.3.6.1.2.1.16.2.6.1.1.138.76": "0", + ".1.3.6.1.2.1.16.2.6.1.1.139.77": "0", + ".1.3.6.1.2.1.16.2.6.1.1.140.78": "0", + ".1.3.6.1.2.1.16.2.6.1.1.141.79": "0", + ".1.3.6.1.2.1.16.2.6.1.1.142.80": "0", + ".1.3.6.1.2.1.16.2.6.1.1.143.81": "0", + ".1.3.6.1.2.1.16.2.6.1.1.144.82": "0", + ".1.3.6.1.2.1.16.2.6.1.1.145.83": "0", + ".1.3.6.1.2.1.16.2.6.1.1.146.84": "0", + ".1.3.6.1.2.1.16.2.6.1.1.147.85": "0", + ".1.3.6.1.2.1.16.2.6.1.1.148.26": "0", + ".1.3.6.1.2.1.16.2.6.1.1.149.27": "0", + ".1.3.6.1.2.1.16.2.6.1.1.150.28": "0", + ".1.3.6.1.2.1.16.2.6.1.1.151.29": "0", + ".1.3.6.1.2.1.16.2.6.1.1.152.30": "0", + ".1.3.6.1.2.1.16.2.6.1.1.153.31": "0", + ".1.3.6.1.2.1.16.2.6.1.1.154.32": "0", + ".1.3.6.1.2.1.16.2.6.1.1.155.33": "0", + ".1.3.6.1.2.1.16.2.6.1.1.156.34": "0", + ".1.3.6.1.2.1.16.2.6.1.1.157.35": "0", + ".1.3.6.1.2.1.16.2.6.1.1.158.36": "0", + ".1.3.6.1.2.1.16.2.6.1.1.159.37": "0", + ".1.3.6.1.2.1.16.2.6.1.1.160.38": "0", + ".1.3.6.1.2.1.16.2.6.1.1.161.39": "0", + ".1.3.6.1.2.1.16.2.6.1.1.162.40": "0", + ".1.3.6.1.2.1.16.2.6.1.1.163.41": "0", + ".1.3.6.1.2.1.16.2.6.1.1.164.42": "0", + ".1.3.6.1.2.1.16.2.6.1.1.165.43": "0", + ".1.3.6.1.2.1.16.2.6.1.1.166.44": "0", + ".1.3.6.1.2.1.16.2.6.1.1.167.45": "0", + ".1.3.6.1.2.1.16.2.6.1.1.168.46": "0", + ".1.3.6.1.2.1.16.2.6.1.1.169.47": "0", + ".1.3.6.1.2.1.16.2.6.1.1.170.48": "0", + ".1.3.6.1.2.1.16.2.6.1.1.171.49": "0", + ".1.3.6.1.2.1.16.2.6.1.1.172.50": "0", + ".1.3.6.1.2.1.16.2.6.1.1.173.51": "0", + ".1.3.6.1.2.1.16.2.6.1.1.174.52": "0", + ".1.3.6.1.2.1.16.2.6.1.1.175.53": "0", + ".1.3.6.1.2.1.16.2.6.1.1.176.54": "0", + ".1.3.6.1.2.1.16.2.6.1.1.177.55": "0", + ".1.3.6.1.2.1.16.2.6.1.1.178.56": "0", + ".1.3.6.1.2.1.16.2.6.1.1.179.57": "0", + ".1.3.6.1.2.1.16.2.6.1.1.180.58": "0", + ".1.3.6.1.2.1.16.2.6.1.1.181.59": "0", + ".1.3.6.1.2.1.16.2.6.1.1.182.60": "0", + ".1.3.6.1.2.1.16.2.6.1.1.183.1": "0", + ".1.3.6.1.2.1.16.2.6.1.1.184.61": "0", + ".1.3.6.1.2.1.16.2.6.1.1.185.62": "0", + ".1.3.6.1.2.1.16.2.6.1.1.186.63": "0", + ".1.3.6.1.2.1.16.2.6.1.1.187.64": "0", + ".1.3.6.1.2.1.16.2.6.1.1.188.65": "0", + ".1.3.6.1.2.1.16.2.6.1.1.189.66": "0", + ".1.3.6.1.2.1.16.2.6.1.1.190.67": "0", + ".1.3.6.1.2.1.16.2.6.1.1.191.68": "0", + ".1.3.6.1.2.1.16.2.6.1.1.192.69": "0", + ".1.3.6.1.2.1.16.2.6.1.1.193.70": "0", + ".1.3.6.1.2.1.16.2.6.1.1.194.71": "0", + ".1.3.6.1.2.1.16.2.6.1.1.195.72": "0", + ".1.3.6.1.2.1.16.2.6.1.1.196.73": "0", + ".1.3.6.1.2.1.16.2.6.1.1.197.74": "0", + ".1.3.6.1.2.1.16.2.6.1.1.198.75": "0", + ".1.3.6.1.2.1.16.2.6.1.1.199.76": "0", + ".1.3.6.1.2.1.16.2.6.1.1.200.77": "0", + ".1.3.6.1.2.1.16.2.6.1.1.201.78": "0", + ".1.3.6.1.2.1.16.2.6.1.1.202.79": "0", + ".1.3.6.1.2.1.16.2.6.1.1.203.80": "0", + ".1.3.6.1.2.1.16.2.6.1.1.204.81": "0", + ".1.3.6.1.2.1.16.2.6.1.1.205.82": "0", + ".1.3.6.1.2.1.16.2.6.1.1.206.83": "0", + ".1.3.6.1.2.1.16.2.6.1.1.207.84": "0", + ".1.3.6.1.2.1.16.2.6.1.1.208.85": "0", + ".1.3.6.1.2.1.16.2.6.1.1.209.26": "0", + ".1.3.6.1.2.1.16.2.6.1.1.210.27": "0", + ".1.3.6.1.2.1.16.2.6.1.1.211.28": "0", + ".1.3.6.1.2.1.16.2.6.1.1.212.29": "0", + ".1.3.6.1.2.1.16.2.6.1.1.213.30": "0", + ".1.3.6.1.2.1.16.2.6.1.1.214.31": "0", + ".1.3.6.1.2.1.16.2.6.1.1.215.32": "0", + ".1.3.6.1.2.1.16.2.6.1.1.216.33": "0", + ".1.3.6.1.2.1.16.2.6.1.1.217.34": "0", + ".1.3.6.1.2.1.16.2.6.1.1.218.35": "0", + ".1.3.6.1.2.1.16.2.6.1.1.219.36": "0", + ".1.3.6.1.2.1.16.2.6.1.1.220.37": "0", + ".1.3.6.1.2.1.16.2.6.1.1.221.38": "0", + ".1.3.6.1.2.1.16.2.6.1.1.222.39": "0", + ".1.3.6.1.2.1.16.2.6.1.1.223.40": "0", + ".1.3.6.1.2.1.16.2.6.1.1.224.41": "0", + ".1.3.6.1.2.1.16.2.6.1.1.225.42": "0", + ".1.3.6.1.2.1.16.2.6.1.1.226.43": "0", + ".1.3.6.1.2.1.16.2.6.1.1.227.44": "0", + ".1.3.6.1.2.1.16.2.6.1.1.228.45": "0", + ".1.3.6.1.2.1.16.2.6.1.1.229.46": "0", + ".1.3.6.1.2.1.16.2.6.1.1.230.47": "0", + ".1.3.6.1.2.1.16.2.6.1.1.231.48": "0", + ".1.3.6.1.2.1.16.2.6.1.1.232.49": "0", + ".1.3.6.1.2.1.16.2.6.1.1.233.50": "0", + ".1.3.6.1.2.1.16.2.6.1.1.234.51": "0", + ".1.3.6.1.2.1.16.2.6.1.1.235.52": "0", + ".1.3.6.1.2.1.16.2.6.1.1.236.53": "0", + ".1.3.6.1.2.1.16.2.6.1.1.237.54": "0", + ".1.3.6.1.2.1.16.2.6.1.1.238.55": "0", + ".1.3.6.1.2.1.16.2.6.1.1.239.56": "0", + ".1.3.6.1.2.1.16.2.6.1.1.240.57": "0", + ".1.3.6.1.2.1.16.2.6.1.1.241.58": "0", + ".1.3.6.1.2.1.16.2.6.1.1.242.59": "0", + ".1.3.6.1.2.1.16.2.6.1.1.243.60": "0", + ".1.3.6.1.2.1.16.2.6.1.1.244.1": "0", + ".1.3.6.1.2.1.16.2.6.1.2.1.61": "1", + ".1.3.6.1.2.1.16.2.6.1.2.2.62": "1", + ".1.3.6.1.2.1.16.2.6.1.2.3.63": "1", + ".1.3.6.1.2.1.16.2.6.1.2.4.64": "1", + ".1.3.6.1.2.1.16.2.6.1.2.5.65": "1", + ".1.3.6.1.2.1.16.2.6.1.2.6.66": "1", + ".1.3.6.1.2.1.16.2.6.1.2.7.67": "1", + ".1.3.6.1.2.1.16.2.6.1.2.8.68": "1", + ".1.3.6.1.2.1.16.2.6.1.2.9.69": "1", + ".1.3.6.1.2.1.16.2.6.1.2.10.70": "1", + ".1.3.6.1.2.1.16.2.6.1.2.11.71": "1", + ".1.3.6.1.2.1.16.2.6.1.2.12.72": "1", + ".1.3.6.1.2.1.16.2.6.1.2.13.73": "1", + ".1.3.6.1.2.1.16.2.6.1.2.14.74": "1", + ".1.3.6.1.2.1.16.2.6.1.2.15.75": "1", + ".1.3.6.1.2.1.16.2.6.1.2.16.76": "1", + ".1.3.6.1.2.1.16.2.6.1.2.17.77": "1", + ".1.3.6.1.2.1.16.2.6.1.2.18.78": "1", + ".1.3.6.1.2.1.16.2.6.1.2.19.79": "1", + ".1.3.6.1.2.1.16.2.6.1.2.20.80": "1", + ".1.3.6.1.2.1.16.2.6.1.2.21.81": "1", + ".1.3.6.1.2.1.16.2.6.1.2.22.82": "1", + ".1.3.6.1.2.1.16.2.6.1.2.23.83": "1", + ".1.3.6.1.2.1.16.2.6.1.2.24.84": "1", + ".1.3.6.1.2.1.16.2.6.1.2.25.85": "1", + ".1.3.6.1.2.1.16.2.6.1.2.26.26": "1", + ".1.3.6.1.2.1.16.2.6.1.2.27.27": "1", + ".1.3.6.1.2.1.16.2.6.1.2.28.28": "1", + ".1.3.6.1.2.1.16.2.6.1.2.29.29": "1", + ".1.3.6.1.2.1.16.2.6.1.2.30.30": "1", + ".1.3.6.1.2.1.16.2.6.1.2.31.31": "1", + ".1.3.6.1.2.1.16.2.6.1.2.32.32": "1", + ".1.3.6.1.2.1.16.2.6.1.2.33.33": "1", + ".1.3.6.1.2.1.16.2.6.1.2.34.34": "1", + ".1.3.6.1.2.1.16.2.6.1.2.35.35": "1", + ".1.3.6.1.2.1.16.2.6.1.2.36.36": "1", + ".1.3.6.1.2.1.16.2.6.1.2.37.37": "1", + ".1.3.6.1.2.1.16.2.6.1.2.38.38": "1", + ".1.3.6.1.2.1.16.2.6.1.2.39.39": "1", + ".1.3.6.1.2.1.16.2.6.1.2.40.40": "1", + ".1.3.6.1.2.1.16.2.6.1.2.41.41": "1", + ".1.3.6.1.2.1.16.2.6.1.2.42.42": "1", + ".1.3.6.1.2.1.16.2.6.1.2.43.43": "1", + ".1.3.6.1.2.1.16.2.6.1.2.44.44": "1", + ".1.3.6.1.2.1.16.2.6.1.2.45.45": "1", + ".1.3.6.1.2.1.16.2.6.1.2.46.46": "1", + ".1.3.6.1.2.1.16.2.6.1.2.47.47": "1", + ".1.3.6.1.2.1.16.2.6.1.2.48.48": "1", + ".1.3.6.1.2.1.16.2.6.1.2.49.49": "1", + ".1.3.6.1.2.1.16.2.6.1.2.50.50": "1", + ".1.3.6.1.2.1.16.2.6.1.2.51.51": "1", + ".1.3.6.1.2.1.16.2.6.1.2.52.52": "1", + ".1.3.6.1.2.1.16.2.6.1.2.53.53": "1", + ".1.3.6.1.2.1.16.2.6.1.2.54.54": "1", + ".1.3.6.1.2.1.16.2.6.1.2.55.55": "1", + ".1.3.6.1.2.1.16.2.6.1.2.56.56": "1", + ".1.3.6.1.2.1.16.2.6.1.2.57.57": "1", + ".1.3.6.1.2.1.16.2.6.1.2.58.58": "1", + ".1.3.6.1.2.1.16.2.6.1.2.59.59": "1", + ".1.3.6.1.2.1.16.2.6.1.2.60.60": "1", + ".1.3.6.1.2.1.16.2.6.1.2.61.1": "60", + ".1.3.6.1.2.1.16.2.6.1.2.62.61": "0", + ".1.3.6.1.2.1.16.2.6.1.2.63.62": "0", + ".1.3.6.1.2.1.16.2.6.1.2.64.63": "0", + ".1.3.6.1.2.1.16.2.6.1.2.65.64": "0", + ".1.3.6.1.2.1.16.2.6.1.2.66.65": "0", + ".1.3.6.1.2.1.16.2.6.1.2.67.66": "0", + ".1.3.6.1.2.1.16.2.6.1.2.68.67": "0", + ".1.3.6.1.2.1.16.2.6.1.2.69.68": "0", + ".1.3.6.1.2.1.16.2.6.1.2.70.69": "0", + ".1.3.6.1.2.1.16.2.6.1.2.71.70": "0", + ".1.3.6.1.2.1.16.2.6.1.2.72.71": "0", + ".1.3.6.1.2.1.16.2.6.1.2.73.72": "0", + ".1.3.6.1.2.1.16.2.6.1.2.74.73": "0", + ".1.3.6.1.2.1.16.2.6.1.2.75.74": "0", + ".1.3.6.1.2.1.16.2.6.1.2.76.75": "0", + ".1.3.6.1.2.1.16.2.6.1.2.77.76": "0", + ".1.3.6.1.2.1.16.2.6.1.2.78.77": "0", + ".1.3.6.1.2.1.16.2.6.1.2.79.78": "0", + ".1.3.6.1.2.1.16.2.6.1.2.80.79": "0", + ".1.3.6.1.2.1.16.2.6.1.2.81.80": "0", + ".1.3.6.1.2.1.16.2.6.1.2.82.81": "0", + ".1.3.6.1.2.1.16.2.6.1.2.83.82": "0", + ".1.3.6.1.2.1.16.2.6.1.2.84.83": "0", + ".1.3.6.1.2.1.16.2.6.1.2.85.84": "0", + ".1.3.6.1.2.1.16.2.6.1.2.86.85": "0", + ".1.3.6.1.2.1.16.2.6.1.2.87.26": "0", + ".1.3.6.1.2.1.16.2.6.1.2.88.27": "0", + ".1.3.6.1.2.1.16.2.6.1.2.89.28": "0", + ".1.3.6.1.2.1.16.2.6.1.2.90.29": "0", + ".1.3.6.1.2.1.16.2.6.1.2.91.30": "0", + ".1.3.6.1.2.1.16.2.6.1.2.92.31": "0", + ".1.3.6.1.2.1.16.2.6.1.2.93.32": "0", + ".1.3.6.1.2.1.16.2.6.1.2.94.33": "0", + ".1.3.6.1.2.1.16.2.6.1.2.95.34": "0", + ".1.3.6.1.2.1.16.2.6.1.2.96.35": "0", + ".1.3.6.1.2.1.16.2.6.1.2.97.36": "0", + ".1.3.6.1.2.1.16.2.6.1.2.98.37": "0", + ".1.3.6.1.2.1.16.2.6.1.2.99.38": "0", + ".1.3.6.1.2.1.16.2.6.1.2.100.39": "0", + ".1.3.6.1.2.1.16.2.6.1.2.101.40": "0", + ".1.3.6.1.2.1.16.2.6.1.2.102.41": "0", + ".1.3.6.1.2.1.16.2.6.1.2.103.42": "0", + ".1.3.6.1.2.1.16.2.6.1.2.104.43": "0", + ".1.3.6.1.2.1.16.2.6.1.2.105.44": "0", + ".1.3.6.1.2.1.16.2.6.1.2.106.45": "0", + ".1.3.6.1.2.1.16.2.6.1.2.107.46": "0", + ".1.3.6.1.2.1.16.2.6.1.2.108.47": "0", + ".1.3.6.1.2.1.16.2.6.1.2.109.48": "0", + ".1.3.6.1.2.1.16.2.6.1.2.110.49": "0", + ".1.3.6.1.2.1.16.2.6.1.2.111.50": "0", + ".1.3.6.1.2.1.16.2.6.1.2.112.51": "0", + ".1.3.6.1.2.1.16.2.6.1.2.113.52": "0", + ".1.3.6.1.2.1.16.2.6.1.2.114.53": "0", + ".1.3.6.1.2.1.16.2.6.1.2.115.54": "0", + ".1.3.6.1.2.1.16.2.6.1.2.116.55": "0", + ".1.3.6.1.2.1.16.2.6.1.2.117.56": "0", + ".1.3.6.1.2.1.16.2.6.1.2.118.57": "0", + ".1.3.6.1.2.1.16.2.6.1.2.119.58": "0", + ".1.3.6.1.2.1.16.2.6.1.2.120.59": "0", + ".1.3.6.1.2.1.16.2.6.1.2.121.60": "0", + ".1.3.6.1.2.1.16.2.6.1.2.122.1": "0", + ".1.3.6.1.2.1.16.2.6.1.2.123.61": "0", + ".1.3.6.1.2.1.16.2.6.1.2.124.62": "0", + ".1.3.6.1.2.1.16.2.6.1.2.125.63": "0", + ".1.3.6.1.2.1.16.2.6.1.2.126.64": "0", + ".1.3.6.1.2.1.16.2.6.1.2.127.65": "0", + ".1.3.6.1.2.1.16.2.6.1.2.128.66": "0", + ".1.3.6.1.2.1.16.2.6.1.2.129.67": "0", + ".1.3.6.1.2.1.16.2.6.1.2.130.68": "0", + ".1.3.6.1.2.1.16.2.6.1.2.131.69": "0", + ".1.3.6.1.2.1.16.2.6.1.2.132.70": "0", + ".1.3.6.1.2.1.16.2.6.1.2.133.71": "0", + ".1.3.6.1.2.1.16.2.6.1.2.134.72": "0", + ".1.3.6.1.2.1.16.2.6.1.2.135.73": "0", + ".1.3.6.1.2.1.16.2.6.1.2.136.74": "0", + ".1.3.6.1.2.1.16.2.6.1.2.137.75": "0", + ".1.3.6.1.2.1.16.2.6.1.2.138.76": "0", + ".1.3.6.1.2.1.16.2.6.1.2.139.77": "0", + ".1.3.6.1.2.1.16.2.6.1.2.140.78": "0", + ".1.3.6.1.2.1.16.2.6.1.2.141.79": "0", + ".1.3.6.1.2.1.16.2.6.1.2.142.80": "0", + ".1.3.6.1.2.1.16.2.6.1.2.143.81": "0", + ".1.3.6.1.2.1.16.2.6.1.2.144.82": "0", + ".1.3.6.1.2.1.16.2.6.1.2.145.83": "0", + ".1.3.6.1.2.1.16.2.6.1.2.146.84": "0", + ".1.3.6.1.2.1.16.2.6.1.2.147.85": "0", + ".1.3.6.1.2.1.16.2.6.1.2.148.26": "0", + ".1.3.6.1.2.1.16.2.6.1.2.149.27": "0", + ".1.3.6.1.2.1.16.2.6.1.2.150.28": "0", + ".1.3.6.1.2.1.16.2.6.1.2.151.29": "0", + ".1.3.6.1.2.1.16.2.6.1.2.152.30": "0", + ".1.3.6.1.2.1.16.2.6.1.2.153.31": "0", + ".1.3.6.1.2.1.16.2.6.1.2.154.32": "0", + ".1.3.6.1.2.1.16.2.6.1.2.155.33": "0", + ".1.3.6.1.2.1.16.2.6.1.2.156.34": "0", + ".1.3.6.1.2.1.16.2.6.1.2.157.35": "0", + ".1.3.6.1.2.1.16.2.6.1.2.158.36": "0", + ".1.3.6.1.2.1.16.2.6.1.2.159.37": "0", + ".1.3.6.1.2.1.16.2.6.1.2.160.38": "0", + ".1.3.6.1.2.1.16.2.6.1.2.161.39": "0", + ".1.3.6.1.2.1.16.2.6.1.2.162.40": "0", + ".1.3.6.1.2.1.16.2.6.1.2.163.41": "0", + ".1.3.6.1.2.1.16.2.6.1.2.164.42": "0", + ".1.3.6.1.2.1.16.2.6.1.2.165.43": "0", + ".1.3.6.1.2.1.16.2.6.1.2.166.44": "0", + ".1.3.6.1.2.1.16.2.6.1.2.167.45": "0", + ".1.3.6.1.2.1.16.2.6.1.2.168.46": "0", + ".1.3.6.1.2.1.16.2.6.1.2.169.47": "0", + ".1.3.6.1.2.1.16.2.6.1.2.170.48": "0", + ".1.3.6.1.2.1.16.2.6.1.2.171.49": "0", + ".1.3.6.1.2.1.16.2.6.1.2.172.50": "0", + ".1.3.6.1.2.1.16.2.6.1.2.173.51": "0", + ".1.3.6.1.2.1.16.2.6.1.2.174.52": "0", + ".1.3.6.1.2.1.16.2.6.1.2.175.53": "0", + ".1.3.6.1.2.1.16.2.6.1.2.176.54": "0", + ".1.3.6.1.2.1.16.2.6.1.2.177.55": "0", + ".1.3.6.1.2.1.16.2.6.1.2.178.56": "0", + ".1.3.6.1.2.1.16.2.6.1.2.179.57": "0", + ".1.3.6.1.2.1.16.2.6.1.2.180.58": "0", + ".1.3.6.1.2.1.16.2.6.1.2.181.59": "0", + ".1.3.6.1.2.1.16.2.6.1.2.182.60": "0", + ".1.3.6.1.2.1.16.2.6.1.2.183.1": "0", + ".1.3.6.1.2.1.16.2.6.1.2.184.61": "0", + ".1.3.6.1.2.1.16.2.6.1.2.185.62": "0", + ".1.3.6.1.2.1.16.2.6.1.2.186.63": "0", + ".1.3.6.1.2.1.16.2.6.1.2.187.64": "0", + ".1.3.6.1.2.1.16.2.6.1.2.188.65": "0", + ".1.3.6.1.2.1.16.2.6.1.2.189.66": "0", + ".1.3.6.1.2.1.16.2.6.1.2.190.67": "0", + ".1.3.6.1.2.1.16.2.6.1.2.191.68": "0", + ".1.3.6.1.2.1.16.2.6.1.2.192.69": "0", + ".1.3.6.1.2.1.16.2.6.1.2.193.70": "0", + ".1.3.6.1.2.1.16.2.6.1.2.194.71": "0", + ".1.3.6.1.2.1.16.2.6.1.2.195.72": "0", + ".1.3.6.1.2.1.16.2.6.1.2.196.73": "0", + ".1.3.6.1.2.1.16.2.6.1.2.197.74": "0", + ".1.3.6.1.2.1.16.2.6.1.2.198.75": "0", + ".1.3.6.1.2.1.16.2.6.1.2.199.76": "0", + ".1.3.6.1.2.1.16.2.6.1.2.200.77": "0", + ".1.3.6.1.2.1.16.2.6.1.2.201.78": "0", + ".1.3.6.1.2.1.16.2.6.1.2.202.79": "0", + ".1.3.6.1.2.1.16.2.6.1.2.203.80": "0", + ".1.3.6.1.2.1.16.2.6.1.2.204.81": "0", + ".1.3.6.1.2.1.16.2.6.1.2.205.82": "0", + ".1.3.6.1.2.1.16.2.6.1.2.206.83": "0", + ".1.3.6.1.2.1.16.2.6.1.2.207.84": "0", + ".1.3.6.1.2.1.16.2.6.1.2.208.85": "0", + ".1.3.6.1.2.1.16.2.6.1.2.209.26": "0", + ".1.3.6.1.2.1.16.2.6.1.2.210.27": "0", + ".1.3.6.1.2.1.16.2.6.1.2.211.28": "0", + ".1.3.6.1.2.1.16.2.6.1.2.212.29": "0", + ".1.3.6.1.2.1.16.2.6.1.2.213.30": "0", + ".1.3.6.1.2.1.16.2.6.1.2.214.31": "0", + ".1.3.6.1.2.1.16.2.6.1.2.215.32": "0", + ".1.3.6.1.2.1.16.2.6.1.2.216.33": "0", + ".1.3.6.1.2.1.16.2.6.1.2.217.34": "0", + ".1.3.6.1.2.1.16.2.6.1.2.218.35": "0", + ".1.3.6.1.2.1.16.2.6.1.2.219.36": "0", + ".1.3.6.1.2.1.16.2.6.1.2.220.37": "0", + ".1.3.6.1.2.1.16.2.6.1.2.221.38": "0", + ".1.3.6.1.2.1.16.2.6.1.2.222.39": "0", + ".1.3.6.1.2.1.16.2.6.1.2.223.40": "0", + ".1.3.6.1.2.1.16.2.6.1.2.224.41": "0", + ".1.3.6.1.2.1.16.2.6.1.2.225.42": "0", + ".1.3.6.1.2.1.16.2.6.1.2.226.43": "0", + ".1.3.6.1.2.1.16.2.6.1.2.227.44": "0", + ".1.3.6.1.2.1.16.2.6.1.2.228.45": "0", + ".1.3.6.1.2.1.16.2.6.1.2.229.46": "0", + ".1.3.6.1.2.1.16.2.6.1.2.230.47": "0", + ".1.3.6.1.2.1.16.2.6.1.2.231.48": "0", + ".1.3.6.1.2.1.16.2.6.1.2.232.49": "0", + ".1.3.6.1.2.1.16.2.6.1.2.233.50": "0", + ".1.3.6.1.2.1.16.2.6.1.2.234.51": "0", + ".1.3.6.1.2.1.16.2.6.1.2.235.52": "0", + ".1.3.6.1.2.1.16.2.6.1.2.236.53": "0", + ".1.3.6.1.2.1.16.2.6.1.2.237.54": "0", + ".1.3.6.1.2.1.16.2.6.1.2.238.55": "0", + ".1.3.6.1.2.1.16.2.6.1.2.239.56": "0", + ".1.3.6.1.2.1.16.2.6.1.2.240.57": "0", + ".1.3.6.1.2.1.16.2.6.1.2.241.58": "0", + ".1.3.6.1.2.1.16.2.6.1.2.242.59": "0", + ".1.3.6.1.2.1.16.2.6.1.2.243.60": "0", + ".1.3.6.1.2.1.16.2.6.1.2.244.1": "0", + ".1.3.6.1.2.1.16.2.6.1.3.1.61": "0", + ".1.3.6.1.2.1.16.2.6.1.3.2.62": "0", + ".1.3.6.1.2.1.16.2.6.1.3.3.63": "0", + ".1.3.6.1.2.1.16.2.6.1.3.4.64": "0", + ".1.3.6.1.2.1.16.2.6.1.3.5.65": "0", + ".1.3.6.1.2.1.16.2.6.1.3.6.66": "0", + ".1.3.6.1.2.1.16.2.6.1.3.7.67": "0", + ".1.3.6.1.2.1.16.2.6.1.3.8.68": "0", + ".1.3.6.1.2.1.16.2.6.1.3.9.69": "0", + ".1.3.6.1.2.1.16.2.6.1.3.10.70": "0", + ".1.3.6.1.2.1.16.2.6.1.3.11.71": "0", + ".1.3.6.1.2.1.16.2.6.1.3.12.72": "0", + ".1.3.6.1.2.1.16.2.6.1.3.13.73": "0", + ".1.3.6.1.2.1.16.2.6.1.3.14.74": "0", + ".1.3.6.1.2.1.16.2.6.1.3.15.75": "0", + ".1.3.6.1.2.1.16.2.6.1.3.16.76": "0", + ".1.3.6.1.2.1.16.2.6.1.3.17.77": "0", + ".1.3.6.1.2.1.16.2.6.1.3.18.78": "0", + ".1.3.6.1.2.1.16.2.6.1.3.19.79": "0", + ".1.3.6.1.2.1.16.2.6.1.3.20.80": "0", + ".1.3.6.1.2.1.16.2.6.1.3.21.81": "0", + ".1.3.6.1.2.1.16.2.6.1.3.22.82": "0", + ".1.3.6.1.2.1.16.2.6.1.3.23.83": "0", + ".1.3.6.1.2.1.16.2.6.1.3.24.84": "0", + ".1.3.6.1.2.1.16.2.6.1.3.25.85": "0", + ".1.3.6.1.2.1.16.2.6.1.3.26.26": "0", + ".1.3.6.1.2.1.16.2.6.1.3.27.27": "0", + ".1.3.6.1.2.1.16.2.6.1.3.28.28": "0", + ".1.3.6.1.2.1.16.2.6.1.3.29.29": "0", + ".1.3.6.1.2.1.16.2.6.1.3.30.30": "0", + ".1.3.6.1.2.1.16.2.6.1.3.31.31": "0", + ".1.3.6.1.2.1.16.2.6.1.3.32.32": "0", + ".1.3.6.1.2.1.16.2.6.1.3.33.33": "0", + ".1.3.6.1.2.1.16.2.6.1.3.34.34": "0", + ".1.3.6.1.2.1.16.2.6.1.3.35.35": "0", + ".1.3.6.1.2.1.16.2.6.1.3.36.36": "0", + ".1.3.6.1.2.1.16.2.6.1.3.37.37": "0", + ".1.3.6.1.2.1.16.2.6.1.3.38.38": "0", + ".1.3.6.1.2.1.16.2.6.1.3.39.39": "0", + ".1.3.6.1.2.1.16.2.6.1.3.40.40": "0", + ".1.3.6.1.2.1.16.2.6.1.3.41.41": "0", + ".1.3.6.1.2.1.16.2.6.1.3.42.42": "0", + ".1.3.6.1.2.1.16.2.6.1.3.43.43": "0", + ".1.3.6.1.2.1.16.2.6.1.3.44.44": "0", + ".1.3.6.1.2.1.16.2.6.1.3.45.45": "0", + ".1.3.6.1.2.1.16.2.6.1.3.46.46": "0", + ".1.3.6.1.2.1.16.2.6.1.3.47.47": "0", + ".1.3.6.1.2.1.16.2.6.1.3.48.48": "0", + ".1.3.6.1.2.1.16.2.6.1.3.49.49": "0", + ".1.3.6.1.2.1.16.2.6.1.3.50.50": "0", + ".1.3.6.1.2.1.16.2.6.1.3.51.51": "0", + ".1.3.6.1.2.1.16.2.6.1.3.52.52": "0", + ".1.3.6.1.2.1.16.2.6.1.3.53.53": "0", + ".1.3.6.1.2.1.16.2.6.1.3.54.54": "0", + ".1.3.6.1.2.1.16.2.6.1.3.55.55": "0", + ".1.3.6.1.2.1.16.2.6.1.3.56.56": "0", + ".1.3.6.1.2.1.16.2.6.1.3.57.57": "0", + ".1.3.6.1.2.1.16.2.6.1.3.58.58": "0", + ".1.3.6.1.2.1.16.2.6.1.3.59.59": "0", + ".1.3.6.1.2.1.16.2.6.1.3.60.60": "0", + ".1.3.6.1.2.1.16.2.6.1.3.61.1": "0", + ".1.3.6.1.2.1.16.2.6.1.3.62.61": "0", + ".1.3.6.1.2.1.16.2.6.1.3.63.62": "0", + ".1.3.6.1.2.1.16.2.6.1.3.64.63": "0", + ".1.3.6.1.2.1.16.2.6.1.3.65.64": "0", + ".1.3.6.1.2.1.16.2.6.1.3.66.65": "0", + ".1.3.6.1.2.1.16.2.6.1.3.67.66": "0", + ".1.3.6.1.2.1.16.2.6.1.3.68.67": "0", + ".1.3.6.1.2.1.16.2.6.1.3.69.68": "0", + ".1.3.6.1.2.1.16.2.6.1.3.70.69": "0", + ".1.3.6.1.2.1.16.2.6.1.3.71.70": "0", + ".1.3.6.1.2.1.16.2.6.1.3.72.71": "0", + ".1.3.6.1.2.1.16.2.6.1.3.73.72": "0", + ".1.3.6.1.2.1.16.2.6.1.3.74.73": "0", + ".1.3.6.1.2.1.16.2.6.1.3.75.74": "0", + ".1.3.6.1.2.1.16.2.6.1.3.76.75": "0", + ".1.3.6.1.2.1.16.2.6.1.3.77.76": "0", + ".1.3.6.1.2.1.16.2.6.1.3.78.77": "0", + ".1.3.6.1.2.1.16.2.6.1.3.79.78": "0", + ".1.3.6.1.2.1.16.2.6.1.3.80.79": "0", + ".1.3.6.1.2.1.16.2.6.1.3.81.80": "0", + ".1.3.6.1.2.1.16.2.6.1.3.82.81": "0", + ".1.3.6.1.2.1.16.2.6.1.3.83.82": "0", + ".1.3.6.1.2.1.16.2.6.1.3.84.83": "0", + ".1.3.6.1.2.1.16.2.6.1.3.85.84": "0", + ".1.3.6.1.2.1.16.2.6.1.3.86.85": "0", + ".1.3.6.1.2.1.16.2.6.1.3.87.26": "0", + ".1.3.6.1.2.1.16.2.6.1.3.88.27": "0", + ".1.3.6.1.2.1.16.2.6.1.3.89.28": "0", + ".1.3.6.1.2.1.16.2.6.1.3.90.29": "0", + ".1.3.6.1.2.1.16.2.6.1.3.91.30": "0", + ".1.3.6.1.2.1.16.2.6.1.3.92.31": "0", + ".1.3.6.1.2.1.16.2.6.1.3.93.32": "0", + ".1.3.6.1.2.1.16.2.6.1.3.94.33": "0", + ".1.3.6.1.2.1.16.2.6.1.3.95.34": "0", + ".1.3.6.1.2.1.16.2.6.1.3.96.35": "0", + ".1.3.6.1.2.1.16.2.6.1.3.97.36": "0", + ".1.3.6.1.2.1.16.2.6.1.3.98.37": "0", + ".1.3.6.1.2.1.16.2.6.1.3.99.38": "0", + ".1.3.6.1.2.1.16.2.6.1.3.100.39": "0", + ".1.3.6.1.2.1.16.2.6.1.3.101.40": "0", + ".1.3.6.1.2.1.16.2.6.1.3.102.41": "0", + ".1.3.6.1.2.1.16.2.6.1.3.103.42": "0", + ".1.3.6.1.2.1.16.2.6.1.3.104.43": "0", + ".1.3.6.1.2.1.16.2.6.1.3.105.44": "0", + ".1.3.6.1.2.1.16.2.6.1.3.106.45": "0", + ".1.3.6.1.2.1.16.2.6.1.3.107.46": "0", + ".1.3.6.1.2.1.16.2.6.1.3.108.47": "0", + ".1.3.6.1.2.1.16.2.6.1.3.109.48": "0", + ".1.3.6.1.2.1.16.2.6.1.3.110.49": "0", + ".1.3.6.1.2.1.16.2.6.1.3.111.50": "0", + ".1.3.6.1.2.1.16.2.6.1.3.112.51": "0", + ".1.3.6.1.2.1.16.2.6.1.3.113.52": "0", + ".1.3.6.1.2.1.16.2.6.1.3.114.53": "0", + ".1.3.6.1.2.1.16.2.6.1.3.115.54": "0", + ".1.3.6.1.2.1.16.2.6.1.3.116.55": "0", + ".1.3.6.1.2.1.16.2.6.1.3.117.56": "0", + ".1.3.6.1.2.1.16.2.6.1.3.118.57": "0", + ".1.3.6.1.2.1.16.2.6.1.3.119.58": "0", + ".1.3.6.1.2.1.16.2.6.1.3.120.59": "0", + ".1.3.6.1.2.1.16.2.6.1.3.121.60": "0", + ".1.3.6.1.2.1.16.2.6.1.3.122.1": "0", + ".1.3.6.1.2.1.16.2.6.1.3.123.61": "0", + ".1.3.6.1.2.1.16.2.6.1.3.124.62": "0", + ".1.3.6.1.2.1.16.2.6.1.3.125.63": "0", + ".1.3.6.1.2.1.16.2.6.1.3.126.64": "0", + ".1.3.6.1.2.1.16.2.6.1.3.127.65": "0", + ".1.3.6.1.2.1.16.2.6.1.3.128.66": "0", + ".1.3.6.1.2.1.16.2.6.1.3.129.67": "0", + ".1.3.6.1.2.1.16.2.6.1.3.130.68": "0", + ".1.3.6.1.2.1.16.2.6.1.3.131.69": "0", + ".1.3.6.1.2.1.16.2.6.1.3.132.70": "0", + ".1.3.6.1.2.1.16.2.6.1.3.133.71": "0", + ".1.3.6.1.2.1.16.2.6.1.3.134.72": "0", + ".1.3.6.1.2.1.16.2.6.1.3.135.73": "0", + ".1.3.6.1.2.1.16.2.6.1.3.136.74": "0", + ".1.3.6.1.2.1.16.2.6.1.3.137.75": "0", + ".1.3.6.1.2.1.16.2.6.1.3.138.76": "0", + ".1.3.6.1.2.1.16.2.6.1.3.139.77": "0", + ".1.3.6.1.2.1.16.2.6.1.3.140.78": "0", + ".1.3.6.1.2.1.16.2.6.1.3.141.79": "0", + ".1.3.6.1.2.1.16.2.6.1.3.142.80": "0", + ".1.3.6.1.2.1.16.2.6.1.3.143.81": "0", + ".1.3.6.1.2.1.16.2.6.1.3.144.82": "0", + ".1.3.6.1.2.1.16.2.6.1.3.145.83": "0", + ".1.3.6.1.2.1.16.2.6.1.3.146.84": "0", + ".1.3.6.1.2.1.16.2.6.1.3.147.85": "0", + ".1.3.6.1.2.1.16.2.6.1.3.148.26": "0", + ".1.3.6.1.2.1.16.2.6.1.3.149.27": "0", + ".1.3.6.1.2.1.16.2.6.1.3.150.28": "0", + ".1.3.6.1.2.1.16.2.6.1.3.151.29": "0", + ".1.3.6.1.2.1.16.2.6.1.3.152.30": "0", + ".1.3.6.1.2.1.16.2.6.1.3.153.31": "0", + ".1.3.6.1.2.1.16.2.6.1.3.154.32": "0", + ".1.3.6.1.2.1.16.2.6.1.3.155.33": "0", + ".1.3.6.1.2.1.16.2.6.1.3.156.34": "0", + ".1.3.6.1.2.1.16.2.6.1.3.157.35": "0", + ".1.3.6.1.2.1.16.2.6.1.3.158.36": "0", + ".1.3.6.1.2.1.16.2.6.1.3.159.37": "0", + ".1.3.6.1.2.1.16.2.6.1.3.160.38": "0", + ".1.3.6.1.2.1.16.2.6.1.3.161.39": "0", + ".1.3.6.1.2.1.16.2.6.1.3.162.40": "0", + ".1.3.6.1.2.1.16.2.6.1.3.163.41": "0", + ".1.3.6.1.2.1.16.2.6.1.3.164.42": "0", + ".1.3.6.1.2.1.16.2.6.1.3.165.43": "0", + ".1.3.6.1.2.1.16.2.6.1.3.166.44": "0", + ".1.3.6.1.2.1.16.2.6.1.3.167.45": "0", + ".1.3.6.1.2.1.16.2.6.1.3.168.46": "0", + ".1.3.6.1.2.1.16.2.6.1.3.169.47": "0", + ".1.3.6.1.2.1.16.2.6.1.3.170.48": "0", + ".1.3.6.1.2.1.16.2.6.1.3.171.49": "0", + ".1.3.6.1.2.1.16.2.6.1.3.172.50": "0", + ".1.3.6.1.2.1.16.2.6.1.3.173.51": "0", + ".1.3.6.1.2.1.16.2.6.1.3.174.52": "0", + ".1.3.6.1.2.1.16.2.6.1.3.175.53": "0", + ".1.3.6.1.2.1.16.2.6.1.3.176.54": "0", + ".1.3.6.1.2.1.16.2.6.1.3.177.55": "0", + ".1.3.6.1.2.1.16.2.6.1.3.178.56": "0", + ".1.3.6.1.2.1.16.2.6.1.3.179.57": "0", + ".1.3.6.1.2.1.16.2.6.1.3.180.58": "0", + ".1.3.6.1.2.1.16.2.6.1.3.181.59": "0", + ".1.3.6.1.2.1.16.2.6.1.3.182.60": "0", + ".1.3.6.1.2.1.16.2.6.1.3.183.1": "0", + ".1.3.6.1.2.1.16.2.6.1.3.184.61": "0", + ".1.3.6.1.2.1.16.2.6.1.3.185.62": "0", + ".1.3.6.1.2.1.16.2.6.1.3.186.63": "0", + ".1.3.6.1.2.1.16.2.6.1.3.187.64": "0", + ".1.3.6.1.2.1.16.2.6.1.3.188.65": "0", + ".1.3.6.1.2.1.16.2.6.1.3.189.66": "0", + ".1.3.6.1.2.1.16.2.6.1.3.190.67": "0", + ".1.3.6.1.2.1.16.2.6.1.3.191.68": "0", + ".1.3.6.1.2.1.16.2.6.1.3.192.69": "0", + ".1.3.6.1.2.1.16.2.6.1.3.193.70": "0", + ".1.3.6.1.2.1.16.2.6.1.3.194.71": "0", + ".1.3.6.1.2.1.16.2.6.1.3.195.72": "0", + ".1.3.6.1.2.1.16.2.6.1.3.196.73": "0", + ".1.3.6.1.2.1.16.2.6.1.3.197.74": "0", + ".1.3.6.1.2.1.16.2.6.1.3.198.75": "0", + ".1.3.6.1.2.1.16.2.6.1.3.199.76": "0", + ".1.3.6.1.2.1.16.2.6.1.3.200.77": "0", + ".1.3.6.1.2.1.16.2.6.1.3.201.78": "0", + ".1.3.6.1.2.1.16.2.6.1.3.202.79": "0", + ".1.3.6.1.2.1.16.2.6.1.3.203.80": "0", + ".1.3.6.1.2.1.16.2.6.1.3.204.81": "0", + ".1.3.6.1.2.1.16.2.6.1.3.205.82": "0", + ".1.3.6.1.2.1.16.2.6.1.3.206.83": "0", + ".1.3.6.1.2.1.16.2.6.1.3.207.84": "0", + ".1.3.6.1.2.1.16.2.6.1.3.208.85": "0", + ".1.3.6.1.2.1.16.2.6.1.3.209.26": "0", + ".1.3.6.1.2.1.16.2.6.1.3.210.27": "0", + ".1.3.6.1.2.1.16.2.6.1.3.211.28": "0", + ".1.3.6.1.2.1.16.2.6.1.3.212.29": "0", + ".1.3.6.1.2.1.16.2.6.1.3.213.30": "0", + ".1.3.6.1.2.1.16.2.6.1.3.214.31": "0", + ".1.3.6.1.2.1.16.2.6.1.3.215.32": "0", + ".1.3.6.1.2.1.16.2.6.1.3.216.33": "0", + ".1.3.6.1.2.1.16.2.6.1.3.217.34": "0", + ".1.3.6.1.2.1.16.2.6.1.3.218.35": "0", + ".1.3.6.1.2.1.16.2.6.1.3.219.36": "0", + ".1.3.6.1.2.1.16.2.6.1.3.220.37": "0", + ".1.3.6.1.2.1.16.2.6.1.3.221.38": "0", + ".1.3.6.1.2.1.16.2.6.1.3.222.39": "0", + ".1.3.6.1.2.1.16.2.6.1.3.223.40": "0", + ".1.3.6.1.2.1.16.2.6.1.3.224.41": "0", + ".1.3.6.1.2.1.16.2.6.1.3.225.42": "0", + ".1.3.6.1.2.1.16.2.6.1.3.226.43": "0", + ".1.3.6.1.2.1.16.2.6.1.3.227.44": "0", + ".1.3.6.1.2.1.16.2.6.1.3.228.45": "0", + ".1.3.6.1.2.1.16.2.6.1.3.229.46": "0", + ".1.3.6.1.2.1.16.2.6.1.3.230.47": "0", + ".1.3.6.1.2.1.16.2.6.1.3.231.48": "0", + ".1.3.6.1.2.1.16.2.6.1.3.232.49": "0", + ".1.3.6.1.2.1.16.2.6.1.3.233.50": "0", + ".1.3.6.1.2.1.16.2.6.1.3.234.51": "0", + ".1.3.6.1.2.1.16.2.6.1.3.235.52": "0", + ".1.3.6.1.2.1.16.2.6.1.3.236.53": "0", + ".1.3.6.1.2.1.16.2.6.1.3.237.54": "0", + ".1.3.6.1.2.1.16.2.6.1.3.238.55": "0", + ".1.3.6.1.2.1.16.2.6.1.3.239.56": "0", + ".1.3.6.1.2.1.16.2.6.1.3.240.57": "0", + ".1.3.6.1.2.1.16.2.6.1.3.241.58": "0", + ".1.3.6.1.2.1.16.2.6.1.3.242.59": "0", + ".1.3.6.1.2.1.16.2.6.1.3.243.60": "0", + ".1.3.6.1.2.1.16.2.6.1.3.244.1": "0", + ".1.3.6.1.2.1.16.2.6.1.4.1.61": "160", + ".1.3.6.1.2.1.16.2.6.1.4.2.62": "160", + ".1.3.6.1.2.1.16.2.6.1.4.3.63": "160", + ".1.3.6.1.2.1.16.2.6.1.4.4.64": "160", + ".1.3.6.1.2.1.16.2.6.1.4.5.65": "160", + ".1.3.6.1.2.1.16.2.6.1.4.6.66": "160", + ".1.3.6.1.2.1.16.2.6.1.4.7.67": "160", + ".1.3.6.1.2.1.16.2.6.1.4.8.68": "160", + ".1.3.6.1.2.1.16.2.6.1.4.9.69": "160", + ".1.3.6.1.2.1.16.2.6.1.4.10.70": "160", + ".1.3.6.1.2.1.16.2.6.1.4.11.71": "160", + ".1.3.6.1.2.1.16.2.6.1.4.12.72": "160", + ".1.3.6.1.2.1.16.2.6.1.4.13.73": "160", + ".1.3.6.1.2.1.16.2.6.1.4.14.74": "160", + ".1.3.6.1.2.1.16.2.6.1.4.15.75": "160", + ".1.3.6.1.2.1.16.2.6.1.4.16.76": "160", + ".1.3.6.1.2.1.16.2.6.1.4.17.77": "160", + ".1.3.6.1.2.1.16.2.6.1.4.18.78": "160", + ".1.3.6.1.2.1.16.2.6.1.4.19.79": "160", + ".1.3.6.1.2.1.16.2.6.1.4.20.80": "160", + ".1.3.6.1.2.1.16.2.6.1.4.21.81": "160", + ".1.3.6.1.2.1.16.2.6.1.4.22.82": "160", + ".1.3.6.1.2.1.16.2.6.1.4.23.83": "160", + ".1.3.6.1.2.1.16.2.6.1.4.24.84": "160", + ".1.3.6.1.2.1.16.2.6.1.4.25.85": "160", + ".1.3.6.1.2.1.16.2.6.1.4.26.26": "160", + ".1.3.6.1.2.1.16.2.6.1.4.27.27": "160", + ".1.3.6.1.2.1.16.2.6.1.4.28.28": "160", + ".1.3.6.1.2.1.16.2.6.1.4.29.29": "160", + ".1.3.6.1.2.1.16.2.6.1.4.30.30": "160", + ".1.3.6.1.2.1.16.2.6.1.4.31.31": "160", + ".1.3.6.1.2.1.16.2.6.1.4.32.32": "160", + ".1.3.6.1.2.1.16.2.6.1.4.33.33": "160", + ".1.3.6.1.2.1.16.2.6.1.4.34.34": "160", + ".1.3.6.1.2.1.16.2.6.1.4.35.35": "160", + ".1.3.6.1.2.1.16.2.6.1.4.36.36": "160", + ".1.3.6.1.2.1.16.2.6.1.4.37.37": "160", + ".1.3.6.1.2.1.16.2.6.1.4.38.38": "160", + ".1.3.6.1.2.1.16.2.6.1.4.39.39": "160", + ".1.3.6.1.2.1.16.2.6.1.4.40.40": "160", + ".1.3.6.1.2.1.16.2.6.1.4.41.41": "160", + ".1.3.6.1.2.1.16.2.6.1.4.42.42": "160", + ".1.3.6.1.2.1.16.2.6.1.4.43.43": "160", + ".1.3.6.1.2.1.16.2.6.1.4.44.44": "160", + ".1.3.6.1.2.1.16.2.6.1.4.45.45": "160", + ".1.3.6.1.2.1.16.2.6.1.4.46.46": "160", + ".1.3.6.1.2.1.16.2.6.1.4.47.47": "160", + ".1.3.6.1.2.1.16.2.6.1.4.48.48": "160", + ".1.3.6.1.2.1.16.2.6.1.4.49.49": "160", + ".1.3.6.1.2.1.16.2.6.1.4.50.50": "160", + ".1.3.6.1.2.1.16.2.6.1.4.51.51": "160", + ".1.3.6.1.2.1.16.2.6.1.4.52.52": "160", + ".1.3.6.1.2.1.16.2.6.1.4.53.53": "160", + ".1.3.6.1.2.1.16.2.6.1.4.54.54": "160", + ".1.3.6.1.2.1.16.2.6.1.4.55.55": "160", + ".1.3.6.1.2.1.16.2.6.1.4.56.56": "160", + ".1.3.6.1.2.1.16.2.6.1.4.57.57": "160", + ".1.3.6.1.2.1.16.2.6.1.4.58.58": "160", + ".1.3.6.1.2.1.16.2.6.1.4.59.59": "160", + ".1.3.6.1.2.1.16.2.6.1.4.60.60": "160", + ".1.3.6.1.2.1.16.2.6.1.4.61.1": "9600", + ".1.3.6.1.2.1.16.2.6.1.4.62.61": "0", + ".1.3.6.1.2.1.16.2.6.1.4.63.62": "0", + ".1.3.6.1.2.1.16.2.6.1.4.64.63": "0", + ".1.3.6.1.2.1.16.2.6.1.4.65.64": "0", + ".1.3.6.1.2.1.16.2.6.1.4.66.65": "0", + ".1.3.6.1.2.1.16.2.6.1.4.67.66": "0", + ".1.3.6.1.2.1.16.2.6.1.4.68.67": "0", + ".1.3.6.1.2.1.16.2.6.1.4.69.68": "0", + ".1.3.6.1.2.1.16.2.6.1.4.70.69": "0", + ".1.3.6.1.2.1.16.2.6.1.4.71.70": "0", + ".1.3.6.1.2.1.16.2.6.1.4.72.71": "0", + ".1.3.6.1.2.1.16.2.6.1.4.73.72": "0", + ".1.3.6.1.2.1.16.2.6.1.4.74.73": "0", + ".1.3.6.1.2.1.16.2.6.1.4.75.74": "0", + ".1.3.6.1.2.1.16.2.6.1.4.76.75": "0", + ".1.3.6.1.2.1.16.2.6.1.4.77.76": "0", + ".1.3.6.1.2.1.16.2.6.1.4.78.77": "0", + ".1.3.6.1.2.1.16.2.6.1.4.79.78": "0", + ".1.3.6.1.2.1.16.2.6.1.4.80.79": "0", + ".1.3.6.1.2.1.16.2.6.1.4.81.80": "0", + ".1.3.6.1.2.1.16.2.6.1.4.82.81": "0", + ".1.3.6.1.2.1.16.2.6.1.4.83.82": "0", + ".1.3.6.1.2.1.16.2.6.1.4.84.83": "0", + ".1.3.6.1.2.1.16.2.6.1.4.85.84": "0", + ".1.3.6.1.2.1.16.2.6.1.4.86.85": "0", + ".1.3.6.1.2.1.16.2.6.1.4.87.26": "0", + ".1.3.6.1.2.1.16.2.6.1.4.88.27": "0", + ".1.3.6.1.2.1.16.2.6.1.4.89.28": "0", + ".1.3.6.1.2.1.16.2.6.1.4.90.29": "0", + ".1.3.6.1.2.1.16.2.6.1.4.91.30": "0", + ".1.3.6.1.2.1.16.2.6.1.4.92.31": "0", + ".1.3.6.1.2.1.16.2.6.1.4.93.32": "0", + ".1.3.6.1.2.1.16.2.6.1.4.94.33": "0", + ".1.3.6.1.2.1.16.2.6.1.4.95.34": "0", + ".1.3.6.1.2.1.16.2.6.1.4.96.35": "0", + ".1.3.6.1.2.1.16.2.6.1.4.97.36": "0", + ".1.3.6.1.2.1.16.2.6.1.4.98.37": "0", + ".1.3.6.1.2.1.16.2.6.1.4.99.38": "0", + ".1.3.6.1.2.1.16.2.6.1.4.100.39": "0", + ".1.3.6.1.2.1.16.2.6.1.4.101.40": "0", + ".1.3.6.1.2.1.16.2.6.1.4.102.41": "0", + ".1.3.6.1.2.1.16.2.6.1.4.103.42": "0", + ".1.3.6.1.2.1.16.2.6.1.4.104.43": "0", + ".1.3.6.1.2.1.16.2.6.1.4.105.44": "0", + ".1.3.6.1.2.1.16.2.6.1.4.106.45": "0", + ".1.3.6.1.2.1.16.2.6.1.4.107.46": "0", + ".1.3.6.1.2.1.16.2.6.1.4.108.47": "0", + ".1.3.6.1.2.1.16.2.6.1.4.109.48": "0", + ".1.3.6.1.2.1.16.2.6.1.4.110.49": "0", + ".1.3.6.1.2.1.16.2.6.1.4.111.50": "0", + ".1.3.6.1.2.1.16.2.6.1.4.112.51": "0", + ".1.3.6.1.2.1.16.2.6.1.4.113.52": "0", + ".1.3.6.1.2.1.16.2.6.1.4.114.53": "0", + ".1.3.6.1.2.1.16.2.6.1.4.115.54": "0", + ".1.3.6.1.2.1.16.2.6.1.4.116.55": "0", + ".1.3.6.1.2.1.16.2.6.1.4.117.56": "0", + ".1.3.6.1.2.1.16.2.6.1.4.118.57": "0", + ".1.3.6.1.2.1.16.2.6.1.4.119.58": "0", + ".1.3.6.1.2.1.16.2.6.1.4.120.59": "0", + ".1.3.6.1.2.1.16.2.6.1.4.121.60": "0", + ".1.3.6.1.2.1.16.2.6.1.4.122.1": "0", + ".1.3.6.1.2.1.16.2.6.1.4.123.61": "0", + ".1.3.6.1.2.1.16.2.6.1.4.124.62": "0", + ".1.3.6.1.2.1.16.2.6.1.4.125.63": "0", + ".1.3.6.1.2.1.16.2.6.1.4.126.64": "0", + ".1.3.6.1.2.1.16.2.6.1.4.127.65": "0", + ".1.3.6.1.2.1.16.2.6.1.4.128.66": "0", + ".1.3.6.1.2.1.16.2.6.1.4.129.67": "0", + ".1.3.6.1.2.1.16.2.6.1.4.130.68": "0", + ".1.3.6.1.2.1.16.2.6.1.4.131.69": "0", + ".1.3.6.1.2.1.16.2.6.1.4.132.70": "0", + ".1.3.6.1.2.1.16.2.6.1.4.133.71": "0", + ".1.3.6.1.2.1.16.2.6.1.4.134.72": "0", + ".1.3.6.1.2.1.16.2.6.1.4.135.73": "0", + ".1.3.6.1.2.1.16.2.6.1.4.136.74": "0", + ".1.3.6.1.2.1.16.2.6.1.4.137.75": "0", + ".1.3.6.1.2.1.16.2.6.1.4.138.76": "0", + ".1.3.6.1.2.1.16.2.6.1.4.139.77": "0", + ".1.3.6.1.2.1.16.2.6.1.4.140.78": "0", + ".1.3.6.1.2.1.16.2.6.1.4.141.79": "0", + ".1.3.6.1.2.1.16.2.6.1.4.142.80": "0", + ".1.3.6.1.2.1.16.2.6.1.4.143.81": "0", + ".1.3.6.1.2.1.16.2.6.1.4.144.82": "0", + ".1.3.6.1.2.1.16.2.6.1.4.145.83": "0", + ".1.3.6.1.2.1.16.2.6.1.4.146.84": "0", + ".1.3.6.1.2.1.16.2.6.1.4.147.85": "0", + ".1.3.6.1.2.1.16.2.6.1.4.148.26": "0", + ".1.3.6.1.2.1.16.2.6.1.4.149.27": "0", + ".1.3.6.1.2.1.16.2.6.1.4.150.28": "0", + ".1.3.6.1.2.1.16.2.6.1.4.151.29": "0", + ".1.3.6.1.2.1.16.2.6.1.4.152.30": "0", + ".1.3.6.1.2.1.16.2.6.1.4.153.31": "0", + ".1.3.6.1.2.1.16.2.6.1.4.154.32": "0", + ".1.3.6.1.2.1.16.2.6.1.4.155.33": "0", + ".1.3.6.1.2.1.16.2.6.1.4.156.34": "0", + ".1.3.6.1.2.1.16.2.6.1.4.157.35": "0", + ".1.3.6.1.2.1.16.2.6.1.4.158.36": "0", + ".1.3.6.1.2.1.16.2.6.1.4.159.37": "0", + ".1.3.6.1.2.1.16.2.6.1.4.160.38": "0", + ".1.3.6.1.2.1.16.2.6.1.4.161.39": "0", + ".1.3.6.1.2.1.16.2.6.1.4.162.40": "0", + ".1.3.6.1.2.1.16.2.6.1.4.163.41": "0", + ".1.3.6.1.2.1.16.2.6.1.4.164.42": "0", + ".1.3.6.1.2.1.16.2.6.1.4.165.43": "0", + ".1.3.6.1.2.1.16.2.6.1.4.166.44": "0", + ".1.3.6.1.2.1.16.2.6.1.4.167.45": "0", + ".1.3.6.1.2.1.16.2.6.1.4.168.46": "0", + ".1.3.6.1.2.1.16.2.6.1.4.169.47": "0", + ".1.3.6.1.2.1.16.2.6.1.4.170.48": "0", + ".1.3.6.1.2.1.16.2.6.1.4.171.49": "0", + ".1.3.6.1.2.1.16.2.6.1.4.172.50": "0", + ".1.3.6.1.2.1.16.2.6.1.4.173.51": "0", + ".1.3.6.1.2.1.16.2.6.1.4.174.52": "0", + ".1.3.6.1.2.1.16.2.6.1.4.175.53": "0", + ".1.3.6.1.2.1.16.2.6.1.4.176.54": "0", + ".1.3.6.1.2.1.16.2.6.1.4.177.55": "0", + ".1.3.6.1.2.1.16.2.6.1.4.178.56": "0", + ".1.3.6.1.2.1.16.2.6.1.4.179.57": "0", + ".1.3.6.1.2.1.16.2.6.1.4.180.58": "0", + ".1.3.6.1.2.1.16.2.6.1.4.181.59": "0", + ".1.3.6.1.2.1.16.2.6.1.4.182.60": "0", + ".1.3.6.1.2.1.16.2.6.1.4.183.1": "0", + ".1.3.6.1.2.1.16.2.6.1.4.184.61": "0", + ".1.3.6.1.2.1.16.2.6.1.4.185.62": "0", + ".1.3.6.1.2.1.16.2.6.1.4.186.63": "0", + ".1.3.6.1.2.1.16.2.6.1.4.187.64": "0", + ".1.3.6.1.2.1.16.2.6.1.4.188.65": "0", + ".1.3.6.1.2.1.16.2.6.1.4.189.66": "0", + ".1.3.6.1.2.1.16.2.6.1.4.190.67": "0", + ".1.3.6.1.2.1.16.2.6.1.4.191.68": "0", + ".1.3.6.1.2.1.16.2.6.1.4.192.69": "0", + ".1.3.6.1.2.1.16.2.6.1.4.193.70": "0", + ".1.3.6.1.2.1.16.2.6.1.4.194.71": "0", + ".1.3.6.1.2.1.16.2.6.1.4.195.72": "0", + ".1.3.6.1.2.1.16.2.6.1.4.196.73": "0", + ".1.3.6.1.2.1.16.2.6.1.4.197.74": "0", + ".1.3.6.1.2.1.16.2.6.1.4.198.75": "0", + ".1.3.6.1.2.1.16.2.6.1.4.199.76": "0", + ".1.3.6.1.2.1.16.2.6.1.4.200.77": "0", + ".1.3.6.1.2.1.16.2.6.1.4.201.78": "0", + ".1.3.6.1.2.1.16.2.6.1.4.202.79": "0", + ".1.3.6.1.2.1.16.2.6.1.4.203.80": "0", + ".1.3.6.1.2.1.16.2.6.1.4.204.81": "0", + ".1.3.6.1.2.1.16.2.6.1.4.205.82": "0", + ".1.3.6.1.2.1.16.2.6.1.4.206.83": "0", + ".1.3.6.1.2.1.16.2.6.1.4.207.84": "0", + ".1.3.6.1.2.1.16.2.6.1.4.208.85": "0", + ".1.3.6.1.2.1.16.2.6.1.4.209.26": "0", + ".1.3.6.1.2.1.16.2.6.1.4.210.27": "0", + ".1.3.6.1.2.1.16.2.6.1.4.211.28": "0", + ".1.3.6.1.2.1.16.2.6.1.4.212.29": "0", + ".1.3.6.1.2.1.16.2.6.1.4.213.30": "0", + ".1.3.6.1.2.1.16.2.6.1.4.214.31": "0", + ".1.3.6.1.2.1.16.2.6.1.4.215.32": "0", + ".1.3.6.1.2.1.16.2.6.1.4.216.33": "0", + ".1.3.6.1.2.1.16.2.6.1.4.217.34": "0", + ".1.3.6.1.2.1.16.2.6.1.4.218.35": "0", + ".1.3.6.1.2.1.16.2.6.1.4.219.36": "0", + ".1.3.6.1.2.1.16.2.6.1.4.220.37": "0", + ".1.3.6.1.2.1.16.2.6.1.4.221.38": "0", + ".1.3.6.1.2.1.16.2.6.1.4.222.39": "0", + ".1.3.6.1.2.1.16.2.6.1.4.223.40": "0", + ".1.3.6.1.2.1.16.2.6.1.4.224.41": "0", + ".1.3.6.1.2.1.16.2.6.1.4.225.42": "0", + ".1.3.6.1.2.1.16.2.6.1.4.226.43": "0", + ".1.3.6.1.2.1.16.2.6.1.4.227.44": "0", + ".1.3.6.1.2.1.16.2.6.1.4.228.45": "0", + ".1.3.6.1.2.1.16.2.6.1.4.229.46": "0", + ".1.3.6.1.2.1.16.2.6.1.4.230.47": "0", + ".1.3.6.1.2.1.16.2.6.1.4.231.48": "0", + ".1.3.6.1.2.1.16.2.6.1.4.232.49": "0", + ".1.3.6.1.2.1.16.2.6.1.4.233.50": "0", + ".1.3.6.1.2.1.16.2.6.1.4.234.51": "0", + ".1.3.6.1.2.1.16.2.6.1.4.235.52": "0", + ".1.3.6.1.2.1.16.2.6.1.4.236.53": "0", + ".1.3.6.1.2.1.16.2.6.1.4.237.54": "0", + ".1.3.6.1.2.1.16.2.6.1.4.238.55": "0", + ".1.3.6.1.2.1.16.2.6.1.4.239.56": "0", + ".1.3.6.1.2.1.16.2.6.1.4.240.57": "0", + ".1.3.6.1.2.1.16.2.6.1.4.241.58": "0", + ".1.3.6.1.2.1.16.2.6.1.4.242.59": "0", + ".1.3.6.1.2.1.16.2.6.1.4.243.60": "0", + ".1.3.6.1.2.1.16.2.6.1.4.244.1": "0", + ".1.3.6.1.2.1.26.2.2.1.2.1.1.1": "14", + ".1.3.6.1.2.1.26.2.2.1.2.2.1.1": "14", + ".1.3.6.1.2.1.26.2.2.1.2.3.1.1": "14", + ".1.3.6.1.2.1.26.2.2.1.2.4.1.1": "14", + ".1.3.6.1.2.1.26.2.2.1.2.5.1.1": "2", + ".1.3.6.1.2.1.26.2.2.1.2.6.1.1": "2", + ".1.3.6.1.2.1.26.2.2.1.2.7.1.1": "2", + ".1.3.6.1.2.1.26.5.1.1.1.1.1": "1", + ".1.3.6.1.2.1.26.5.1.1.1.2.1": "1", + ".1.3.6.1.2.1.26.5.1.1.1.3.1": "1", + ".1.3.6.1.2.1.26.5.1.1.1.4.1": "1", + ".1.3.6.1.2.1.26.5.1.1.1.5.1": "1", + ".1.3.6.1.2.1.26.5.1.1.1.6.1": "2", + ".1.3.6.1.2.1.26.5.1.1.1.7.1": "2", + ".1.3.6.1.2.1.26.5.1.1.2.1.1": "2", + ".1.3.6.1.2.1.26.5.1.1.2.2.1": "2", + ".1.3.6.1.2.1.26.5.1.1.2.3.1": "2", + ".1.3.6.1.2.1.26.5.1.1.2.4.1": "2", + ".1.3.6.1.2.1.26.5.1.1.2.5.1": "1", + ".1.3.6.1.2.1.26.5.1.1.2.6.1": "2", + ".1.3.6.1.2.1.26.5.1.1.2.7.1": "2", + ".1.3.6.1.2.1.26.5.1.1.4.1.1": "2", + ".1.3.6.1.2.1.26.5.1.1.4.2.1": "2", + ".1.3.6.1.2.1.26.5.1.1.4.3.1": "2", + ".1.3.6.1.2.1.26.5.1.1.4.4.1": "2", + ".1.3.6.1.2.1.26.5.1.1.4.5.1": "3", + ".1.3.6.1.2.1.26.5.1.1.4.6.1": "2", + ".1.3.6.1.2.1.26.5.1.1.4.7.1": "2", + ".1.3.6.1.2.1.26.5.1.1.5.1.1": "0", + ".1.3.6.1.2.1.26.5.1.1.5.2.1": "0", + ".1.3.6.1.2.1.26.5.1.1.5.3.1": "0", + ".1.3.6.1.2.1.26.5.1.1.5.4.1": "0", + ".1.3.6.1.2.1.26.5.1.1.5.5.1": "0", + ".1.3.6.1.2.1.26.5.1.1.5.6.1": "0", + ".1.3.6.1.2.1.26.5.1.1.5.7.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.1.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.2.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.3.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.4.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.5.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.6.1": "0", + ".1.3.6.1.2.1.26.5.1.1.6.7.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.1.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.2.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.3.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.4.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.5.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.6.1": "0", + ".1.3.6.1.2.1.26.5.1.1.7.7.1": "0", + ".1.3.6.1.2.1.26.5.1.1.8.1.1": "2", + ".1.3.6.1.2.1.26.5.1.1.8.2.1": "2", + ".1.3.6.1.2.1.26.5.1.1.8.3.1": "2", + ".1.3.6.1.2.1.26.5.1.1.8.4.1": "2", + ".1.3.6.1.2.1.26.5.1.1.8.5.1": "2", + ".1.3.6.1.2.1.26.5.1.1.8.6.1": "2", + ".1.3.6.1.2.1.26.5.1.1.8.7.1": "2", + ".1.3.6.1.2.1.26.5.1.1.9.1.1": "00 C2", + ".1.3.6.1.2.1.26.5.1.1.9.2.1": "24 C2", + ".1.3.6.1.2.1.26.5.1.1.9.3.1": "24 C2", + ".1.3.6.1.2.1.26.5.1.1.9.4.1": "00 C2", + ".1.3.6.1.2.1.26.5.1.1.9.5.1": "24 C0", + ".1.3.6.1.2.1.26.5.1.1.9.6.1": "00 C2", + ".1.3.6.1.2.1.26.5.1.1.9.7.1": "00 C2", + ".1.3.6.1.2.1.26.5.1.1.10.1.1": "00 C1", + ".1.3.6.1.2.1.26.5.1.1.10.2.1": "24 C1", + ".1.3.6.1.2.1.26.5.1.1.10.3.1": "24 C1", + ".1.3.6.1.2.1.26.5.1.1.10.4.1": "00 C1", + ".1.3.6.1.2.1.26.5.1.1.10.5.1": "24 C0", + ".1.3.6.1.2.1.26.5.1.1.10.6.1": "00 C1", + ".1.3.6.1.2.1.26.5.1.1.10.7.1": "00 C1", + ".1.3.6.1.2.1.26.5.1.1.11.1.1": "", + ".1.3.6.1.2.1.26.5.1.1.11.2.1": "", + ".1.3.6.1.2.1.26.5.1.1.11.3.1": "", + ".1.3.6.1.2.1.26.5.1.1.11.4.1": "00 C1", + ".1.3.6.1.2.1.26.5.1.1.11.5.1": "6C C0", + ".1.3.6.1.2.1.26.5.1.1.11.6.1": "", + ".1.3.6.1.2.1.26.5.1.1.11.7.1": "", + ".1.3.6.1.2.1.26.5.1.1.12.1.1": "1", + ".1.3.6.1.2.1.26.5.1.1.12.2.1": "1", + ".1.3.6.1.2.1.26.5.1.1.12.3.1": "1", + ".1.3.6.1.2.1.26.5.1.1.12.4.1": "1", + ".1.3.6.1.2.1.26.5.1.1.12.5.1": "1", + ".1.3.6.1.2.1.26.5.1.1.12.6.1": "1", + ".1.3.6.1.2.1.26.5.1.1.12.7.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.1.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.2.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.3.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.4.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.5.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.6.1": "1", + ".1.3.6.1.2.1.26.5.1.1.13.7.1": "1" + } + } +} \ No newline at end of file diff --git a/walks/10-13-60-102_2026-02-27_11-23-07_walk_tables.csv b/walks/10-13-60-102_2026-02-27_11-23-07_walk_tables.csv new file mode 100644 index 0000000..29ffa6b --- /dev/null +++ b/walks/10-13-60-102_2026-02-27_11-23-07_walk_tables.csv @@ -0,0 +1,3982 @@ +table,index,column,value +interfaces,1,ifDescr,EVEN_VLAN_UPLINK +interfaces,1,ifType,ethernetCsmacd +interfaces,1,ifMtu,4096 +interfaces,1,ifSpeed,1000000000 +interfaces,1,ifPhysAddress,0:15:ad:47:3e:61 +interfaces,1,ifAdminStatus,up +interfaces,1,ifOperStatus,up +interfaces,1,ifInOctets,4223389593 +interfaces,1,ifInDiscards,0 +interfaces,1,ifInErrors,0 +interfaces,1,ifOutOctets,2365165170 +interfaces,1,ifOutDiscards,0 +interfaces,1,ifOutErrors,0 +interfaces,1,ifName,EVEN_VLAN_UPLINK +interfaces,1,ifHCInOctets,12813324665 +interfaces,1,ifHCOutOctets,15250068986 +interfaces,1,ifHighSpeed,1000 +interfaces,2,ifDescr,ODD_VLAN_UPLINK +interfaces,2,ifType,ethernetCsmacd +interfaces,2,ifMtu,4096 +interfaces,2,ifSpeed,0 +interfaces,2,ifPhysAddress,0:15:ad:47:3e:62 +interfaces,2,ifAdminStatus,up +interfaces,2,ifOperStatus,down +interfaces,2,ifInOctets,135053161 +interfaces,2,ifInDiscards,0 +interfaces,2,ifInErrors,0 +interfaces,2,ifOutOctets,110445216 +interfaces,2,ifOutDiscards,0 +interfaces,2,ifOutErrors,0 +interfaces,2,ifName,ODD_VLAN_UPLINK +interfaces,2,ifHCInOctets,135053161 +interfaces,2,ifHCOutOctets,110445216 +interfaces,2,ifHighSpeed,0 +interfaces,3,ifDescr,EVEN_VLAN_DOWNLIN +interfaces,3,ifType,ethernetCsmacd +interfaces,3,ifMtu,2000 +interfaces,3,ifSpeed,0 +interfaces,3,ifPhysAddress,0:15:ad:47:3e:63 +interfaces,3,ifAdminStatus,up +interfaces,3,ifOperStatus,down +interfaces,3,ifInOctets,2194071425 +interfaces,3,ifInDiscards,0 +interfaces,3,ifInErrors,0 +interfaces,3,ifOutOctets,3499102118 +interfaces,3,ifOutDiscards,0 +interfaces,3,ifOutErrors,0 +interfaces,3,ifName,EVEN_VLAN_DOWNLIN +interfaces,3,ifHCInOctets,15078973313 +interfaces,3,ifHCOutOctets,12089036710 +interfaces,3,ifHighSpeed,0 +interfaces,4,ifDescr,ODD_VLAN_DOWNLINK +interfaces,4,ifType,ethernetCsmacd +interfaces,4,ifMtu,4096 +interfaces,4,ifSpeed,0 +interfaces,4,ifPhysAddress,0:15:ad:47:3e:64 +interfaces,4,ifAdminStatus,up +interfaces,4,ifOperStatus,down +interfaces,4,ifInOctets,314336220 +interfaces,4,ifInDiscards,0 +interfaces,4,ifInErrors,0 +interfaces,4,ifOutOctets,354824130 +interfaces,4,ifOutDiscards,0 +interfaces,4,ifOutErrors,0 +interfaces,4,ifName,ODD_VLAN_DOWNLINK +interfaces,4,ifHCInOctets,314336220 +interfaces,4,ifHCOutOctets,354824130 +interfaces,4,ifHighSpeed,0 +interfaces,5,ifDescr,Management +interfaces,5,ifType,ethernetCsmacd +interfaces,5,ifMtu,2000 +interfaces,5,ifSpeed,100000000 +interfaces,5,ifPhysAddress,0:15:ad:47:3e:65 +interfaces,5,ifAdminStatus,up +interfaces,5,ifOperStatus,up +interfaces,5,ifInOctets,3877078151 +interfaces,5,ifInDiscards,0 +interfaces,5,ifInErrors,0 +interfaces,5,ifOutOctets,1386639353 +interfaces,5,ifOutDiscards,0 +interfaces,5,ifOutErrors,0 +interfaces,5,ifName,Management +interfaces,5,ifHCInOctets,132727052162 +interfaces,5,ifHCOutOctets,1387157336 +interfaces,5,ifHighSpeed,100 +interfaces,6,ifDescr,LAG-1 +interfaces,6,ifType,ethernetCsmacd +interfaces,6,ifMtu,10240 +interfaces,6,ifSpeed,0 +interfaces,6,ifPhysAddress,0:15:ad:47:3e:61 +interfaces,6,ifAdminStatus,up +interfaces,6,ifOperStatus,down +interfaces,6,ifInOctets,0 +interfaces,6,ifInDiscards,0 +interfaces,6,ifInErrors,0 +interfaces,6,ifOutOctets,0 +interfaces,6,ifOutDiscards,0 +interfaces,6,ifOutErrors,0 +interfaces,6,ifName,LAG-1 +interfaces,6,ifHCInOctets,0 +interfaces,6,ifHCOutOctets,0 +interfaces,6,ifHighSpeed,0 +interfaces,7,ifDescr,LAG-2 +interfaces,7,ifType,ethernetCsmacd +interfaces,7,ifMtu,10240 +interfaces,7,ifSpeed,0 +interfaces,7,ifPhysAddress,0:15:ad:47:3e:63 +interfaces,7,ifAdminStatus,up +interfaces,7,ifOperStatus,down +interfaces,7,ifInOctets,0 +interfaces,7,ifInDiscards,0 +interfaces,7,ifInErrors,0 +interfaces,7,ifOutOctets,0 +interfaces,7,ifOutDiscards,0 +interfaces,7,ifOutErrors,0 +interfaces,7,ifName,LAG-2 +interfaces,7,ifHCInOctets,0 +interfaces,7,ifHCOutOctets,0 +interfaces,7,ifHighSpeed,0 +interfaces,1003,ifDescr,VLAN_MGMT +interfaces,1003,ifType,ethernetCsmacd +interfaces,1003,ifMtu,2000 +interfaces,1003,ifSpeed,0 +interfaces,1003,ifPhysAddress,0:15:ad:47:3e:65 +interfaces,1003,ifAdminStatus,up +interfaces,1003,ifOperStatus,up +interfaces,1003,ifInOctets,0 +interfaces,1003,ifInDiscards,0 +interfaces,1003,ifInErrors,0 +interfaces,1003,ifOutOctets,0 +interfaces,1003,ifOutDiscards,0 +interfaces,1003,ifOutErrors,0 +interfaces,1003,ifName,VLAN_MGMT +interfaces,1003,ifHCInOctets,0 +interfaces,1003,ifHCOutOctets,0 +interfaces,1003,ifHighSpeed,0 +connectors,1,id,1 +connectors,1,name,SFP-1 +connectors,1,type,14 +connectors,1,poeSupport,2 +connectors,2,id,2 +connectors,2,name,SFP-2 +connectors,2,type,14 +connectors,2,poeSupport,2 +connectors,3,id,3 +connectors,3,name,SFP-3 +connectors,3,type,14 +connectors,3,poeSupport,2 +connectors,4,id,4 +connectors,4,name,SFP-4 +connectors,4,type,14 +connectors,4,poeSupport,2 +connectors,5,id,5 +connectors,5,name,Management +connectors,5,type,2 +connectors,5,poeSupport,2 +power_supplies,2,id,2 +power_supplies,2,name,Feed A +power_supplies,2,type,2 +power_supplies,2,present,1 +power_supplies,3,id,3 +power_supplies,3,name,Feed B +power_supplies,3,type,2 +power_supplies,3,present,2 +temperature_sensors,1,currentTemp,44 +temperature_sensors,1,highThreshold,85 +temperature_sensors,1,highAlarmEnabled,2 +temperature_sensors,1,criticalThreshold,90 +temperature_sensors,1,criticalAlarmEnabled,2 +temperature_sensors,1,label,Sensor 1 +temperature_sensors,2,currentTemp,34 +temperature_sensors,2,highThreshold,85 +temperature_sensors,2,highAlarmEnabled,2 +temperature_sensors,2,criticalThreshold,90 +temperature_sensors,2,criticalAlarmEnabled,2 +temperature_sensors,2,label,Sensor 2 +sfp_info,1,connectorIdx,1 +sfp_info,1,connectorType,7 +sfp_info,1,vendor,OEM +sfp_info,1,vendorOui,00 00 00 +sfp_info,1,vendorPn,SFP-LX-SM +sfp_info,1,vendorRev,1.0 NCI50L085 +sfp_info,1,wavelength,1310 +sfp_info,1,serialNum,NCI50L0853 +sfp_info,1,mfgYear,2009 +sfp_info,1,mfgMonth,10 +sfp_info,1,mfgDay,1 +sfp_info,1,lot,0 +sfp_info,1,rev8472,0 +sfp_info,1,present,1 +sfp_info,1,diagCapable,2 +sfp_info,1,internalCal,2 +sfp_info,1,alarmCapable,2 +sfp_info,1,idType,3 +sfp_info,1,extIdType,4 +sfp_info,1,transCode,00 00 00 02 12 00 0D 01 +sfp_info,3,connectorIdx,3 +sfp_info,3,connectorType,128 +sfp_info,3,vendor,PROLABS +sfp_info,3,vendorOui,00 00 00 +sfp_info,3,vendorPn,SFP-1000BASE-T-C +sfp_info,3,vendorRev,A2 PRL940039 +sfp_info,3,wavelength,0 +sfp_info,3,serialNum,PRL940039251 +sfp_info,3,mfgYear,2021 +sfp_info,3,mfgMonth,8 +sfp_info,3,mfgDay,16 +sfp_info,3,lot,0 +sfp_info,3,rev8472,0 +sfp_info,3,present,1 +sfp_info,3,diagCapable,2 +sfp_info,3,internalCal,2 +sfp_info,3,alarmCapable,2 +sfp_info,3,idType,3 +sfp_info,3,extIdType,4 +sfp_info,3,transCode,00 00 00 08 00 00 00 00 +sfp_diagnostics,1,connectorIdx,1 +sfp_diagnostics,1,temperature,0 +sfp_diagnostics,1,supplyVoltage,0 +sfp_diagnostics,1,laserBiasCurrent,0 +sfp_diagnostics,1,txPower_uW,0 +sfp_diagnostics,1,rxPower_uW,0 +sfp_diagnostics,1,txPower_dBm,-inf dBm +sfp_diagnostics,1,rxPower_dBm,-inf dBm +sfp_diagnostics,3,connectorIdx,3 +sfp_diagnostics,3,temperature,0 +sfp_diagnostics,3,supplyVoltage,0 +sfp_diagnostics,3,laserBiasCurrent,0 +sfp_diagnostics,3,txPower_uW,0 +sfp_diagnostics,3,rxPower_uW,0 +sfp_diagnostics,3,txPower_dBm,-inf dBm +sfp_diagnostics,3,rxPower_dBm,-inf dBm +sfp_thresholds,1,connectorIdx,1 +sfp_thresholds,1,tempHighAlarm,0 +sfp_thresholds,1,tempLowAlarm,0 +sfp_thresholds,1,tempHighWarn,0 +sfp_thresholds,1,tempLowWarn,0 +sfp_thresholds,1,vccHighAlarm,0 +sfp_thresholds,1,vccLowAlarm,0 +sfp_thresholds,1,vccHighWarn,0 +sfp_thresholds,1,vccLowWarn,0 +sfp_thresholds,1,lbcHighAlarm,0 +sfp_thresholds,1,lbcLowAlarm,0 +sfp_thresholds,1,lbcHighWarn,0 +sfp_thresholds,1,lbcLowWarn,0 +sfp_thresholds,1,txPwrHighAlarm,0 +sfp_thresholds,1,txPwrLowAlarm,0 +sfp_thresholds,1,txPwrHighWarn,0 +sfp_thresholds,1,txPwrLowWarn,0 +sfp_thresholds,1,rxPwrHighAlarm,0 +sfp_thresholds,1,rxPwrLowAlarm,0 +sfp_thresholds,1,rxPwrHighWarn,0 +sfp_thresholds,1,rxPwrLowWarn,0 +sfp_thresholds,1,txPwrHighAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,txPwrLowAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,txPwrHighWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,txPwrLowWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,rxPwrHighAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,rxPwrLowAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,rxPwrHighWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,1,rxPwrLowWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,connectorIdx,3 +sfp_thresholds,3,tempHighAlarm,0 +sfp_thresholds,3,tempLowAlarm,0 +sfp_thresholds,3,tempHighWarn,0 +sfp_thresholds,3,tempLowWarn,0 +sfp_thresholds,3,vccHighAlarm,0 +sfp_thresholds,3,vccLowAlarm,0 +sfp_thresholds,3,vccHighWarn,0 +sfp_thresholds,3,vccLowWarn,0 +sfp_thresholds,3,lbcHighAlarm,0 +sfp_thresholds,3,lbcLowAlarm,0 +sfp_thresholds,3,lbcHighWarn,0 +sfp_thresholds,3,lbcLowWarn,0 +sfp_thresholds,3,txPwrHighAlarm,0 +sfp_thresholds,3,txPwrLowAlarm,0 +sfp_thresholds,3,txPwrHighWarn,0 +sfp_thresholds,3,txPwrLowWarn,0 +sfp_thresholds,3,rxPwrHighAlarm,0 +sfp_thresholds,3,rxPwrLowAlarm,0 +sfp_thresholds,3,rxPwrHighWarn,0 +sfp_thresholds,3,rxPwrLowWarn,0 +sfp_thresholds,3,txPwrHighAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,txPwrLowAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,txPwrHighWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,txPwrLowWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,rxPwrHighAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,rxPwrLowAlarm_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,rxPwrHighWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +sfp_thresholds,3,rxPwrLowWarn_dBm,2D 69 6E 00 20 64 42 6D 0A +alarm_config,1,id,1 +alarm_config,1,number,8000001 +alarm_config,1,description,First overheat threshold +alarm_config,1,enabled,1 +alarm_config,1,severity,2 +alarm_config,1,serviceAffecting,2 +alarm_config,1,extNumber,8.0000.01 +alarm_config,1,conditionType,TEMP-HIGH-WN +alarm_config,1,amoType,ENV.TEMP +alarm_config,1,on,0 +alarm_config,2,id,2 +alarm_config,2,number,8000002 +alarm_config,2,description,Second overheat threshold +alarm_config,2,enabled,1 +alarm_config,2,severity,3 +alarm_config,2,serviceAffecting,2 +alarm_config,2,extNumber,8.0000.02 +alarm_config,2,conditionType,TEMP-HIGH-ALM +alarm_config,2,amoType,ENV.TEMP +alarm_config,2,on,0 +alarm_config,3,id,3 +alarm_config,3,number,8000004 +alarm_config,3,description,No power supply on feed A +alarm_config,3,enabled,1 +alarm_config,3,severity,2 +alarm_config,3,serviceAffecting,2 +alarm_config,3,extNumber,8.0000.04 +alarm_config,3,conditionType,PWR-LOSS +alarm_config,3,amoType,ENV.PWR-FEEDA +alarm_config,3,on,0 +alarm_config,4,id,4 +alarm_config,4,number,8000005 +alarm_config,4,description,No power supply on feed B +alarm_config,4,enabled,1 +alarm_config,4,severity,2 +alarm_config,4,serviceAffecting,2 +alarm_config,4,extNumber,8.0000.05 +alarm_config,4,conditionType,PWR-LOSS +alarm_config,4,amoType,ENV.PWR-FEEDB +alarm_config,4,on,0 +alarm_config,5,id,5 +alarm_config,5,number,8000101 +alarm_config,5,description,First overheat threshold +alarm_config,5,enabled,1 +alarm_config,5,severity,2 +alarm_config,5,serviceAffecting,2 +alarm_config,5,extNumber,8.0001.01 +alarm_config,5,conditionType,TEMP-HIGH-WN +alarm_config,5,amoType,ENV.TEMP +alarm_config,5,on,0 +alarm_config,6,id,6 +alarm_config,6,number,8000102 +alarm_config,6,description,Second overheat threshold +alarm_config,6,enabled,1 +alarm_config,6,severity,3 +alarm_config,6,serviceAffecting,2 +alarm_config,6,extNumber,8.0001.02 +alarm_config,6,conditionType,TEMP-HIGH-ALM +alarm_config,6,amoType,ENV.TEMP +alarm_config,6,on,0 +alarm_config,7,id,7 +alarm_config,7,number,8000040 +alarm_config,7,description,Fan 1 slow +alarm_config,7,enabled,1 +alarm_config,7,severity,2 +alarm_config,7,serviceAffecting,2 +alarm_config,7,extNumber,8.0000.40 +alarm_config,7,conditionType,FAN-SLOW +alarm_config,7,amoType,ENV.FAN-SLOW +alarm_config,7,on,0 +alarm_config,8,id,8 +alarm_config,8,number,8000041 +alarm_config,8,description,Fan 1 failure +alarm_config,8,enabled,1 +alarm_config,8,severity,3 +alarm_config,8,serviceAffecting,2 +alarm_config,8,extNumber,8.0000.41 +alarm_config,8,conditionType,FAN-FAILURE +alarm_config,8,amoType,ENV.FAN-FAILURE +alarm_config,8,on,0 +alarm_config,9,id,9 +alarm_config,9,number,8000140 +alarm_config,9,description,Fan 2 slow +alarm_config,9,enabled,1 +alarm_config,9,severity,2 +alarm_config,9,serviceAffecting,2 +alarm_config,9,extNumber,8.0001.40 +alarm_config,9,conditionType,FAN-SLOW +alarm_config,9,amoType,ENV.FAN-SLOW +alarm_config,9,on,0 +alarm_config,10,id,10 +alarm_config,10,number,8000141 +alarm_config,10,description,Fan 2 failure +alarm_config,10,enabled,1 +alarm_config,10,severity,3 +alarm_config,10,serviceAffecting,2 +alarm_config,10,extNumber,8.0001.41 +alarm_config,10,conditionType,FAN-FAILURE +alarm_config,10,amoType,ENV.FAN-FAILURE +alarm_config,10,on,0 +alarm_config,11,id,11 +alarm_config,11,number,2000101 +alarm_config,11,description,SFP-1 temperature high alarm +alarm_config,11,enabled,1 +alarm_config,11,severity,2 +alarm_config,11,serviceAffecting,2 +alarm_config,11,extNumber,2.0001.01 +alarm_config,11,conditionType,TEMP-HIGH-ALM +alarm_config,11,amoType,SFP.1 +alarm_config,11,on,0 +alarm_config,12,id,12 +alarm_config,12,number,2000102 +alarm_config,12,description,SFP-1 temperature low alarm +alarm_config,12,enabled,1 +alarm_config,12,severity,2 +alarm_config,12,serviceAffecting,2 +alarm_config,12,extNumber,2.0001.02 +alarm_config,12,conditionType,TEMP-LOW-ALM +alarm_config,12,amoType,SFP.1 +alarm_config,12,on,0 +alarm_config,13,id,13 +alarm_config,13,number,2000103 +alarm_config,13,description,SFP-1 temperature high warning +alarm_config,13,enabled,1 +alarm_config,13,severity,0 +alarm_config,13,serviceAffecting,2 +alarm_config,13,extNumber,2.0001.03 +alarm_config,13,conditionType,TEMP-HIGH-WN +alarm_config,13,amoType,SFP.1 +alarm_config,13,on,0 +alarm_config,14,id,14 +alarm_config,14,number,2000104 +alarm_config,14,description,SFP-1 temperature low warning +alarm_config,14,enabled,1 +alarm_config,14,severity,0 +alarm_config,14,serviceAffecting,2 +alarm_config,14,extNumber,2.0001.04 +alarm_config,14,conditionType,TEMP-LOW-WN +alarm_config,14,amoType,SFP.1 +alarm_config,14,on,0 +alarm_config,15,id,15 +alarm_config,15,number,2000105 +alarm_config,15,description,SFP-1 supply voltage high alarm +alarm_config,15,enabled,1 +alarm_config,15,severity,2 +alarm_config,15,serviceAffecting,2 +alarm_config,15,extNumber,2.0001.05 +alarm_config,15,conditionType,VCC-HIGH-ALM +alarm_config,15,amoType,SFP.1 +alarm_config,15,on,0 +alarm_config,16,id,16 +alarm_config,16,number,2000106 +alarm_config,16,description,SFP-1 supply voltage low alarm +alarm_config,16,enabled,1 +alarm_config,16,severity,2 +alarm_config,16,serviceAffecting,2 +alarm_config,16,extNumber,2.0001.06 +alarm_config,16,conditionType,VCC-LOW-ALM +alarm_config,16,amoType,SFP.1 +alarm_config,16,on,0 +alarm_config,17,id,17 +alarm_config,17,number,2000107 +alarm_config,17,description,SFP-1 supply voltage high warning +alarm_config,17,enabled,1 +alarm_config,17,severity,0 +alarm_config,17,serviceAffecting,2 +alarm_config,17,extNumber,2.0001.07 +alarm_config,17,conditionType,VCC-HIGH-WN +alarm_config,17,amoType,SFP.1 +alarm_config,17,on,0 +alarm_config,18,id,18 +alarm_config,18,number,2000108 +alarm_config,18,description,SFP-1 supply voltage low warning +alarm_config,18,enabled,1 +alarm_config,18,severity,0 +alarm_config,18,serviceAffecting,2 +alarm_config,18,extNumber,2.0001.08 +alarm_config,18,conditionType,VCC-LOW-WN +alarm_config,18,amoType,SFP.1 +alarm_config,18,on,0 +alarm_config,19,id,19 +alarm_config,19,number,2000109 +alarm_config,19,description,SFP-1 laser bias current high alarm +alarm_config,19,enabled,1 +alarm_config,19,severity,2 +alarm_config,19,serviceAffecting,2 +alarm_config,19,extNumber,2.0001.09 +alarm_config,19,conditionType,LBC-HIGH-ALM +alarm_config,19,amoType,SFP.1 +alarm_config,19,on,0 +alarm_config,20,id,20 +alarm_config,20,number,2000110 +alarm_config,20,description,SFP-1 laser bias current low alarm +alarm_config,20,enabled,1 +alarm_config,20,severity,2 +alarm_config,20,serviceAffecting,2 +alarm_config,20,extNumber,2.0001.10 +alarm_config,20,conditionType,LBC-LOW-ALM +alarm_config,20,amoType,SFP.1 +alarm_config,20,on,0 +alarm_config,21,id,21 +alarm_config,21,number,2000111 +alarm_config,21,description,SFP-1 laser bias current high warning +alarm_config,21,enabled,1 +alarm_config,21,severity,0 +alarm_config,21,serviceAffecting,2 +alarm_config,21,extNumber,2.0001.11 +alarm_config,21,conditionType,LBC-HIGH-WN +alarm_config,21,amoType,SFP.1 +alarm_config,21,on,0 +alarm_config,22,id,22 +alarm_config,22,number,2000112 +alarm_config,22,description,SFP-1 laser bias current low warning +alarm_config,22,enabled,1 +alarm_config,22,severity,0 +alarm_config,22,serviceAffecting,2 +alarm_config,22,extNumber,2.0001.12 +alarm_config,22,conditionType,LBC-LOW-WN +alarm_config,22,amoType,SFP.1 +alarm_config,22,on,0 +alarm_config,23,id,23 +alarm_config,23,number,2000113 +alarm_config,23,description,SFP-1 transmit power high alarm +alarm_config,23,enabled,1 +alarm_config,23,severity,2 +alarm_config,23,serviceAffecting,2 +alarm_config,23,extNumber,2.0001.13 +alarm_config,23,conditionType,TX-PWR-HIGH-ALM +alarm_config,23,amoType,SFP.1 +alarm_config,23,on,0 +alarm_config,24,id,24 +alarm_config,24,number,2000114 +alarm_config,24,description,SFP-1 transmit power low alarm +alarm_config,24,enabled,1 +alarm_config,24,severity,2 +alarm_config,24,serviceAffecting,2 +alarm_config,24,extNumber,2.0001.14 +alarm_config,24,conditionType,TX-PWR-LOW-ALM +alarm_config,24,amoType,SFP.1 +alarm_config,24,on,0 +alarm_config,25,id,25 +alarm_config,25,number,2000115 +alarm_config,25,description,SFP-1 transmit power high warning +alarm_config,25,enabled,1 +alarm_config,25,severity,0 +alarm_config,25,serviceAffecting,2 +alarm_config,25,extNumber,2.0001.15 +alarm_config,25,conditionType,TX-PWR-HIGH-WN +alarm_config,25,amoType,SFP.1 +alarm_config,25,on,0 +alarm_config,26,id,26 +alarm_config,26,number,2000116 +alarm_config,26,description,SFP-1 transmit power low warning +alarm_config,26,enabled,1 +alarm_config,26,severity,0 +alarm_config,26,serviceAffecting,2 +alarm_config,26,extNumber,2.0001.16 +alarm_config,26,conditionType,TX-PWR-LOW-WN +alarm_config,26,amoType,SFP.1 +alarm_config,26,on,0 +alarm_config,27,id,27 +alarm_config,27,number,2000117 +alarm_config,27,description,SFP-1 receive power high alarm +alarm_config,27,enabled,1 +alarm_config,27,severity,2 +alarm_config,27,serviceAffecting,2 +alarm_config,27,extNumber,2.0001.17 +alarm_config,27,conditionType,RX-PWR-HIGH-ALM +alarm_config,27,amoType,SFP.1 +alarm_config,27,on,0 +alarm_config,28,id,28 +alarm_config,28,number,2000118 +alarm_config,28,description,SFP-1 receive power low alarm +alarm_config,28,enabled,1 +alarm_config,28,severity,2 +alarm_config,28,serviceAffecting,2 +alarm_config,28,extNumber,2.0001.18 +alarm_config,28,conditionType,RX-PWR-LOW-ALM +alarm_config,28,amoType,SFP.1 +alarm_config,28,on,0 +alarm_config,29,id,29 +alarm_config,29,number,2000119 +alarm_config,29,description,SFP-1 receive power high warning +alarm_config,29,enabled,1 +alarm_config,29,severity,0 +alarm_config,29,serviceAffecting,2 +alarm_config,29,extNumber,2.0001.19 +alarm_config,29,conditionType,RX-PWR-HIGH-WN +alarm_config,29,amoType,SFP.1 +alarm_config,29,on,0 +alarm_config,30,id,30 +alarm_config,30,number,2000120 +alarm_config,30,description,SFP-1 receive power low warning +alarm_config,30,enabled,1 +alarm_config,30,severity,0 +alarm_config,30,serviceAffecting,2 +alarm_config,30,extNumber,2.0001.20 +alarm_config,30,conditionType,RX-PWR-LOW-WN +alarm_config,30,amoType,SFP.1 +alarm_config,30,on,0 +alarm_config,31,id,31 +alarm_config,31,number,2000121 +alarm_config,31,description,SFP-1 not present +alarm_config,31,enabled,1 +alarm_config,31,severity,2 +alarm_config,31,serviceAffecting,2 +alarm_config,31,extNumber,2.0001.21 +alarm_config,31,conditionType,MOD-NOT-PRESENT +alarm_config,31,amoType,SFP.1 +alarm_config,31,on,0 +alarm_config,32,id,32 +alarm_config,32,number,2000201 +alarm_config,32,description,SFP-2 temperature high alarm +alarm_config,32,enabled,1 +alarm_config,32,severity,2 +alarm_config,32,serviceAffecting,2 +alarm_config,32,extNumber,2.0002.01 +alarm_config,32,conditionType,TEMP-HIGH-ALM +alarm_config,32,amoType,SFP.2 +alarm_config,32,on,0 +alarm_config,33,id,33 +alarm_config,33,number,2000202 +alarm_config,33,description,SFP-2 temperature low alarm +alarm_config,33,enabled,1 +alarm_config,33,severity,2 +alarm_config,33,serviceAffecting,2 +alarm_config,33,extNumber,2.0002.02 +alarm_config,33,conditionType,TEMP-LOW-ALM +alarm_config,33,amoType,SFP.2 +alarm_config,33,on,0 +alarm_config,34,id,34 +alarm_config,34,number,2000203 +alarm_config,34,description,SFP-2 temperature high warning +alarm_config,34,enabled,1 +alarm_config,34,severity,0 +alarm_config,34,serviceAffecting,2 +alarm_config,34,extNumber,2.0002.03 +alarm_config,34,conditionType,TEMP-HIGH-WN +alarm_config,34,amoType,SFP.2 +alarm_config,34,on,0 +alarm_config,35,id,35 +alarm_config,35,number,2000204 +alarm_config,35,description,SFP-2 temperature low warning +alarm_config,35,enabled,1 +alarm_config,35,severity,0 +alarm_config,35,serviceAffecting,2 +alarm_config,35,extNumber,2.0002.04 +alarm_config,35,conditionType,TEMP-LOW-WN +alarm_config,35,amoType,SFP.2 +alarm_config,35,on,0 +alarm_config,36,id,36 +alarm_config,36,number,2000205 +alarm_config,36,description,SFP-2 supply voltage high alarm +alarm_config,36,enabled,1 +alarm_config,36,severity,2 +alarm_config,36,serviceAffecting,2 +alarm_config,36,extNumber,2.0002.05 +alarm_config,36,conditionType,VCC-HIGH-ALM +alarm_config,36,amoType,SFP.2 +alarm_config,36,on,0 +alarm_config,37,id,37 +alarm_config,37,number,2000206 +alarm_config,37,description,SFP-2 supply voltage low alarm +alarm_config,37,enabled,1 +alarm_config,37,severity,2 +alarm_config,37,serviceAffecting,2 +alarm_config,37,extNumber,2.0002.06 +alarm_config,37,conditionType,VCC-LOW-ALM +alarm_config,37,amoType,SFP.2 +alarm_config,37,on,0 +alarm_config,38,id,38 +alarm_config,38,number,2000207 +alarm_config,38,description,SFP-2 supply voltage high warning +alarm_config,38,enabled,1 +alarm_config,38,severity,0 +alarm_config,38,serviceAffecting,2 +alarm_config,38,extNumber,2.0002.07 +alarm_config,38,conditionType,VCC-HIGH-WN +alarm_config,38,amoType,SFP.2 +alarm_config,38,on,0 +alarm_config,39,id,39 +alarm_config,39,number,2000208 +alarm_config,39,description,SFP-2 supply voltage low warning +alarm_config,39,enabled,1 +alarm_config,39,severity,0 +alarm_config,39,serviceAffecting,2 +alarm_config,39,extNumber,2.0002.08 +alarm_config,39,conditionType,VCC-LOW-WN +alarm_config,39,amoType,SFP.2 +alarm_config,39,on,0 +alarm_config,40,id,40 +alarm_config,40,number,2000209 +alarm_config,40,description,SFP-2 laser bias current high alarm +alarm_config,40,enabled,1 +alarm_config,40,severity,2 +alarm_config,40,serviceAffecting,2 +alarm_config,40,extNumber,2.0002.09 +alarm_config,40,conditionType,LBC-HIGH-ALM +alarm_config,40,amoType,SFP.2 +alarm_config,40,on,0 +alarm_config,41,id,41 +alarm_config,41,number,2000210 +alarm_config,41,description,SFP-2 laser bias current low alarm +alarm_config,41,enabled,1 +alarm_config,41,severity,2 +alarm_config,41,serviceAffecting,2 +alarm_config,41,extNumber,2.0002.10 +alarm_config,41,conditionType,LBC-LOW-ALM +alarm_config,41,amoType,SFP.2 +alarm_config,41,on,0 +alarm_config,42,id,42 +alarm_config,42,number,2000211 +alarm_config,42,description,SFP-2 laser bias current high warning +alarm_config,42,enabled,1 +alarm_config,42,severity,0 +alarm_config,42,serviceAffecting,2 +alarm_config,42,extNumber,2.0002.11 +alarm_config,42,conditionType,LBC-HIGH-WN +alarm_config,42,amoType,SFP.2 +alarm_config,42,on,0 +alarm_config,43,id,43 +alarm_config,43,number,2000212 +alarm_config,43,description,SFP-2 laser bias current low warning +alarm_config,43,enabled,1 +alarm_config,43,severity,0 +alarm_config,43,serviceAffecting,2 +alarm_config,43,extNumber,2.0002.12 +alarm_config,43,conditionType,LBC-LOW-WN +alarm_config,43,amoType,SFP.2 +alarm_config,43,on,0 +alarm_config,44,id,44 +alarm_config,44,number,2000213 +alarm_config,44,description,SFP-2 transmit power high alarm +alarm_config,44,enabled,1 +alarm_config,44,severity,2 +alarm_config,44,serviceAffecting,2 +alarm_config,44,extNumber,2.0002.13 +alarm_config,44,conditionType,TX-PWR-HIGH-ALM +alarm_config,44,amoType,SFP.2 +alarm_config,44,on,0 +alarm_config,45,id,45 +alarm_config,45,number,2000214 +alarm_config,45,description,SFP-2 transmit power low alarm +alarm_config,45,enabled,1 +alarm_config,45,severity,2 +alarm_config,45,serviceAffecting,2 +alarm_config,45,extNumber,2.0002.14 +alarm_config,45,conditionType,TX-PWR-LOW-ALM +alarm_config,45,amoType,SFP.2 +alarm_config,45,on,0 +alarm_config,46,id,46 +alarm_config,46,number,2000215 +alarm_config,46,description,SFP-2 transmit power high warning +alarm_config,46,enabled,1 +alarm_config,46,severity,0 +alarm_config,46,serviceAffecting,2 +alarm_config,46,extNumber,2.0002.15 +alarm_config,46,conditionType,TX-PWR-HIGH-WN +alarm_config,46,amoType,SFP.2 +alarm_config,46,on,0 +alarm_config,47,id,47 +alarm_config,47,number,2000216 +alarm_config,47,description,SFP-2 transmit power low warning +alarm_config,47,enabled,1 +alarm_config,47,severity,0 +alarm_config,47,serviceAffecting,2 +alarm_config,47,extNumber,2.0002.16 +alarm_config,47,conditionType,TX-PWR-LOW-WN +alarm_config,47,amoType,SFP.2 +alarm_config,47,on,0 +alarm_config,48,id,48 +alarm_config,48,number,2000217 +alarm_config,48,description,SFP-2 receive power high alarm +alarm_config,48,enabled,1 +alarm_config,48,severity,2 +alarm_config,48,serviceAffecting,2 +alarm_config,48,extNumber,2.0002.17 +alarm_config,48,conditionType,RX-PWR-HIGH-ALM +alarm_config,48,amoType,SFP.2 +alarm_config,48,on,0 +alarm_config,49,id,49 +alarm_config,49,number,2000218 +alarm_config,49,description,SFP-2 receive power low alarm +alarm_config,49,enabled,1 +alarm_config,49,severity,2 +alarm_config,49,serviceAffecting,2 +alarm_config,49,extNumber,2.0002.18 +alarm_config,49,conditionType,RX-PWR-LOW-ALM +alarm_config,49,amoType,SFP.2 +alarm_config,49,on,0 +alarm_config,50,id,50 +alarm_config,50,number,2000219 +alarm_config,50,description,SFP-2 receive power high warning +alarm_config,50,enabled,1 +alarm_config,50,severity,0 +alarm_config,50,serviceAffecting,2 +alarm_config,50,extNumber,2.0002.19 +alarm_config,50,conditionType,RX-PWR-HIGH-WN +alarm_config,50,amoType,SFP.2 +alarm_config,50,on,0 +alarm_config,51,id,51 +alarm_config,51,number,2000220 +alarm_config,51,description,SFP-2 receive power low warning +alarm_config,51,enabled,1 +alarm_config,51,severity,0 +alarm_config,51,serviceAffecting,2 +alarm_config,51,extNumber,2.0002.20 +alarm_config,51,conditionType,RX-PWR-LOW-WN +alarm_config,51,amoType,SFP.2 +alarm_config,51,on,0 +alarm_config,52,id,52 +alarm_config,52,number,2000221 +alarm_config,52,description,SFP-2 not present +alarm_config,52,enabled,1 +alarm_config,52,severity,2 +alarm_config,52,serviceAffecting,2 +alarm_config,52,extNumber,2.0002.21 +alarm_config,52,conditionType,MOD-NOT-PRESENT +alarm_config,52,amoType,SFP.2 +alarm_config,52,on,0 +alarm_config,53,id,53 +alarm_config,53,number,2000301 +alarm_config,53,description,SFP-3 temperature high alarm +alarm_config,53,enabled,1 +alarm_config,53,severity,2 +alarm_config,53,serviceAffecting,2 +alarm_config,53,extNumber,2.0003.01 +alarm_config,53,conditionType,TEMP-HIGH-ALM +alarm_config,53,amoType,SFP.3 +alarm_config,53,on,0 +alarm_config,54,id,54 +alarm_config,54,number,2000302 +alarm_config,54,description,SFP-3 temperature low alarm +alarm_config,54,enabled,1 +alarm_config,54,severity,2 +alarm_config,54,serviceAffecting,2 +alarm_config,54,extNumber,2.0003.02 +alarm_config,54,conditionType,TEMP-LOW-ALM +alarm_config,54,amoType,SFP.3 +alarm_config,54,on,0 +alarm_config,55,id,55 +alarm_config,55,number,2000303 +alarm_config,55,description,SFP-3 temperature high warning +alarm_config,55,enabled,1 +alarm_config,55,severity,0 +alarm_config,55,serviceAffecting,2 +alarm_config,55,extNumber,2.0003.03 +alarm_config,55,conditionType,TEMP-HIGH-WN +alarm_config,55,amoType,SFP.3 +alarm_config,55,on,0 +alarm_config,56,id,56 +alarm_config,56,number,2000304 +alarm_config,56,description,SFP-3 temperature low warning +alarm_config,56,enabled,1 +alarm_config,56,severity,0 +alarm_config,56,serviceAffecting,2 +alarm_config,56,extNumber,2.0003.04 +alarm_config,56,conditionType,TEMP-LOW-WN +alarm_config,56,amoType,SFP.3 +alarm_config,56,on,0 +alarm_config,57,id,57 +alarm_config,57,number,2000305 +alarm_config,57,description,SFP-3 supply voltage high alarm +alarm_config,57,enabled,1 +alarm_config,57,severity,2 +alarm_config,57,serviceAffecting,2 +alarm_config,57,extNumber,2.0003.05 +alarm_config,57,conditionType,VCC-HIGH-ALM +alarm_config,57,amoType,SFP.3 +alarm_config,57,on,0 +alarm_config,58,id,58 +alarm_config,58,number,2000306 +alarm_config,58,description,SFP-3 supply voltage low alarm +alarm_config,58,enabled,1 +alarm_config,58,severity,2 +alarm_config,58,serviceAffecting,2 +alarm_config,58,extNumber,2.0003.06 +alarm_config,58,conditionType,VCC-LOW-ALM +alarm_config,58,amoType,SFP.3 +alarm_config,58,on,0 +alarm_config,59,id,59 +alarm_config,59,number,2000307 +alarm_config,59,description,SFP-3 supply voltage high warning +alarm_config,59,enabled,1 +alarm_config,59,severity,0 +alarm_config,59,serviceAffecting,2 +alarm_config,59,extNumber,2.0003.07 +alarm_config,59,conditionType,VCC-HIGH-WN +alarm_config,59,amoType,SFP.3 +alarm_config,59,on,0 +alarm_config,60,id,60 +alarm_config,60,number,2000308 +alarm_config,60,description,SFP-3 supply voltage low warning +alarm_config,60,enabled,1 +alarm_config,60,severity,0 +alarm_config,60,serviceAffecting,2 +alarm_config,60,extNumber,2.0003.08 +alarm_config,60,conditionType,VCC-LOW-WN +alarm_config,60,amoType,SFP.3 +alarm_config,60,on,0 +alarm_config,61,id,61 +alarm_config,61,number,2000309 +alarm_config,61,description,SFP-3 laser bias current high alarm +alarm_config,61,enabled,1 +alarm_config,61,severity,2 +alarm_config,61,serviceAffecting,2 +alarm_config,61,extNumber,2.0003.09 +alarm_config,61,conditionType,LBC-HIGH-ALM +alarm_config,61,amoType,SFP.3 +alarm_config,61,on,0 +alarm_config,62,id,62 +alarm_config,62,number,2000310 +alarm_config,62,description,SFP-3 laser bias current low alarm +alarm_config,62,enabled,1 +alarm_config,62,severity,2 +alarm_config,62,serviceAffecting,2 +alarm_config,62,extNumber,2.0003.10 +alarm_config,62,conditionType,LBC-LOW-ALM +alarm_config,62,amoType,SFP.3 +alarm_config,62,on,0 +alarm_config,63,id,63 +alarm_config,63,number,2000311 +alarm_config,63,description,SFP-3 laser bias current high warning +alarm_config,63,enabled,1 +alarm_config,63,severity,0 +alarm_config,63,serviceAffecting,2 +alarm_config,63,extNumber,2.0003.11 +alarm_config,63,conditionType,LBC-HIGH-WN +alarm_config,63,amoType,SFP.3 +alarm_config,63,on,0 +alarm_config,64,id,64 +alarm_config,64,number,2000312 +alarm_config,64,description,SFP-3 laser bias current low warning +alarm_config,64,enabled,1 +alarm_config,64,severity,0 +alarm_config,64,serviceAffecting,2 +alarm_config,64,extNumber,2.0003.12 +alarm_config,64,conditionType,LBC-LOW-WN +alarm_config,64,amoType,SFP.3 +alarm_config,64,on,0 +alarm_config,65,id,65 +alarm_config,65,number,2000313 +alarm_config,65,description,SFP-3 transmit power high alarm +alarm_config,65,enabled,1 +alarm_config,65,severity,2 +alarm_config,65,serviceAffecting,2 +alarm_config,65,extNumber,2.0003.13 +alarm_config,65,conditionType,TX-PWR-HIGH-ALM +alarm_config,65,amoType,SFP.3 +alarm_config,65,on,0 +alarm_config,66,id,66 +alarm_config,66,number,2000314 +alarm_config,66,description,SFP-3 transmit power low alarm +alarm_config,66,enabled,1 +alarm_config,66,severity,2 +alarm_config,66,serviceAffecting,2 +alarm_config,66,extNumber,2.0003.14 +alarm_config,66,conditionType,TX-PWR-LOW-ALM +alarm_config,66,amoType,SFP.3 +alarm_config,66,on,0 +alarm_config,67,id,67 +alarm_config,67,number,2000315 +alarm_config,67,description,SFP-3 transmit power high warning +alarm_config,67,enabled,1 +alarm_config,67,severity,0 +alarm_config,67,serviceAffecting,2 +alarm_config,67,extNumber,2.0003.15 +alarm_config,67,conditionType,TX-PWR-HIGH-WN +alarm_config,67,amoType,SFP.3 +alarm_config,67,on,0 +alarm_config,68,id,68 +alarm_config,68,number,2000316 +alarm_config,68,description,SFP-3 transmit power low warning +alarm_config,68,enabled,1 +alarm_config,68,severity,0 +alarm_config,68,serviceAffecting,2 +alarm_config,68,extNumber,2.0003.16 +alarm_config,68,conditionType,TX-PWR-LOW-WN +alarm_config,68,amoType,SFP.3 +alarm_config,68,on,0 +alarm_config,69,id,69 +alarm_config,69,number,2000317 +alarm_config,69,description,SFP-3 receive power high alarm +alarm_config,69,enabled,1 +alarm_config,69,severity,2 +alarm_config,69,serviceAffecting,2 +alarm_config,69,extNumber,2.0003.17 +alarm_config,69,conditionType,RX-PWR-HIGH-ALM +alarm_config,69,amoType,SFP.3 +alarm_config,69,on,0 +alarm_config,70,id,70 +alarm_config,70,number,2000318 +alarm_config,70,description,SFP-3 receive power low alarm +alarm_config,70,enabled,1 +alarm_config,70,severity,2 +alarm_config,70,serviceAffecting,2 +alarm_config,70,extNumber,2.0003.18 +alarm_config,70,conditionType,RX-PWR-LOW-ALM +alarm_config,70,amoType,SFP.3 +alarm_config,70,on,0 +alarm_config,71,id,71 +alarm_config,71,number,2000319 +alarm_config,71,description,SFP-3 receive power high warning +alarm_config,71,enabled,1 +alarm_config,71,severity,0 +alarm_config,71,serviceAffecting,2 +alarm_config,71,extNumber,2.0003.19 +alarm_config,71,conditionType,RX-PWR-HIGH-WN +alarm_config,71,amoType,SFP.3 +alarm_config,71,on,0 +alarm_config,72,id,72 +alarm_config,72,number,2000320 +alarm_config,72,description,SFP-3 receive power low warning +alarm_config,72,enabled,1 +alarm_config,72,severity,0 +alarm_config,72,serviceAffecting,2 +alarm_config,72,extNumber,2.0003.20 +alarm_config,72,conditionType,RX-PWR-LOW-WN +alarm_config,72,amoType,SFP.3 +alarm_config,72,on,0 +alarm_config,73,id,73 +alarm_config,73,number,2000321 +alarm_config,73,description,SFP-3 not present +alarm_config,73,enabled,1 +alarm_config,73,severity,2 +alarm_config,73,serviceAffecting,2 +alarm_config,73,extNumber,2.0003.21 +alarm_config,73,conditionType,MOD-NOT-PRESENT +alarm_config,73,amoType,SFP.3 +alarm_config,73,on,0 +alarm_config,74,id,74 +alarm_config,74,number,2000401 +alarm_config,74,description,SFP-4 temperature high alarm +alarm_config,74,enabled,1 +alarm_config,74,severity,2 +alarm_config,74,serviceAffecting,2 +alarm_config,74,extNumber,2.0004.01 +alarm_config,74,conditionType,TEMP-HIGH-ALM +alarm_config,74,amoType,SFP.4 +alarm_config,74,on,0 +alarm_config,75,id,75 +alarm_config,75,number,2000402 +alarm_config,75,description,SFP-4 temperature low alarm +alarm_config,75,enabled,1 +alarm_config,75,severity,2 +alarm_config,75,serviceAffecting,2 +alarm_config,75,extNumber,2.0004.02 +alarm_config,75,conditionType,TEMP-LOW-ALM +alarm_config,75,amoType,SFP.4 +alarm_config,75,on,0 +alarm_config,76,id,76 +alarm_config,76,number,2000403 +alarm_config,76,description,SFP-4 temperature high warning +alarm_config,76,enabled,1 +alarm_config,76,severity,0 +alarm_config,76,serviceAffecting,2 +alarm_config,76,extNumber,2.0004.03 +alarm_config,76,conditionType,TEMP-HIGH-WN +alarm_config,76,amoType,SFP.4 +alarm_config,76,on,0 +alarm_config,77,id,77 +alarm_config,77,number,2000404 +alarm_config,77,description,SFP-4 temperature low warning +alarm_config,77,enabled,1 +alarm_config,77,severity,0 +alarm_config,77,serviceAffecting,2 +alarm_config,77,extNumber,2.0004.04 +alarm_config,77,conditionType,TEMP-LOW-WN +alarm_config,77,amoType,SFP.4 +alarm_config,77,on,0 +alarm_config,78,id,78 +alarm_config,78,number,2000405 +alarm_config,78,description,SFP-4 supply voltage high alarm +alarm_config,78,enabled,1 +alarm_config,78,severity,2 +alarm_config,78,serviceAffecting,2 +alarm_config,78,extNumber,2.0004.05 +alarm_config,78,conditionType,VCC-HIGH-ALM +alarm_config,78,amoType,SFP.4 +alarm_config,78,on,0 +alarm_config,79,id,79 +alarm_config,79,number,2000406 +alarm_config,79,description,SFP-4 supply voltage low alarm +alarm_config,79,enabled,1 +alarm_config,79,severity,2 +alarm_config,79,serviceAffecting,2 +alarm_config,79,extNumber,2.0004.06 +alarm_config,79,conditionType,VCC-LOW-ALM +alarm_config,79,amoType,SFP.4 +alarm_config,79,on,0 +alarm_config,80,id,80 +alarm_config,80,number,2000407 +alarm_config,80,description,SFP-4 supply voltage high warning +alarm_config,80,enabled,1 +alarm_config,80,severity,0 +alarm_config,80,serviceAffecting,2 +alarm_config,80,extNumber,2.0004.07 +alarm_config,80,conditionType,VCC-HIGH-WN +alarm_config,80,amoType,SFP.4 +alarm_config,80,on,0 +alarm_config,81,id,81 +alarm_config,81,number,2000408 +alarm_config,81,description,SFP-4 supply voltage low warning +alarm_config,81,enabled,1 +alarm_config,81,severity,0 +alarm_config,81,serviceAffecting,2 +alarm_config,81,extNumber,2.0004.08 +alarm_config,81,conditionType,VCC-LOW-WN +alarm_config,81,amoType,SFP.4 +alarm_config,81,on,0 +alarm_config,82,id,82 +alarm_config,82,number,2000409 +alarm_config,82,description,SFP-4 laser bias current high alarm +alarm_config,82,enabled,1 +alarm_config,82,severity,2 +alarm_config,82,serviceAffecting,2 +alarm_config,82,extNumber,2.0004.09 +alarm_config,82,conditionType,LBC-HIGH-ALM +alarm_config,82,amoType,SFP.4 +alarm_config,82,on,0 +alarm_config,83,id,83 +alarm_config,83,number,2000410 +alarm_config,83,description,SFP-4 laser bias current low alarm +alarm_config,83,enabled,1 +alarm_config,83,severity,2 +alarm_config,83,serviceAffecting,2 +alarm_config,83,extNumber,2.0004.10 +alarm_config,83,conditionType,LBC-LOW-ALM +alarm_config,83,amoType,SFP.4 +alarm_config,83,on,0 +alarm_config,84,id,84 +alarm_config,84,number,2000411 +alarm_config,84,description,SFP-4 laser bias current high warning +alarm_config,84,enabled,1 +alarm_config,84,severity,0 +alarm_config,84,serviceAffecting,2 +alarm_config,84,extNumber,2.0004.11 +alarm_config,84,conditionType,LBC-HIGH-WN +alarm_config,84,amoType,SFP.4 +alarm_config,84,on,0 +alarm_config,85,id,85 +alarm_config,85,number,2000412 +alarm_config,85,description,SFP-4 laser bias current low warning +alarm_config,85,enabled,1 +alarm_config,85,severity,0 +alarm_config,85,serviceAffecting,2 +alarm_config,85,extNumber,2.0004.12 +alarm_config,85,conditionType,LBC-LOW-WN +alarm_config,85,amoType,SFP.4 +alarm_config,85,on,0 +alarm_config,86,id,86 +alarm_config,86,number,2000413 +alarm_config,86,description,SFP-4 transmit power high alarm +alarm_config,86,enabled,1 +alarm_config,86,severity,2 +alarm_config,86,serviceAffecting,2 +alarm_config,86,extNumber,2.0004.13 +alarm_config,86,conditionType,TX-PWR-HIGH-ALM +alarm_config,86,amoType,SFP.4 +alarm_config,86,on,0 +alarm_config,87,id,87 +alarm_config,87,number,2000414 +alarm_config,87,description,SFP-4 transmit power low alarm +alarm_config,87,enabled,1 +alarm_config,87,severity,2 +alarm_config,87,serviceAffecting,2 +alarm_config,87,extNumber,2.0004.14 +alarm_config,87,conditionType,TX-PWR-LOW-ALM +alarm_config,87,amoType,SFP.4 +alarm_config,87,on,0 +alarm_config,88,id,88 +alarm_config,88,number,2000415 +alarm_config,88,description,SFP-4 transmit power high warning +alarm_config,88,enabled,1 +alarm_config,88,severity,0 +alarm_config,88,serviceAffecting,2 +alarm_config,88,extNumber,2.0004.15 +alarm_config,88,conditionType,TX-PWR-HIGH-WN +alarm_config,88,amoType,SFP.4 +alarm_config,88,on,0 +alarm_config,89,id,89 +alarm_config,89,number,2000416 +alarm_config,89,description,SFP-4 transmit power low warning +alarm_config,89,enabled,1 +alarm_config,89,severity,0 +alarm_config,89,serviceAffecting,2 +alarm_config,89,extNumber,2.0004.16 +alarm_config,89,conditionType,TX-PWR-LOW-WN +alarm_config,89,amoType,SFP.4 +alarm_config,89,on,0 +alarm_config,90,id,90 +alarm_config,90,number,2000417 +alarm_config,90,description,SFP-4 receive power high alarm +alarm_config,90,enabled,1 +alarm_config,90,severity,2 +alarm_config,90,serviceAffecting,2 +alarm_config,90,extNumber,2.0004.17 +alarm_config,90,conditionType,RX-PWR-HIGH-ALM +alarm_config,90,amoType,SFP.4 +alarm_config,90,on,0 +alarm_config,91,id,91 +alarm_config,91,number,2000418 +alarm_config,91,description,SFP-4 receive power low alarm +alarm_config,91,enabled,1 +alarm_config,91,severity,2 +alarm_config,91,serviceAffecting,2 +alarm_config,91,extNumber,2.0004.18 +alarm_config,91,conditionType,RX-PWR-LOW-ALM +alarm_config,91,amoType,SFP.4 +alarm_config,91,on,0 +alarm_config,92,id,92 +alarm_config,92,number,2000419 +alarm_config,92,description,SFP-4 receive power high warning +alarm_config,92,enabled,1 +alarm_config,92,severity,0 +alarm_config,92,serviceAffecting,2 +alarm_config,92,extNumber,2.0004.19 +alarm_config,92,conditionType,RX-PWR-HIGH-WN +alarm_config,92,amoType,SFP.4 +alarm_config,92,on,0 +alarm_config,93,id,93 +alarm_config,93,number,2000420 +alarm_config,93,description,SFP-4 receive power low warning +alarm_config,93,enabled,1 +alarm_config,93,severity,0 +alarm_config,93,serviceAffecting,2 +alarm_config,93,extNumber,2.0004.20 +alarm_config,93,conditionType,RX-PWR-LOW-WN +alarm_config,93,amoType,SFP.4 +alarm_config,93,on,0 +alarm_config,94,id,94 +alarm_config,94,number,2000421 +alarm_config,94,description,SFP-4 not present +alarm_config,94,enabled,1 +alarm_config,94,severity,2 +alarm_config,94,serviceAffecting,2 +alarm_config,94,extNumber,2.0004.21 +alarm_config,94,conditionType,MOD-NOT-PRESENT +alarm_config,94,amoType,SFP.4 +alarm_config,94,on,0 +alarm_config,95,id,95 +alarm_config,95,number,1000101 +alarm_config,95,description,Link down on EVEN_VLAN_UPLINK port +alarm_config,95,enabled,1 +alarm_config,95,severity,2 +alarm_config,95,serviceAffecting,2 +alarm_config,95,extNumber,1.0001.01 +alarm_config,95,conditionType,LINK-DOWN +alarm_config,95,amoType,PORT.EVEN_VLAN_UPLINK +alarm_config,95,on,0 +alarm_config,96,id,96 +alarm_config,96,number,1000102 +alarm_config,96,description,Loopback on port EVEN_VLAN_UPLINK +alarm_config,96,enabled,1 +alarm_config,96,severity,0 +alarm_config,96,serviceAffecting,2 +alarm_config,96,extNumber,1.0001.02 +alarm_config,96,conditionType,OAM-LOOPBACK +alarm_config,96,amoType,PORT.EVEN_VLAN_UPLINK +alarm_config,96,on,0 +alarm_config,97,id,97 +alarm_config,97,number,1000104 +alarm_config,97,description,Fault propagation caused link down on port EVEN_VLAN_UPLINK +alarm_config,97,enabled,1 +alarm_config,97,severity,2 +alarm_config,97,serviceAffecting,1 +alarm_config,97,extNumber,1.0001.04 +alarm_config,97,conditionType,LINK-DOWN-FP +alarm_config,97,amoType,PORT.EVEN_VLAN_UPLINK +alarm_config,97,on,0 +alarm_config,98,id,98 +alarm_config,98,number,1000107 +alarm_config,98,description,SA caused link down on port EVEN_VLAN_UPLINK +alarm_config,98,enabled,1 +alarm_config,98,severity,2 +alarm_config,98,serviceAffecting,1 +alarm_config,98,extNumber,1.0001.07 +alarm_config,98,conditionType,LINK-DOWN-SA +alarm_config,98,amoType,PORT.EVEN_VLAN_UPLINK +alarm_config,98,on,0 +alarm_config,99,id,99 +alarm_config,99,number,1000201 +alarm_config,99,description,Link down on ODD_VLAN_UPLINK port +alarm_config,99,enabled,1 +alarm_config,99,severity,2 +alarm_config,99,serviceAffecting,2 +alarm_config,99,extNumber,1.0002.01 +alarm_config,99,conditionType,LINK-DOWN +alarm_config,99,amoType,PORT.ODD_VLAN_UPLINK +alarm_config,99,on,0 +alarm_config,100,id,100 +alarm_config,100,number,1000202 +alarm_config,100,description,Loopback on port ODD_VLAN_UPLINK +alarm_config,100,enabled,1 +alarm_config,100,severity,0 +alarm_config,100,serviceAffecting,2 +alarm_config,100,extNumber,1.0002.02 +alarm_config,100,conditionType,OAM-LOOPBACK +alarm_config,100,amoType,PORT.ODD_VLAN_UPLINK +alarm_config,100,on,0 +alarm_config,101,id,101 +alarm_config,101,number,1000204 +alarm_config,101,description,Fault propagation caused link down on port ODD_VLAN_UPLINK +alarm_config,101,enabled,1 +alarm_config,101,severity,2 +alarm_config,101,serviceAffecting,1 +alarm_config,101,extNumber,1.0002.04 +alarm_config,101,conditionType,LINK-DOWN-FP +alarm_config,101,amoType,PORT.ODD_VLAN_UPLINK +alarm_config,101,on,0 +alarm_config,102,id,102 +alarm_config,102,number,1000207 +alarm_config,102,description,SA caused link down on port ODD_VLAN_UPLINK +alarm_config,102,enabled,1 +alarm_config,102,severity,2 +alarm_config,102,serviceAffecting,1 +alarm_config,102,extNumber,1.0002.07 +alarm_config,102,conditionType,LINK-DOWN-SA +alarm_config,102,amoType,PORT.ODD_VLAN_UPLINK +alarm_config,102,on,0 +alarm_config,103,id,103 +alarm_config,103,number,1000301 +alarm_config,103,description,Link down on EVEN_VLAN_DOWNLIN port +alarm_config,103,enabled,1 +alarm_config,103,severity,2 +alarm_config,103,serviceAffecting,2 +alarm_config,103,extNumber,1.0003.01 +alarm_config,103,conditionType,LINK-DOWN +alarm_config,103,amoType,PORT.EVEN_VLAN_DOWNLIN +alarm_config,103,on,0 +alarm_config,104,id,104 +alarm_config,104,number,1000302 +alarm_config,104,description,Loopback on port EVEN_VLAN_DOWNLIN +alarm_config,104,enabled,1 +alarm_config,104,severity,0 +alarm_config,104,serviceAffecting,2 +alarm_config,104,extNumber,1.0003.02 +alarm_config,104,conditionType,OAM-LOOPBACK +alarm_config,104,amoType,PORT.EVEN_VLAN_DOWNLIN +alarm_config,104,on,0 +alarm_config,105,id,105 +alarm_config,105,number,1000304 +alarm_config,105,description,Fault propagation caused link down on port EVEN_VLAN_DOWNLIN +alarm_config,105,enabled,1 +alarm_config,105,severity,2 +alarm_config,105,serviceAffecting,1 +alarm_config,105,extNumber,1.0003.04 +alarm_config,105,conditionType,LINK-DOWN-FP +alarm_config,105,amoType,PORT.EVEN_VLAN_DOWNLIN +alarm_config,105,on,0 +alarm_config,106,id,106 +alarm_config,106,number,1000307 +alarm_config,106,description,SA caused link down on port EVEN_VLAN_DOWNLIN +alarm_config,106,enabled,1 +alarm_config,106,severity,2 +alarm_config,106,serviceAffecting,1 +alarm_config,106,extNumber,1.0003.07 +alarm_config,106,conditionType,LINK-DOWN-SA +alarm_config,106,amoType,PORT.EVEN_VLAN_DOWNLIN +alarm_config,106,on,0 +alarm_config,107,id,107 +alarm_config,107,number,1000401 +alarm_config,107,description,Link down on ODD_VLAN_DOWNLINK port +alarm_config,107,enabled,1 +alarm_config,107,severity,2 +alarm_config,107,serviceAffecting,2 +alarm_config,107,extNumber,1.0004.01 +alarm_config,107,conditionType,LINK-DOWN +alarm_config,107,amoType,PORT.ODD_VLAN_DOWNLINK +alarm_config,107,on,0 +alarm_config,108,id,108 +alarm_config,108,number,1000402 +alarm_config,108,description,Loopback on port ODD_VLAN_DOWNLINK +alarm_config,108,enabled,1 +alarm_config,108,severity,0 +alarm_config,108,serviceAffecting,2 +alarm_config,108,extNumber,1.0004.02 +alarm_config,108,conditionType,OAM-LOOPBACK +alarm_config,108,amoType,PORT.ODD_VLAN_DOWNLINK +alarm_config,108,on,0 +alarm_config,109,id,109 +alarm_config,109,number,1000404 +alarm_config,109,description,Fault propagation caused link down on port ODD_VLAN_DOWNLINK +alarm_config,109,enabled,1 +alarm_config,109,severity,2 +alarm_config,109,serviceAffecting,1 +alarm_config,109,extNumber,1.0004.04 +alarm_config,109,conditionType,LINK-DOWN-FP +alarm_config,109,amoType,PORT.ODD_VLAN_DOWNLINK +alarm_config,109,on,0 +alarm_config,110,id,110 +alarm_config,110,number,1000407 +alarm_config,110,description,SA caused link down on port ODD_VLAN_DOWNLINK +alarm_config,110,enabled,1 +alarm_config,110,severity,2 +alarm_config,110,serviceAffecting,1 +alarm_config,110,extNumber,1.0004.07 +alarm_config,110,conditionType,LINK-DOWN-SA +alarm_config,110,amoType,PORT.ODD_VLAN_DOWNLINK +alarm_config,110,on,0 +alarm_config,111,id,111 +alarm_config,111,number,1000501 +alarm_config,111,description,Link down on Management port +alarm_config,111,enabled,2 +alarm_config,111,severity,2 +alarm_config,111,serviceAffecting,2 +alarm_config,111,extNumber,1.0005.01 +alarm_config,111,conditionType,LINK-DOWN +alarm_config,111,amoType,PORT.Management +alarm_config,111,on,0 +alarm_config,112,id,112 +alarm_config,112,number,1000601 +alarm_config,112,description,Link down on LAG-1 port +alarm_config,112,enabled,1 +alarm_config,112,severity,2 +alarm_config,112,serviceAffecting,2 +alarm_config,112,extNumber,1.0006.01 +alarm_config,112,conditionType,LINK-DOWN +alarm_config,112,amoType,PORT.LAG-1 +alarm_config,112,on,0 +alarm_config,113,id,113 +alarm_config,113,number,1000602 +alarm_config,113,description,Loopback on port LAG-1 +alarm_config,113,enabled,1 +alarm_config,113,severity,0 +alarm_config,113,serviceAffecting,2 +alarm_config,113,extNumber,1.0006.02 +alarm_config,113,conditionType,OAM-LOOPBACK +alarm_config,113,amoType,PORT.LAG-1 +alarm_config,113,on,0 +alarm_config,114,id,114 +alarm_config,114,number,1000604 +alarm_config,114,description,Fault propagation caused link down on port LAG-1 +alarm_config,114,enabled,1 +alarm_config,114,severity,2 +alarm_config,114,serviceAffecting,1 +alarm_config,114,extNumber,1.0006.04 +alarm_config,114,conditionType,LINK-DOWN-FP +alarm_config,114,amoType,PORT.LAG-1 +alarm_config,114,on,0 +alarm_config,115,id,115 +alarm_config,115,number,1000603 +alarm_config,115,description,Sub-port speed mismatch on port LAG-1 +alarm_config,115,enabled,1 +alarm_config,115,severity,2 +alarm_config,115,serviceAffecting,2 +alarm_config,115,extNumber,1.0006.03 +alarm_config,115,conditionType,SPEED-MISMATCH +alarm_config,115,amoType,PORT.LAG-1 +alarm_config,115,on,0 +alarm_config,116,id,116 +alarm_config,116,number,1000701 +alarm_config,116,description,Link down on LAG-2 port +alarm_config,116,enabled,2 +alarm_config,116,severity,2 +alarm_config,116,serviceAffecting,2 +alarm_config,116,extNumber,1.0007.01 +alarm_config,116,conditionType,LINK-DOWN +alarm_config,116,amoType,PORT.LAG-2 +alarm_config,116,on,0 +alarm_config,117,id,117 +alarm_config,117,number,1000702 +alarm_config,117,description,Loopback on port LAG-2 +alarm_config,117,enabled,1 +alarm_config,117,severity,0 +alarm_config,117,serviceAffecting,2 +alarm_config,117,extNumber,1.0007.02 +alarm_config,117,conditionType,OAM-LOOPBACK +alarm_config,117,amoType,PORT.LAG-2 +alarm_config,117,on,0 +alarm_config,118,id,118 +alarm_config,118,number,1000704 +alarm_config,118,description,Fault propagation caused link down on port LAG-2 +alarm_config,118,enabled,1 +alarm_config,118,severity,2 +alarm_config,118,serviceAffecting,1 +alarm_config,118,extNumber,1.0007.04 +alarm_config,118,conditionType,LINK-DOWN-FP +alarm_config,118,amoType,PORT.LAG-2 +alarm_config,118,on,0 +alarm_config,119,id,119 +alarm_config,119,number,1000703 +alarm_config,119,description,Sub-port speed mismatch on port LAG-2 +alarm_config,119,enabled,1 +alarm_config,119,severity,2 +alarm_config,119,serviceAffecting,2 +alarm_config,119,extNumber,1.0007.03 +alarm_config,119,conditionType,SPEED-MISMATCH +alarm_config,119,amoType,PORT.LAG-2 +alarm_config,119,on,0 +alarm_config,120,id,120 +alarm_config,120,number,8000006 +alarm_config,120,description,Input 1 Active +alarm_config,120,enabled,1 +alarm_config,120,severity,0 +alarm_config,120,serviceAffecting,2 +alarm_config,120,extNumber,8.0000.06 +alarm_config,120,conditionType,DRYCONTACT-IN1 +alarm_config,120,amoType,ENV.DRYCONTACT-IN1 +alarm_config,120,on,0 +alarm_config,121,id,121 +alarm_config,121,number,8000007 +alarm_config,121,description,Input 2 Active +alarm_config,121,enabled,1 +alarm_config,121,severity,0 +alarm_config,121,serviceAffecting,2 +alarm_config,121,extNumber,8.0000.07 +alarm_config,121,conditionType,DRYCONTACT-IN2 +alarm_config,121,amoType,ENV.DRYCONTACT-IN2 +alarm_config,121,on,0 +alarm_config,122,id,122 +alarm_config,122,number,8000080 +alarm_config,122,description,Troubleshooting tool is running +alarm_config,122,enabled,1 +alarm_config,122,severity,2 +alarm_config,122,serviceAffecting,2 +alarm_config,122,extNumber,8.0000.80 +alarm_config,122,conditionType,TOOL-DIAG-RUNNING +alarm_config,122,amoType,NE +alarm_config,122,on,0 +alarm_config,123,id,123 +alarm_config,123,number,7000101 +alarm_config,123,description,NTP client lost server communication +alarm_config,123,enabled,1 +alarm_config,123,severity,2 +alarm_config,123,serviceAffecting,2 +alarm_config,123,extNumber,7.0001.01 +alarm_config,123,conditionType,NTP-STATUS +alarm_config,123,amoType,PROTOCOL.NTP +alarm_config,123,on,0 +alarm_config,124,id,124 +alarm_config,124,number,7000102 +alarm_config,124,description,NTP Time-of-day synchronization - May affect one-way delay measurements +alarm_config,124,enabled,1 +alarm_config,124,severity,2 +alarm_config,124,serviceAffecting,2 +alarm_config,124,extNumber,7.0001.02 +alarm_config,124,conditionType,NTP-LOST-SYNCH +alarm_config,124,amoType,PROTOCOL.NTP +alarm_config,124,on,0 +alarm_config,125,id,125 +alarm_config,125,number,7000106 +alarm_config,125,description,NTP client used interface without timestamp capability +alarm_config,125,enabled,1 +alarm_config,125,severity,2 +alarm_config,125,serviceAffecting,2 +alarm_config,125,extNumber,7.0001.06 +alarm_config,125,conditionType,NTP-CAPABILITY +alarm_config,125,amoType,PROTOCOL.NTP +alarm_config,125,on,0 +alarm_config,126,id,126 +alarm_config,126,number,7000108 +alarm_config,126,description,Remote NTP server used an interface without timestamp capability +alarm_config,126,enabled,1 +alarm_config,126,severity,2 +alarm_config,126,serviceAffecting,2 +alarm_config,126,extNumber,7.0001.08 +alarm_config,126,conditionType,NTP-RMT-CAPABILITY +alarm_config,126,amoType,PROTOCOL.NTP +alarm_config,126,on,0 +alarm_config,127,id,127 +alarm_config,127,number,7000104 +alarm_config,127,description,PTP client failure communication with server +alarm_config,127,enabled,1 +alarm_config,127,severity,2 +alarm_config,127,serviceAffecting,2 +alarm_config,127,extNumber,7.0001.04 +alarm_config,127,conditionType,PTP-STATUS +alarm_config,127,amoType,PROTOCOL.PTP +alarm_config,127,on,0 +alarm_config,128,id,128 +alarm_config,128,number,7000105 +alarm_config,128,description,PTP Time-of-day synchronization - May affect one-way delay measurements +alarm_config,128,enabled,1 +alarm_config,128,severity,2 +alarm_config,128,serviceAffecting,2 +alarm_config,128,extNumber,7.0001.05 +alarm_config,128,conditionType,PTP-LOST-SYNCH +alarm_config,128,amoType,PROTOCOL.PTP +alarm_config,128,on,0 +alarm_config,129,id,129 +alarm_config,129,number,7000107 +alarm_config,129,description,PTP client used interface without timestamp capability +alarm_config,129,enabled,1 +alarm_config,129,severity,2 +alarm_config,129,serviceAffecting,2 +alarm_config,129,extNumber,7.0001.07 +alarm_config,129,conditionType,PTP-CAPABILITY +alarm_config,129,amoType,PROTOCOL.PTP +alarm_config,129,on,0 +alarm_config,130,id,130 +alarm_config,130,number,18000101 +alarm_config,130,description,Inventory entries list is almost full +alarm_config,130,enabled,1 +alarm_config,130,severity,1 +alarm_config,130,serviceAffecting,2 +alarm_config,130,extNumber,18.0001.01 +alarm_config,130,conditionType,INVENTORY-ALMOST-FULL +alarm_config,130,amoType,INVENTORY +alarm_config,130,on,0 +alarm_config,131,id,131 +alarm_config,131,number,18000102 +alarm_config,131,description,Inventory entries list is full +alarm_config,131,enabled,1 +alarm_config,131,severity,2 +alarm_config,131,serviceAffecting,2 +alarm_config,131,extNumber,18.0001.02 +alarm_config,131,conditionType,INVENTORY-FULL +alarm_config,131,amoType,INVENTORY +alarm_config,131,on,0 +alarm_config,132,id,132 +alarm_config,132,number,3000101 +alarm_config,132,description,PAA_Site573_VL2216 PAA_CC_ALERT +alarm_config,132,enabled,1 +alarm_config,132,severity,1 +alarm_config,132,serviceAffecting,2 +alarm_config,132,extNumber,3.0001.01 +alarm_config,132,conditionType,CONNECT-LOSS +alarm_config,132,amoType,PAA.PAA_Site573_VL2216 +alarm_config,132,on,0 +alarm_config,133,id,133 +alarm_config,133,number,3000102 +alarm_config,133,description,PAA_Site573_VL2216 PAA_PL_ALERT +alarm_config,133,enabled,1 +alarm_config,133,severity,1 +alarm_config,133,serviceAffecting,2 +alarm_config,133,extNumber,3.0001.02 +alarm_config,133,conditionType,PKT-LOSS +alarm_config,133,amoType,PAA.PAA_Site573_VL2216 +alarm_config,133,on,0 +alarm_config,134,id,134 +alarm_config,134,number,3000103 +alarm_config,134,description,PAA_Site573_VL2216 PAA_OW_DELAY_ALERT +alarm_config,134,enabled,1 +alarm_config,134,severity,1 +alarm_config,134,serviceAffecting,2 +alarm_config,134,extNumber,3.0001.03 +alarm_config,134,conditionType,OW-DELAY +alarm_config,134,amoType,PAA.PAA_Site573_VL2216 +alarm_config,134,on,0 +alarm_config,135,id,135 +alarm_config,135,number,3000104 +alarm_config,135,description,PAA_Site573_VL2216 PAA_OW_AVG_DELAY_ALERT +alarm_config,135,enabled,1 +alarm_config,135,severity,1 +alarm_config,135,serviceAffecting,2 +alarm_config,135,extNumber,3.0001.04 +alarm_config,135,conditionType,OW-AVG-DELAY +alarm_config,135,amoType,PAA.PAA_Site573_VL2216 +alarm_config,135,on,0 +alarm_config,136,id,136 +alarm_config,136,number,3000105 +alarm_config,136,description,PAA_Site573_VL2216 PAA_OW_DV_ALERT +alarm_config,136,enabled,1 +alarm_config,136,severity,1 +alarm_config,136,serviceAffecting,2 +alarm_config,136,extNumber,3.0001.05 +alarm_config,136,conditionType,OW-DV +alarm_config,136,amoType,PAA.PAA_Site573_VL2216 +alarm_config,136,on,0 +alarm_config,137,id,137 +alarm_config,137,number,3000106 +alarm_config,137,description,PAA_Site573_VL2216 PAA_OW_AVG_DV_ALERT +alarm_config,137,enabled,1 +alarm_config,137,severity,1 +alarm_config,137,serviceAffecting,2 +alarm_config,137,extNumber,3.0001.06 +alarm_config,137,conditionType,OW-AVG-DV +alarm_config,137,amoType,PAA.PAA_Site573_VL2216 +alarm_config,137,on,0 +alarm_config,138,id,138 +alarm_config,138,number,3000107 +alarm_config,138,description,PAA_Site573_VL2216 PAA_TW_DELAY_ALERT +alarm_config,138,enabled,1 +alarm_config,138,severity,1 +alarm_config,138,serviceAffecting,2 +alarm_config,138,extNumber,3.0001.07 +alarm_config,138,conditionType,TW-DELAY +alarm_config,138,amoType,PAA.PAA_Site573_VL2216 +alarm_config,138,on,0 +alarm_config,139,id,139 +alarm_config,139,number,3000108 +alarm_config,139,description,PAA_Site573_VL2216 PAA_TW_AVG_DELAY_ALERT +alarm_config,139,enabled,1 +alarm_config,139,severity,1 +alarm_config,139,serviceAffecting,2 +alarm_config,139,extNumber,3.0001.08 +alarm_config,139,conditionType,TW-AVG-DELAY +alarm_config,139,amoType,PAA.PAA_Site573_VL2216 +alarm_config,139,on,0 +alarm_config,140,id,140 +alarm_config,140,number,3000109 +alarm_config,140,description,PAA_Site573_VL2216 PAA_TW_DV_ALERT +alarm_config,140,enabled,1 +alarm_config,140,severity,1 +alarm_config,140,serviceAffecting,2 +alarm_config,140,extNumber,3.0001.09 +alarm_config,140,conditionType,TW-DV +alarm_config,140,amoType,PAA.PAA_Site573_VL2216 +alarm_config,140,on,0 +alarm_config,141,id,141 +alarm_config,141,number,3000110 +alarm_config,141,description,PAA_Site573_VL2216 PAA_TW_AVG_DV_ALERT +alarm_config,141,enabled,1 +alarm_config,141,severity,1 +alarm_config,141,serviceAffecting,2 +alarm_config,141,extNumber,3.0001.10 +alarm_config,141,conditionType,TW-AVG-DV +alarm_config,141,amoType,PAA.PAA_Site573_VL2216 +alarm_config,141,on,0 +alarm_config,142,id,142 +alarm_config,142,number,3000111 +alarm_config,142,description,PAA_Site573_VL2216 PAA_VLAN1_ID_ALERT +alarm_config,142,enabled,1 +alarm_config,142,severity,1 +alarm_config,142,serviceAffecting,2 +alarm_config,142,extNumber,3.0001.11 +alarm_config,142,conditionType,VLAN1-ID +alarm_config,142,amoType,PAA.PAA_Site573_VL2216 +alarm_config,142,on,0 +alarm_config,143,id,143 +alarm_config,143,number,3000112 +alarm_config,143,description,PAA_Site573_VL2216 PAA_VLAN2_ID_ALERT +alarm_config,143,enabled,1 +alarm_config,143,severity,1 +alarm_config,143,serviceAffecting,2 +alarm_config,143,extNumber,3.0001.12 +alarm_config,143,conditionType,VLAN2-ID +alarm_config,143,amoType,PAA.PAA_Site573_VL2216 +alarm_config,143,on,0 +alarm_config,144,id,144 +alarm_config,144,number,3000113 +alarm_config,144,description,PAA_Site573_VL2216 PAA_VLAN1_PRIO_ALERT +alarm_config,144,enabled,1 +alarm_config,144,severity,1 +alarm_config,144,serviceAffecting,2 +alarm_config,144,extNumber,3.0001.13 +alarm_config,144,conditionType,VLAN1-PRIO +alarm_config,144,amoType,PAA.PAA_Site573_VL2216 +alarm_config,144,on,0 +alarm_config,145,id,145 +alarm_config,145,number,3000114 +alarm_config,145,description,PAA_Site573_VL2216 PAA_VLAN2_PRIO_ALERT +alarm_config,145,enabled,1 +alarm_config,145,severity,1 +alarm_config,145,serviceAffecting,2 +alarm_config,145,extNumber,3.0001.14 +alarm_config,145,conditionType,VLAN2-PRIO +alarm_config,145,amoType,PAA.PAA_Site573_VL2216 +alarm_config,145,on,0 +alarm_config,146,id,146 +alarm_config,146,number,3000115 +alarm_config,146,description,PAA_Site573_VL2216 PAA_DSCP_ALERT +alarm_config,146,enabled,1 +alarm_config,146,severity,1 +alarm_config,146,serviceAffecting,2 +alarm_config,146,extNumber,3.0001.15 +alarm_config,146,conditionType,DSCP +alarm_config,146,amoType,PAA.PAA_Site573_VL2216 +alarm_config,146,on,0 +alarm_config,147,id,147 +alarm_config,147,number,3000201 +alarm_config,147,description,PAA_site573_2216_PNAP PAA_CC_ALERT +alarm_config,147,enabled,1 +alarm_config,147,severity,1 +alarm_config,147,serviceAffecting,2 +alarm_config,147,extNumber,3.0002.01 +alarm_config,147,conditionType,CONNECT-LOSS +alarm_config,147,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,147,on,0 +alarm_config,148,id,148 +alarm_config,148,number,3000202 +alarm_config,148,description,PAA_site573_2216_PNAP PAA_PL_ALERT +alarm_config,148,enabled,1 +alarm_config,148,severity,1 +alarm_config,148,serviceAffecting,2 +alarm_config,148,extNumber,3.0002.02 +alarm_config,148,conditionType,PKT-LOSS +alarm_config,148,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,148,on,0 +alarm_config,149,id,149 +alarm_config,149,number,3000203 +alarm_config,149,description,PAA_site573_2216_PNAP PAA_OW_DELAY_ALERT +alarm_config,149,enabled,1 +alarm_config,149,severity,1 +alarm_config,149,serviceAffecting,2 +alarm_config,149,extNumber,3.0002.03 +alarm_config,149,conditionType,OW-DELAY +alarm_config,149,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,149,on,0 +alarm_config,150,id,150 +alarm_config,150,number,3000204 +alarm_config,150,description,PAA_site573_2216_PNAP PAA_OW_AVG_DELAY_ALERT +alarm_config,150,enabled,1 +alarm_config,150,severity,1 +alarm_config,150,serviceAffecting,2 +alarm_config,150,extNumber,3.0002.04 +alarm_config,150,conditionType,OW-AVG-DELAY +alarm_config,150,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,150,on,0 +alarm_config,151,id,151 +alarm_config,151,number,3000205 +alarm_config,151,description,PAA_site573_2216_PNAP PAA_OW_DV_ALERT +alarm_config,151,enabled,1 +alarm_config,151,severity,1 +alarm_config,151,serviceAffecting,2 +alarm_config,151,extNumber,3.0002.05 +alarm_config,151,conditionType,OW-DV +alarm_config,151,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,151,on,0 +alarm_config,152,id,152 +alarm_config,152,number,3000206 +alarm_config,152,description,PAA_site573_2216_PNAP PAA_OW_AVG_DV_ALERT +alarm_config,152,enabled,1 +alarm_config,152,severity,1 +alarm_config,152,serviceAffecting,2 +alarm_config,152,extNumber,3.0002.06 +alarm_config,152,conditionType,OW-AVG-DV +alarm_config,152,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,152,on,0 +alarm_config,153,id,153 +alarm_config,153,number,3000207 +alarm_config,153,description,PAA_site573_2216_PNAP PAA_TW_DELAY_ALERT +alarm_config,153,enabled,1 +alarm_config,153,severity,1 +alarm_config,153,serviceAffecting,2 +alarm_config,153,extNumber,3.0002.07 +alarm_config,153,conditionType,TW-DELAY +alarm_config,153,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,153,on,0 +alarm_config,154,id,154 +alarm_config,154,number,3000208 +alarm_config,154,description,PAA_site573_2216_PNAP PAA_TW_AVG_DELAY_ALERT +alarm_config,154,enabled,1 +alarm_config,154,severity,1 +alarm_config,154,serviceAffecting,2 +alarm_config,154,extNumber,3.0002.08 +alarm_config,154,conditionType,TW-AVG-DELAY +alarm_config,154,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,154,on,0 +alarm_config,155,id,155 +alarm_config,155,number,3000209 +alarm_config,155,description,PAA_site573_2216_PNAP PAA_TW_DV_ALERT +alarm_config,155,enabled,1 +alarm_config,155,severity,1 +alarm_config,155,serviceAffecting,2 +alarm_config,155,extNumber,3.0002.09 +alarm_config,155,conditionType,TW-DV +alarm_config,155,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,155,on,0 +alarm_config,156,id,156 +alarm_config,156,number,3000210 +alarm_config,156,description,PAA_site573_2216_PNAP PAA_TW_AVG_DV_ALERT +alarm_config,156,enabled,1 +alarm_config,156,severity,1 +alarm_config,156,serviceAffecting,2 +alarm_config,156,extNumber,3.0002.10 +alarm_config,156,conditionType,TW-AVG-DV +alarm_config,156,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,156,on,0 +alarm_config,157,id,157 +alarm_config,157,number,3000211 +alarm_config,157,description,PAA_site573_2216_PNAP PAA_VLAN1_ID_ALERT +alarm_config,157,enabled,1 +alarm_config,157,severity,1 +alarm_config,157,serviceAffecting,2 +alarm_config,157,extNumber,3.0002.11 +alarm_config,157,conditionType,VLAN1-ID +alarm_config,157,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,157,on,0 +alarm_config,158,id,158 +alarm_config,158,number,3000212 +alarm_config,158,description,PAA_site573_2216_PNAP PAA_VLAN2_ID_ALERT +alarm_config,158,enabled,1 +alarm_config,158,severity,1 +alarm_config,158,serviceAffecting,2 +alarm_config,158,extNumber,3.0002.12 +alarm_config,158,conditionType,VLAN2-ID +alarm_config,158,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,158,on,0 +alarm_config,159,id,159 +alarm_config,159,number,3000213 +alarm_config,159,description,PAA_site573_2216_PNAP PAA_VLAN1_PRIO_ALERT +alarm_config,159,enabled,1 +alarm_config,159,severity,1 +alarm_config,159,serviceAffecting,2 +alarm_config,159,extNumber,3.0002.13 +alarm_config,159,conditionType,VLAN1-PRIO +alarm_config,159,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,159,on,0 +alarm_config,160,id,160 +alarm_config,160,number,3000214 +alarm_config,160,description,PAA_site573_2216_PNAP PAA_VLAN2_PRIO_ALERT +alarm_config,160,enabled,1 +alarm_config,160,severity,1 +alarm_config,160,serviceAffecting,2 +alarm_config,160,extNumber,3.0002.14 +alarm_config,160,conditionType,VLAN2-PRIO +alarm_config,160,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,160,on,0 +alarm_config,161,id,161 +alarm_config,161,number,3000215 +alarm_config,161,description,PAA_site573_2216_PNAP PAA_DSCP_ALERT +alarm_config,161,enabled,1 +alarm_config,161,severity,1 +alarm_config,161,serviceAffecting,2 +alarm_config,161,extNumber,3.0002.15 +alarm_config,161,conditionType,DSCP +alarm_config,161,amoType,PAA.PAA_site573_2216_PNAP +alarm_config,161,on,0 +alarm_config,162,id,162 +alarm_config,162,number,3000301 +alarm_config,162,description,PAA_Site573_VL2217 PAA_CC_ALERT +alarm_config,162,enabled,1 +alarm_config,162,severity,1 +alarm_config,162,serviceAffecting,2 +alarm_config,162,extNumber,3.0003.01 +alarm_config,162,conditionType,CONNECT-LOSS +alarm_config,162,amoType,PAA.PAA_Site573_VL2217 +alarm_config,162,on,0 +alarm_config,163,id,163 +alarm_config,163,number,3000302 +alarm_config,163,description,PAA_Site573_VL2217 PAA_PL_ALERT +alarm_config,163,enabled,1 +alarm_config,163,severity,1 +alarm_config,163,serviceAffecting,2 +alarm_config,163,extNumber,3.0003.02 +alarm_config,163,conditionType,PKT-LOSS +alarm_config,163,amoType,PAA.PAA_Site573_VL2217 +alarm_config,163,on,0 +alarm_config,164,id,164 +alarm_config,164,number,3000303 +alarm_config,164,description,PAA_Site573_VL2217 PAA_OW_DELAY_ALERT +alarm_config,164,enabled,1 +alarm_config,164,severity,1 +alarm_config,164,serviceAffecting,2 +alarm_config,164,extNumber,3.0003.03 +alarm_config,164,conditionType,OW-DELAY +alarm_config,164,amoType,PAA.PAA_Site573_VL2217 +alarm_config,164,on,0 +alarm_config,165,id,165 +alarm_config,165,number,3000304 +alarm_config,165,description,PAA_Site573_VL2217 PAA_OW_AVG_DELAY_ALERT +alarm_config,165,enabled,1 +alarm_config,165,severity,1 +alarm_config,165,serviceAffecting,2 +alarm_config,165,extNumber,3.0003.04 +alarm_config,165,conditionType,OW-AVG-DELAY +alarm_config,165,amoType,PAA.PAA_Site573_VL2217 +alarm_config,165,on,0 +alarm_config,166,id,166 +alarm_config,166,number,3000305 +alarm_config,166,description,PAA_Site573_VL2217 PAA_OW_DV_ALERT +alarm_config,166,enabled,1 +alarm_config,166,severity,1 +alarm_config,166,serviceAffecting,2 +alarm_config,166,extNumber,3.0003.05 +alarm_config,166,conditionType,OW-DV +alarm_config,166,amoType,PAA.PAA_Site573_VL2217 +alarm_config,166,on,0 +alarm_config,167,id,167 +alarm_config,167,number,3000306 +alarm_config,167,description,PAA_Site573_VL2217 PAA_OW_AVG_DV_ALERT +alarm_config,167,enabled,1 +alarm_config,167,severity,1 +alarm_config,167,serviceAffecting,2 +alarm_config,167,extNumber,3.0003.06 +alarm_config,167,conditionType,OW-AVG-DV +alarm_config,167,amoType,PAA.PAA_Site573_VL2217 +alarm_config,167,on,0 +alarm_config,168,id,168 +alarm_config,168,number,3000307 +alarm_config,168,description,PAA_Site573_VL2217 PAA_TW_DELAY_ALERT +alarm_config,168,enabled,1 +alarm_config,168,severity,1 +alarm_config,168,serviceAffecting,2 +alarm_config,168,extNumber,3.0003.07 +alarm_config,168,conditionType,TW-DELAY +alarm_config,168,amoType,PAA.PAA_Site573_VL2217 +alarm_config,168,on,0 +alarm_config,169,id,169 +alarm_config,169,number,3000308 +alarm_config,169,description,PAA_Site573_VL2217 PAA_TW_AVG_DELAY_ALERT +alarm_config,169,enabled,1 +alarm_config,169,severity,1 +alarm_config,169,serviceAffecting,2 +alarm_config,169,extNumber,3.0003.08 +alarm_config,169,conditionType,TW-AVG-DELAY +alarm_config,169,amoType,PAA.PAA_Site573_VL2217 +alarm_config,169,on,0 +alarm_config,170,id,170 +alarm_config,170,number,3000309 +alarm_config,170,description,PAA_Site573_VL2217 PAA_TW_DV_ALERT +alarm_config,170,enabled,1 +alarm_config,170,severity,1 +alarm_config,170,serviceAffecting,2 +alarm_config,170,extNumber,3.0003.09 +alarm_config,170,conditionType,TW-DV +alarm_config,170,amoType,PAA.PAA_Site573_VL2217 +alarm_config,170,on,0 +alarm_config,171,id,171 +alarm_config,171,number,3000310 +alarm_config,171,description,PAA_Site573_VL2217 PAA_TW_AVG_DV_ALERT +alarm_config,171,enabled,1 +alarm_config,171,severity,1 +alarm_config,171,serviceAffecting,2 +alarm_config,171,extNumber,3.0003.10 +alarm_config,171,conditionType,TW-AVG-DV +alarm_config,171,amoType,PAA.PAA_Site573_VL2217 +alarm_config,171,on,0 +alarm_config,172,id,172 +alarm_config,172,number,3000311 +alarm_config,172,description,PAA_Site573_VL2217 PAA_VLAN1_ID_ALERT +alarm_config,172,enabled,1 +alarm_config,172,severity,1 +alarm_config,172,serviceAffecting,2 +alarm_config,172,extNumber,3.0003.11 +alarm_config,172,conditionType,VLAN1-ID +alarm_config,172,amoType,PAA.PAA_Site573_VL2217 +alarm_config,172,on,0 +alarm_config,173,id,173 +alarm_config,173,number,3000312 +alarm_config,173,description,PAA_Site573_VL2217 PAA_VLAN2_ID_ALERT +alarm_config,173,enabled,1 +alarm_config,173,severity,1 +alarm_config,173,serviceAffecting,2 +alarm_config,173,extNumber,3.0003.12 +alarm_config,173,conditionType,VLAN2-ID +alarm_config,173,amoType,PAA.PAA_Site573_VL2217 +alarm_config,173,on,0 +alarm_config,174,id,174 +alarm_config,174,number,3000313 +alarm_config,174,description,PAA_Site573_VL2217 PAA_VLAN1_PRIO_ALERT +alarm_config,174,enabled,1 +alarm_config,174,severity,1 +alarm_config,174,serviceAffecting,2 +alarm_config,174,extNumber,3.0003.13 +alarm_config,174,conditionType,VLAN1-PRIO +alarm_config,174,amoType,PAA.PAA_Site573_VL2217 +alarm_config,174,on,0 +alarm_config,175,id,175 +alarm_config,175,number,3000314 +alarm_config,175,description,PAA_Site573_VL2217 PAA_VLAN2_PRIO_ALERT +alarm_config,175,enabled,1 +alarm_config,175,severity,1 +alarm_config,175,serviceAffecting,2 +alarm_config,175,extNumber,3.0003.14 +alarm_config,175,conditionType,VLAN2-PRIO +alarm_config,175,amoType,PAA.PAA_Site573_VL2217 +alarm_config,175,on,0 +alarm_config,176,id,176 +alarm_config,176,number,3000315 +alarm_config,176,description,PAA_Site573_VL2217 PAA_DSCP_ALERT +alarm_config,176,enabled,1 +alarm_config,176,severity,1 +alarm_config,176,serviceAffecting,2 +alarm_config,176,extNumber,3.0003.15 +alarm_config,176,conditionType,DSCP +alarm_config,176,amoType,PAA.PAA_Site573_VL2217 +alarm_config,176,on,0 +alarm_config,177,id,177 +alarm_config,177,number,3000401 +alarm_config,177,description,PAA_site573_2217_PNAP PAA_CC_ALERT +alarm_config,177,enabled,1 +alarm_config,177,severity,1 +alarm_config,177,serviceAffecting,2 +alarm_config,177,extNumber,3.0004.01 +alarm_config,177,conditionType,CONNECT-LOSS +alarm_config,177,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,177,on,0 +alarm_config,178,id,178 +alarm_config,178,number,3000402 +alarm_config,178,description,PAA_site573_2217_PNAP PAA_PL_ALERT +alarm_config,178,enabled,1 +alarm_config,178,severity,1 +alarm_config,178,serviceAffecting,2 +alarm_config,178,extNumber,3.0004.02 +alarm_config,178,conditionType,PKT-LOSS +alarm_config,178,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,178,on,0 +alarm_config,179,id,179 +alarm_config,179,number,3000403 +alarm_config,179,description,PAA_site573_2217_PNAP PAA_OW_DELAY_ALERT +alarm_config,179,enabled,1 +alarm_config,179,severity,1 +alarm_config,179,serviceAffecting,2 +alarm_config,179,extNumber,3.0004.03 +alarm_config,179,conditionType,OW-DELAY +alarm_config,179,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,179,on,0 +alarm_config,180,id,180 +alarm_config,180,number,3000404 +alarm_config,180,description,PAA_site573_2217_PNAP PAA_OW_AVG_DELAY_ALERT +alarm_config,180,enabled,1 +alarm_config,180,severity,1 +alarm_config,180,serviceAffecting,2 +alarm_config,180,extNumber,3.0004.04 +alarm_config,180,conditionType,OW-AVG-DELAY +alarm_config,180,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,180,on,0 +alarm_config,181,id,181 +alarm_config,181,number,3000405 +alarm_config,181,description,PAA_site573_2217_PNAP PAA_OW_DV_ALERT +alarm_config,181,enabled,1 +alarm_config,181,severity,1 +alarm_config,181,serviceAffecting,2 +alarm_config,181,extNumber,3.0004.05 +alarm_config,181,conditionType,OW-DV +alarm_config,181,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,181,on,0 +alarm_config,182,id,182 +alarm_config,182,number,3000406 +alarm_config,182,description,PAA_site573_2217_PNAP PAA_OW_AVG_DV_ALERT +alarm_config,182,enabled,1 +alarm_config,182,severity,1 +alarm_config,182,serviceAffecting,2 +alarm_config,182,extNumber,3.0004.06 +alarm_config,182,conditionType,OW-AVG-DV +alarm_config,182,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,182,on,0 +alarm_config,183,id,183 +alarm_config,183,number,3000407 +alarm_config,183,description,PAA_site573_2217_PNAP PAA_TW_DELAY_ALERT +alarm_config,183,enabled,1 +alarm_config,183,severity,1 +alarm_config,183,serviceAffecting,2 +alarm_config,183,extNumber,3.0004.07 +alarm_config,183,conditionType,TW-DELAY +alarm_config,183,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,183,on,0 +alarm_config,184,id,184 +alarm_config,184,number,3000408 +alarm_config,184,description,PAA_site573_2217_PNAP PAA_TW_AVG_DELAY_ALERT +alarm_config,184,enabled,1 +alarm_config,184,severity,1 +alarm_config,184,serviceAffecting,2 +alarm_config,184,extNumber,3.0004.08 +alarm_config,184,conditionType,TW-AVG-DELAY +alarm_config,184,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,184,on,0 +alarm_config,185,id,185 +alarm_config,185,number,3000409 +alarm_config,185,description,PAA_site573_2217_PNAP PAA_TW_DV_ALERT +alarm_config,185,enabled,1 +alarm_config,185,severity,1 +alarm_config,185,serviceAffecting,2 +alarm_config,185,extNumber,3.0004.09 +alarm_config,185,conditionType,TW-DV +alarm_config,185,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,185,on,0 +alarm_config,186,id,186 +alarm_config,186,number,3000410 +alarm_config,186,description,PAA_site573_2217_PNAP PAA_TW_AVG_DV_ALERT +alarm_config,186,enabled,1 +alarm_config,186,severity,1 +alarm_config,186,serviceAffecting,2 +alarm_config,186,extNumber,3.0004.10 +alarm_config,186,conditionType,TW-AVG-DV +alarm_config,186,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,186,on,0 +alarm_config,187,id,187 +alarm_config,187,number,3000411 +alarm_config,187,description,PAA_site573_2217_PNAP PAA_VLAN1_ID_ALERT +alarm_config,187,enabled,1 +alarm_config,187,severity,1 +alarm_config,187,serviceAffecting,2 +alarm_config,187,extNumber,3.0004.11 +alarm_config,187,conditionType,VLAN1-ID +alarm_config,187,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,187,on,0 +alarm_config,188,id,188 +alarm_config,188,number,3000412 +alarm_config,188,description,PAA_site573_2217_PNAP PAA_VLAN2_ID_ALERT +alarm_config,188,enabled,1 +alarm_config,188,severity,1 +alarm_config,188,serviceAffecting,2 +alarm_config,188,extNumber,3.0004.12 +alarm_config,188,conditionType,VLAN2-ID +alarm_config,188,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,188,on,0 +alarm_config,189,id,189 +alarm_config,189,number,3000413 +alarm_config,189,description,PAA_site573_2217_PNAP PAA_VLAN1_PRIO_ALERT +alarm_config,189,enabled,1 +alarm_config,189,severity,1 +alarm_config,189,serviceAffecting,2 +alarm_config,189,extNumber,3.0004.13 +alarm_config,189,conditionType,VLAN1-PRIO +alarm_config,189,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,189,on,0 +alarm_config,190,id,190 +alarm_config,190,number,3000414 +alarm_config,190,description,PAA_site573_2217_PNAP PAA_VLAN2_PRIO_ALERT +alarm_config,190,enabled,1 +alarm_config,190,severity,1 +alarm_config,190,serviceAffecting,2 +alarm_config,190,extNumber,3.0004.14 +alarm_config,190,conditionType,VLAN2-PRIO +alarm_config,190,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,190,on,0 +alarm_config,191,id,191 +alarm_config,191,number,3000415 +alarm_config,191,description,PAA_site573_2217_PNAP PAA_DSCP_ALERT +alarm_config,191,enabled,1 +alarm_config,191,severity,1 +alarm_config,191,serviceAffecting,2 +alarm_config,191,extNumber,3.0004.15 +alarm_config,191,conditionType,DSCP +alarm_config,191,amoType,PAA.PAA_site573_2217_PNAP +alarm_config,191,on,0 +alarm_config,192,id,192 +alarm_config,192,number,7000401 +alarm_config,192,description,VCAgent communication failure with Vision EMS +alarm_config,192,enabled,1 +alarm_config,192,severity,2 +alarm_config,192,serviceAffecting,2 +alarm_config,192,extNumber,7.0004.01 +alarm_config,192,conditionType,VCA-LOST-COMM +alarm_config,192,amoType,VCAGENT +alarm_config,192,on,0 +alarm_config,193,id,193 +alarm_config,193,number,7000412 +alarm_config,193,description,VCAgent High Resolution PAA statistics buffer full +alarm_config,193,enabled,1 +alarm_config,193,severity,2 +alarm_config,193,serviceAffecting,2 +alarm_config,193,extNumber,7.0004.12 +alarm_config,193,conditionType,VCA-FULL-PAA +alarm_config,193,amoType,VCAGENT +alarm_config,193,on,0 +alarm_config,194,id,194 +alarm_config,194,number,7000404 +alarm_config,194,description,VCAgent High Resolution PAA instances validation +alarm_config,194,enabled,1 +alarm_config,194,severity,1 +alarm_config,194,serviceAffecting,2 +alarm_config,194,extNumber,7.0004.04 +alarm_config,194,conditionType,VCA-MAX-PAA +alarm_config,194,amoType,VCAGENT +alarm_config,194,on,0 +alarm_config,195,id,195 +alarm_config,195,number,7000411 +alarm_config,195,description,VCAgent High Resolution Regulator statistics buffer full +alarm_config,195,enabled,1 +alarm_config,195,severity,2 +alarm_config,195,serviceAffecting,2 +alarm_config,195,extNumber,7.0004.11 +alarm_config,195,conditionType,VCA-FULL-BWP +alarm_config,195,amoType,VCAGENT +alarm_config,195,on,0 +alarm_config,196,id,196 +alarm_config,196,number,7000403 +alarm_config,196,description,VCAgent High Resolution Regulator instances validation +alarm_config,196,enabled,1 +alarm_config,196,severity,1 +alarm_config,196,serviceAffecting,2 +alarm_config,196,extNumber,7.0004.03 +alarm_config,196,conditionType,VCA-MAX-BWP +alarm_config,196,amoType,VCAGENT +alarm_config,196,on,0 +alarm_config,197,id,197 +alarm_config,197,number,7000410 +alarm_config,197,description,VCAgent High Resolution Policy statistics buffer full +alarm_config,197,enabled,1 +alarm_config,197,severity,2 +alarm_config,197,serviceAffecting,2 +alarm_config,197,extNumber,7.0004.10 +alarm_config,197,conditionType,VCA-FULL-POL +alarm_config,197,amoType,VCAGENT +alarm_config,197,on,0 +alarm_config,198,id,198 +alarm_config,198,number,7000402 +alarm_config,198,description,VCAgent High Resolution Policy instances validation +alarm_config,198,enabled,1 +alarm_config,198,severity,1 +alarm_config,198,serviceAffecting,2 +alarm_config,198,extNumber,7.0004.02 +alarm_config,198,conditionType,VCA-MAX-POL +alarm_config,198,amoType,VCAGENT +alarm_config,198,on,0 +alarm_config,199,id,199 +alarm_config,199,number,7000414 +alarm_config,199,description,VCAgent High Resolution SOAM DMM statistics buffer full +alarm_config,199,enabled,1 +alarm_config,199,severity,2 +alarm_config,199,serviceAffecting,2 +alarm_config,199,extNumber,7.0004.14 +alarm_config,199,conditionType,VCA-FULL-DMM +alarm_config,199,amoType,VCAGENT +alarm_config,199,on,0 +alarm_config,200,id,200 +alarm_config,200,number,7000406 +alarm_config,200,description,VCAgent High Resolution SOAM DMM instances validation +alarm_config,200,enabled,1 +alarm_config,200,severity,1 +alarm_config,200,serviceAffecting,2 +alarm_config,200,extNumber,7.0004.06 +alarm_config,200,conditionType,VCA-MAX-DMM +alarm_config,200,amoType,VCAGENT +alarm_config,200,on,0 +alarm_config,201,id,201 +alarm_config,201,number,7000413 +alarm_config,201,description,VCAgent High Resolution SOAM PL statistics buffer full +alarm_config,201,enabled,1 +alarm_config,201,severity,2 +alarm_config,201,serviceAffecting,2 +alarm_config,201,extNumber,7.0004.13 +alarm_config,201,conditionType,VCA-FULL-PL +alarm_config,201,amoType,VCAGENT +alarm_config,201,on,0 +alarm_config,202,id,202 +alarm_config,202,number,7000405 +alarm_config,202,description,VCAgent High Resolution SOAM PL instances validation +alarm_config,202,enabled,1 +alarm_config,202,severity,1 +alarm_config,202,serviceAffecting,2 +alarm_config,202,extNumber,7.0004.05 +alarm_config,202,conditionType,VCA-MAX-PL +alarm_config,202,amoType,VCAGENT +alarm_config,202,on,0 +alarm_config,203,id,203 +alarm_config,203,number,7000417 +alarm_config,203,description,VCAgent High Resolution SOAM SLM statistics buffer full +alarm_config,203,enabled,1 +alarm_config,203,severity,2 +alarm_config,203,serviceAffecting,2 +alarm_config,203,extNumber,7.0004.17 +alarm_config,203,conditionType,VCA-FULL-SLM +alarm_config,203,amoType,VCAGENT +alarm_config,203,on,0 +alarm_config,204,id,204 +alarm_config,204,number,7000409 +alarm_config,204,description,VCAgent High Resolution SOAM SLM instances validation +alarm_config,204,enabled,1 +alarm_config,204,severity,1 +alarm_config,204,serviceAffecting,2 +alarm_config,204,extNumber,7.0004.09 +alarm_config,204,conditionType,VCA-MAX-SLM +alarm_config,204,amoType,VCAGENT +alarm_config,204,on,0 +alarm_config,205,id,205 +alarm_config,205,number,7000415 +alarm_config,205,description,VCAgent High Resolution SOAM SA statistics buffer full +alarm_config,205,enabled,1 +alarm_config,205,severity,2 +alarm_config,205,serviceAffecting,2 +alarm_config,205,extNumber,7.0004.15 +alarm_config,205,conditionType,VCA-FULL-SA +alarm_config,205,amoType,VCAGENT +alarm_config,205,on,0 +alarm_config,206,id,206 +alarm_config,206,number,7000407 +alarm_config,206,description,VCAgent High Resolution SOAM SA instances validation +alarm_config,206,enabled,1 +alarm_config,206,severity,1 +alarm_config,206,serviceAffecting,2 +alarm_config,206,extNumber,7.0004.07 +alarm_config,206,conditionType,VCA-MAX-SA +alarm_config,206,amoType,VCAGENT +alarm_config,206,on,0 +alarm_config,207,id,207 +alarm_config,207,number,7000416 +alarm_config,207,description,VCAgent High Resolution SOAM SA Metrics statistics buffer full +alarm_config,207,enabled,1 +alarm_config,207,severity,2 +alarm_config,207,serviceAffecting,2 +alarm_config,207,extNumber,7.0004.16 +alarm_config,207,conditionType,VCA-FULL-SA_M +alarm_config,207,amoType,VCAGENT +alarm_config,207,on,0 +alarm_config,208,id,208 +alarm_config,208,number,7000408 +alarm_config,208,description,VCAgent High Resolution SOAM SA Metrics instances validation +alarm_config,208,enabled,1 +alarm_config,208,severity,1 +alarm_config,208,serviceAffecting,2 +alarm_config,208,extNumber,7.0004.08 +alarm_config,208,conditionType,VCA-MAX-SA_M +alarm_config,208,amoType,VCAGENT +alarm_config,208,on,0 +alarm_config,209,id,209 +alarm_config,209,number,7000421 +alarm_config,209,description,VCAgent High Resolution TWAMP statistics buffer full +alarm_config,209,enabled,1 +alarm_config,209,severity,2 +alarm_config,209,serviceAffecting,2 +alarm_config,209,extNumber,7.0004.21 +alarm_config,209,conditionType,VCA-FULL-TWAMP +alarm_config,209,amoType,VCAGENT +alarm_config,209,on,0 +alarm_config,210,id,210 +alarm_config,210,number,7000420 +alarm_config,210,description,VCAgent High Resolution TWAMP instances validation +alarm_config,210,enabled,1 +alarm_config,210,severity,1 +alarm_config,210,serviceAffecting,2 +alarm_config,210,extNumber,7.0004.20 +alarm_config,210,conditionType,VCA-MAX-TWAMP +alarm_config,210,amoType,VCAGENT +alarm_config,210,on,0 +alarm_config,211,id,211 +alarm_config,211,number,7000423 +alarm_config,211,description,VCAgent High Resolution Shaper statistics buffer full +alarm_config,211,enabled,1 +alarm_config,211,severity,2 +alarm_config,211,serviceAffecting,2 +alarm_config,211,extNumber,7.0004.23 +alarm_config,211,conditionType,VCA-FULL-SHAPER-V2 +alarm_config,211,amoType,VCAGENT +alarm_config,211,on,0 +alarm_config,212,id,212 +alarm_config,212,number,7000422 +alarm_config,212,description,VCAgent High Resolution Shaper instances validation +alarm_config,212,enabled,1 +alarm_config,212,severity,1 +alarm_config,212,serviceAffecting,2 +alarm_config,212,extNumber,7.0004.22 +alarm_config,212,conditionType,VCA-MAX-SHAPER-V2 +alarm_config,212,amoType,VCAGENT +alarm_config,212,on,0 +alarm_config,213,id,213 +alarm_config,213,number,7000425 +alarm_config,213,description,VCAgent High Resolution Port statistics buffer full +alarm_config,213,enabled,1 +alarm_config,213,severity,2 +alarm_config,213,serviceAffecting,2 +alarm_config,213,extNumber,7.0004.25 +alarm_config,213,conditionType,VCA-FULL-PORT +alarm_config,213,amoType,VCAGENT +alarm_config,213,on,0 +alarm_config,214,id,214 +alarm_config,214,number,7000424 +alarm_config,214,description,VCAgent High Resolution Port instances validation +alarm_config,214,enabled,1 +alarm_config,214,severity,1 +alarm_config,214,serviceAffecting,2 +alarm_config,214,extNumber,7.0004.24 +alarm_config,214,conditionType,VCA-MAX-PORT +alarm_config,214,amoType,VCAGENT +alarm_config,214,on,0 +alarm_config,215,id,215 +alarm_config,215,number,7000428 +alarm_config,215,description,VCAgent High Resolution SFP statistics buffer full +alarm_config,215,enabled,1 +alarm_config,215,severity,2 +alarm_config,215,serviceAffecting,2 +alarm_config,215,extNumber,7.0004.28 +alarm_config,215,conditionType,VCA-FULL-SFP +alarm_config,215,amoType,VCAGENT +alarm_config,215,on,0 +alarm_config,216,id,216 +alarm_config,216,number,7000429 +alarm_config,216,description,VCAgent High Resolution System Health statistics buffer full +alarm_config,216,enabled,1 +alarm_config,216,severity,2 +alarm_config,216,serviceAffecting,2 +alarm_config,216,extNumber,7.0004.29 +alarm_config,216,conditionType,VCA-FULL-SYSTEM-HEALTH +alarm_config,216,amoType,VCAGENT +alarm_config,216,on,0 +alarm_config,217,id,217 +alarm_config,217,number,19000101 +alarm_config,217,description,One or more certificates is about to expire +alarm_config,217,enabled,1 +alarm_config,217,severity,1 +alarm_config,217,serviceAffecting,2 +alarm_config,217,extNumber,19.0001.01 +alarm_config,217,conditionType,EXPIRING +alarm_config,217,amoType,CERTIFICATE.EXPIRING +alarm_config,217,on,0 +alarm_config,218,id,218 +alarm_config,218,number,19000102 +alarm_config,218,description,One or more certificates has expired +alarm_config,218,enabled,1 +alarm_config,218,severity,2 +alarm_config,218,serviceAffecting,2 +alarm_config,218,extNumber,19.0001.02 +alarm_config,218,conditionType,EXPIRED +alarm_config,218,amoType,CERTIFICATE.EXPIRED +alarm_config,218,on,0 +alarm_status,1,id,1 +alarm_status,1,number,8000001 +alarm_status,1,active,2 +alarm_status,1,lastChange,00 00 01 01 00 00 00 00 +alarm_status,1,message, +alarm_status,1,on,0 +alarm_status,2,id,2 +alarm_status,2,number,8000002 +alarm_status,2,active,2 +alarm_status,2,lastChange,00 00 01 01 00 00 00 00 +alarm_status,2,message, +alarm_status,2,on,0 +alarm_status,3,id,3 +alarm_status,3,number,8000004 +alarm_status,3,active,2 +alarm_status,3,lastChange,00 00 01 01 00 00 00 00 +alarm_status,3,message, +alarm_status,3,on,0 +alarm_status,4,id,4 +alarm_status,4,number,8000005 +alarm_status,4,active,1 +alarm_status,4,lastChange,07 B2 06 16 16 1D 07 00 2D 07 00 +alarm_status,4,message, +alarm_status,4,on,0 +alarm_status,5,id,5 +alarm_status,5,number,8000101 +alarm_status,5,active,2 +alarm_status,5,lastChange,00 00 01 01 00 00 00 00 +alarm_status,5,message, +alarm_status,5,on,0 +alarm_status,6,id,6 +alarm_status,6,number,8000102 +alarm_status,6,active,2 +alarm_status,6,lastChange,00 00 01 01 00 00 00 00 +alarm_status,6,message, +alarm_status,6,on,0 +alarm_status,7,id,7 +alarm_status,7,number,8000040 +alarm_status,7,active,2 +alarm_status,7,lastChange,00 00 01 01 00 00 00 00 +alarm_status,7,message, +alarm_status,7,on,0 +alarm_status,8,id,8 +alarm_status,8,number,8000041 +alarm_status,8,active,2 +alarm_status,8,lastChange,00 00 01 01 00 00 00 00 +alarm_status,8,message, +alarm_status,8,on,0 +alarm_status,9,id,9 +alarm_status,9,number,8000140 +alarm_status,9,active,2 +alarm_status,9,lastChange,00 00 01 01 00 00 00 00 +alarm_status,9,message, +alarm_status,9,on,0 +alarm_status,10,id,10 +alarm_status,10,number,8000141 +alarm_status,10,active,2 +alarm_status,10,lastChange,00 00 01 01 00 00 00 00 +alarm_status,10,message, +alarm_status,10,on,0 +alarm_status,11,id,11 +alarm_status,11,number,2000101 +alarm_status,11,active,2 +alarm_status,11,lastChange,00 00 01 01 00 00 00 00 +alarm_status,11,message, +alarm_status,11,on,0 +alarm_status,12,id,12 +alarm_status,12,number,2000102 +alarm_status,12,active,2 +alarm_status,12,lastChange,00 00 01 01 00 00 00 00 +alarm_status,12,message, +alarm_status,12,on,0 +alarm_status,13,id,13 +alarm_status,13,number,2000103 +alarm_status,13,active,2 +alarm_status,13,lastChange,00 00 01 01 00 00 00 00 +alarm_status,13,message, +alarm_status,13,on,0 +alarm_status,14,id,14 +alarm_status,14,number,2000104 +alarm_status,14,active,2 +alarm_status,14,lastChange,00 00 01 01 00 00 00 00 +alarm_status,14,message, +alarm_status,14,on,0 +alarm_status,15,id,15 +alarm_status,15,number,2000105 +alarm_status,15,active,2 +alarm_status,15,lastChange,00 00 01 01 00 00 00 00 +alarm_status,15,message, +alarm_status,15,on,0 +alarm_status,16,id,16 +alarm_status,16,number,2000106 +alarm_status,16,active,2 +alarm_status,16,lastChange,00 00 01 01 00 00 00 00 +alarm_status,16,message, +alarm_status,16,on,0 +alarm_status,17,id,17 +alarm_status,17,number,2000107 +alarm_status,17,active,2 +alarm_status,17,lastChange,00 00 01 01 00 00 00 00 +alarm_status,17,message, +alarm_status,17,on,0 +alarm_status,18,id,18 +alarm_status,18,number,2000108 +alarm_status,18,active,2 +alarm_status,18,lastChange,00 00 01 01 00 00 00 00 +alarm_status,18,message, +alarm_status,18,on,0 +alarm_status,19,id,19 +alarm_status,19,number,2000109 +alarm_status,19,active,2 +alarm_status,19,lastChange,00 00 01 01 00 00 00 00 +alarm_status,19,message, +alarm_status,19,on,0 +alarm_status,20,id,20 +alarm_status,20,number,2000110 +alarm_status,20,active,2 +alarm_status,20,lastChange,00 00 01 01 00 00 00 00 +alarm_status,20,message, +alarm_status,20,on,0 +alarm_status,21,id,21 +alarm_status,21,number,2000111 +alarm_status,21,active,2 +alarm_status,21,lastChange,00 00 01 01 00 00 00 00 +alarm_status,21,message, +alarm_status,21,on,0 +alarm_status,22,id,22 +alarm_status,22,number,2000112 +alarm_status,22,active,2 +alarm_status,22,lastChange,00 00 01 01 00 00 00 00 +alarm_status,22,message, +alarm_status,22,on,0 +alarm_status,23,id,23 +alarm_status,23,number,2000113 +alarm_status,23,active,2 +alarm_status,23,lastChange,00 00 01 01 00 00 00 00 +alarm_status,23,message, +alarm_status,23,on,0 +alarm_status,24,id,24 +alarm_status,24,number,2000114 +alarm_status,24,active,2 +alarm_status,24,lastChange,00 00 01 01 00 00 00 00 +alarm_status,24,message, +alarm_status,24,on,0 +alarm_status,25,id,25 +alarm_status,25,number,2000115 +alarm_status,25,active,2 +alarm_status,25,lastChange,00 00 01 01 00 00 00 00 +alarm_status,25,message, +alarm_status,25,on,0 +alarm_status,26,id,26 +alarm_status,26,number,2000116 +alarm_status,26,active,2 +alarm_status,26,lastChange,00 00 01 01 00 00 00 00 +alarm_status,26,message, +alarm_status,26,on,0 +alarm_status,27,id,27 +alarm_status,27,number,2000117 +alarm_status,27,active,2 +alarm_status,27,lastChange,00 00 01 01 00 00 00 00 +alarm_status,27,message, +alarm_status,27,on,0 +alarm_status,28,id,28 +alarm_status,28,number,2000118 +alarm_status,28,active,2 +alarm_status,28,lastChange,00 00 01 01 00 00 00 00 +alarm_status,28,message, +alarm_status,28,on,0 +alarm_status,29,id,29 +alarm_status,29,number,2000119 +alarm_status,29,active,2 +alarm_status,29,lastChange,00 00 01 01 00 00 00 00 +alarm_status,29,message, +alarm_status,29,on,0 +alarm_status,30,id,30 +alarm_status,30,number,2000120 +alarm_status,30,active,2 +alarm_status,30,lastChange,00 00 01 01 00 00 00 00 +alarm_status,30,message, +alarm_status,30,on,0 +alarm_status,31,id,31 +alarm_status,31,number,2000121 +alarm_status,31,active,2 +alarm_status,31,lastChange,07 B4 0A 0F 11 35 3A 00 2D 07 00 +alarm_status,31,message,was inserted. +alarm_status,31,on,0 +alarm_status,32,id,32 +alarm_status,32,number,2000201 +alarm_status,32,active,2 +alarm_status,32,lastChange,00 00 01 01 00 00 00 00 +alarm_status,32,message, +alarm_status,32,on,0 +alarm_status,33,id,33 +alarm_status,33,number,2000202 +alarm_status,33,active,2 +alarm_status,33,lastChange,00 00 01 01 00 00 00 00 +alarm_status,33,message, +alarm_status,33,on,0 +alarm_status,34,id,34 +alarm_status,34,number,2000203 +alarm_status,34,active,2 +alarm_status,34,lastChange,00 00 01 01 00 00 00 00 +alarm_status,34,message, +alarm_status,34,on,0 +alarm_status,35,id,35 +alarm_status,35,number,2000204 +alarm_status,35,active,2 +alarm_status,35,lastChange,00 00 01 01 00 00 00 00 +alarm_status,35,message, +alarm_status,35,on,0 +alarm_status,36,id,36 +alarm_status,36,number,2000205 +alarm_status,36,active,2 +alarm_status,36,lastChange,00 00 01 01 00 00 00 00 +alarm_status,36,message, +alarm_status,36,on,0 +alarm_status,37,id,37 +alarm_status,37,number,2000206 +alarm_status,37,active,2 +alarm_status,37,lastChange,00 00 01 01 00 00 00 00 +alarm_status,37,message, +alarm_status,37,on,0 +alarm_status,38,id,38 +alarm_status,38,number,2000207 +alarm_status,38,active,2 +alarm_status,38,lastChange,00 00 01 01 00 00 00 00 +alarm_status,38,message, +alarm_status,38,on,0 +alarm_status,39,id,39 +alarm_status,39,number,2000208 +alarm_status,39,active,2 +alarm_status,39,lastChange,00 00 01 01 00 00 00 00 +alarm_status,39,message, +alarm_status,39,on,0 +alarm_status,40,id,40 +alarm_status,40,number,2000209 +alarm_status,40,active,2 +alarm_status,40,lastChange,00 00 01 01 00 00 00 00 +alarm_status,40,message, +alarm_status,40,on,0 +alarm_status,41,id,41 +alarm_status,41,number,2000210 +alarm_status,41,active,2 +alarm_status,41,lastChange,00 00 01 01 00 00 00 00 +alarm_status,41,message, +alarm_status,41,on,0 +alarm_status,42,id,42 +alarm_status,42,number,2000211 +alarm_status,42,active,2 +alarm_status,42,lastChange,00 00 01 01 00 00 00 00 +alarm_status,42,message, +alarm_status,42,on,0 +alarm_status,43,id,43 +alarm_status,43,number,2000212 +alarm_status,43,active,2 +alarm_status,43,lastChange,00 00 01 01 00 00 00 00 +alarm_status,43,message, +alarm_status,43,on,0 +alarm_status,44,id,44 +alarm_status,44,number,2000213 +alarm_status,44,active,2 +alarm_status,44,lastChange,00 00 01 01 00 00 00 00 +alarm_status,44,message, +alarm_status,44,on,0 +alarm_status,45,id,45 +alarm_status,45,number,2000214 +alarm_status,45,active,2 +alarm_status,45,lastChange,00 00 01 01 00 00 00 00 +alarm_status,45,message, +alarm_status,45,on,0 +alarm_status,46,id,46 +alarm_status,46,number,2000215 +alarm_status,46,active,2 +alarm_status,46,lastChange,00 00 01 01 00 00 00 00 +alarm_status,46,message, +alarm_status,46,on,0 +alarm_status,47,id,47 +alarm_status,47,number,2000216 +alarm_status,47,active,2 +alarm_status,47,lastChange,00 00 01 01 00 00 00 00 +alarm_status,47,message, +alarm_status,47,on,0 +alarm_status,48,id,48 +alarm_status,48,number,2000217 +alarm_status,48,active,2 +alarm_status,48,lastChange,00 00 01 01 00 00 00 00 +alarm_status,48,message, +alarm_status,48,on,0 +alarm_status,49,id,49 +alarm_status,49,number,2000218 +alarm_status,49,active,2 +alarm_status,49,lastChange,00 00 01 01 00 00 00 00 +alarm_status,49,message, +alarm_status,49,on,0 +alarm_status,50,id,50 +alarm_status,50,number,2000219 +alarm_status,50,active,2 +alarm_status,50,lastChange,00 00 01 01 00 00 00 00 +alarm_status,50,message, +alarm_status,50,on,0 +alarm_status,51,id,51 +alarm_status,51,number,2000220 +alarm_status,51,active,2 +alarm_status,51,lastChange,00 00 01 01 00 00 00 00 +alarm_status,51,message, +alarm_status,51,on,0 +alarm_status,52,id,52 +alarm_status,52,number,2000221 +alarm_status,52,active,1 +alarm_status,52,lastChange,07 B4 0A 0F 13 03 07 00 2D 07 00 +alarm_status,52,message,was removed. +alarm_status,52,on,0 +alarm_status,53,id,53 +alarm_status,53,number,2000301 +alarm_status,53,active,2 +alarm_status,53,lastChange,00 00 01 01 00 00 00 00 +alarm_status,53,message, +alarm_status,53,on,0 +alarm_status,54,id,54 +alarm_status,54,number,2000302 +alarm_status,54,active,2 +alarm_status,54,lastChange,00 00 01 01 00 00 00 00 +alarm_status,54,message, +alarm_status,54,on,0 +alarm_status,55,id,55 +alarm_status,55,number,2000303 +alarm_status,55,active,2 +alarm_status,55,lastChange,00 00 01 01 00 00 00 00 +alarm_status,55,message, +alarm_status,55,on,0 +alarm_status,56,id,56 +alarm_status,56,number,2000304 +alarm_status,56,active,2 +alarm_status,56,lastChange,00 00 01 01 00 00 00 00 +alarm_status,56,message, +alarm_status,56,on,0 +alarm_status,57,id,57 +alarm_status,57,number,2000305 +alarm_status,57,active,2 +alarm_status,57,lastChange,00 00 01 01 00 00 00 00 +alarm_status,57,message, +alarm_status,57,on,0 +alarm_status,58,id,58 +alarm_status,58,number,2000306 +alarm_status,58,active,2 +alarm_status,58,lastChange,00 00 01 01 00 00 00 00 +alarm_status,58,message, +alarm_status,58,on,0 +alarm_status,59,id,59 +alarm_status,59,number,2000307 +alarm_status,59,active,2 +alarm_status,59,lastChange,00 00 01 01 00 00 00 00 +alarm_status,59,message, +alarm_status,59,on,0 +alarm_status,60,id,60 +alarm_status,60,number,2000308 +alarm_status,60,active,2 +alarm_status,60,lastChange,00 00 01 01 00 00 00 00 +alarm_status,60,message, +alarm_status,60,on,0 +alarm_status,61,id,61 +alarm_status,61,number,2000309 +alarm_status,61,active,2 +alarm_status,61,lastChange,00 00 01 01 00 00 00 00 +alarm_status,61,message, +alarm_status,61,on,0 +alarm_status,62,id,62 +alarm_status,62,number,2000310 +alarm_status,62,active,2 +alarm_status,62,lastChange,00 00 01 01 00 00 00 00 +alarm_status,62,message, +alarm_status,62,on,0 +alarm_status,63,id,63 +alarm_status,63,number,2000311 +alarm_status,63,active,2 +alarm_status,63,lastChange,00 00 01 01 00 00 00 00 +alarm_status,63,message, +alarm_status,63,on,0 +alarm_status,64,id,64 +alarm_status,64,number,2000312 +alarm_status,64,active,2 +alarm_status,64,lastChange,00 00 01 01 00 00 00 00 +alarm_status,64,message, +alarm_status,64,on,0 +alarm_status,65,id,65 +alarm_status,65,number,2000313 +alarm_status,65,active,2 +alarm_status,65,lastChange,00 00 01 01 00 00 00 00 +alarm_status,65,message, +alarm_status,65,on,0 +alarm_status,66,id,66 +alarm_status,66,number,2000314 +alarm_status,66,active,2 +alarm_status,66,lastChange,00 00 01 01 00 00 00 00 +alarm_status,66,message, +alarm_status,66,on,0 +alarm_status,67,id,67 +alarm_status,67,number,2000315 +alarm_status,67,active,2 +alarm_status,67,lastChange,00 00 01 01 00 00 00 00 +alarm_status,67,message, +alarm_status,67,on,0 +alarm_status,68,id,68 +alarm_status,68,number,2000316 +alarm_status,68,active,2 +alarm_status,68,lastChange,00 00 01 01 00 00 00 00 +alarm_status,68,message, +alarm_status,68,on,0 +alarm_status,69,id,69 +alarm_status,69,number,2000317 +alarm_status,69,active,2 +alarm_status,69,lastChange,00 00 01 01 00 00 00 00 +alarm_status,69,message, +alarm_status,69,on,0 +alarm_status,70,id,70 +alarm_status,70,number,2000318 +alarm_status,70,active,2 +alarm_status,70,lastChange,00 00 01 01 00 00 00 00 +alarm_status,70,message, +alarm_status,70,on,0 +alarm_status,71,id,71 +alarm_status,71,number,2000319 +alarm_status,71,active,2 +alarm_status,71,lastChange,00 00 01 01 00 00 00 00 +alarm_status,71,message, +alarm_status,71,on,0 +alarm_status,72,id,72 +alarm_status,72,number,2000320 +alarm_status,72,active,2 +alarm_status,72,lastChange,00 00 01 01 00 00 00 00 +alarm_status,72,message, +alarm_status,72,on,0 +alarm_status,73,id,73 +alarm_status,73,number,2000321 +alarm_status,73,active,2 +alarm_status,73,lastChange,07 B4 0A 0F 13 03 0B 00 2D 07 00 +alarm_status,73,message,was inserted. +alarm_status,73,on,0 +alarm_status,74,id,74 +alarm_status,74,number,2000401 +alarm_status,74,active,2 +alarm_status,74,lastChange,00 00 01 01 00 00 00 00 +alarm_status,74,message, +alarm_status,74,on,0 +alarm_status,75,id,75 +alarm_status,75,number,2000402 +alarm_status,75,active,2 +alarm_status,75,lastChange,00 00 01 01 00 00 00 00 +alarm_status,75,message, +alarm_status,75,on,0 +alarm_status,76,id,76 +alarm_status,76,number,2000403 +alarm_status,76,active,2 +alarm_status,76,lastChange,00 00 01 01 00 00 00 00 +alarm_status,76,message, +alarm_status,76,on,0 +alarm_status,77,id,77 +alarm_status,77,number,2000404 +alarm_status,77,active,2 +alarm_status,77,lastChange,00 00 01 01 00 00 00 00 +alarm_status,77,message, +alarm_status,77,on,0 +alarm_status,78,id,78 +alarm_status,78,number,2000405 +alarm_status,78,active,2 +alarm_status,78,lastChange,00 00 01 01 00 00 00 00 +alarm_status,78,message, +alarm_status,78,on,0 +alarm_status,79,id,79 +alarm_status,79,number,2000406 +alarm_status,79,active,2 +alarm_status,79,lastChange,00 00 01 01 00 00 00 00 +alarm_status,79,message, +alarm_status,79,on,0 +alarm_status,80,id,80 +alarm_status,80,number,2000407 +alarm_status,80,active,2 +alarm_status,80,lastChange,00 00 01 01 00 00 00 00 +alarm_status,80,message, +alarm_status,80,on,0 +alarm_status,81,id,81 +alarm_status,81,number,2000408 +alarm_status,81,active,2 +alarm_status,81,lastChange,00 00 01 01 00 00 00 00 +alarm_status,81,message, +alarm_status,81,on,0 +alarm_status,82,id,82 +alarm_status,82,number,2000409 +alarm_status,82,active,2 +alarm_status,82,lastChange,00 00 01 01 00 00 00 00 +alarm_status,82,message, +alarm_status,82,on,0 +alarm_status,83,id,83 +alarm_status,83,number,2000410 +alarm_status,83,active,2 +alarm_status,83,lastChange,00 00 01 01 00 00 00 00 +alarm_status,83,message, +alarm_status,83,on,0 +alarm_status,84,id,84 +alarm_status,84,number,2000411 +alarm_status,84,active,2 +alarm_status,84,lastChange,00 00 01 01 00 00 00 00 +alarm_status,84,message, +alarm_status,84,on,0 +alarm_status,85,id,85 +alarm_status,85,number,2000412 +alarm_status,85,active,2 +alarm_status,85,lastChange,00 00 01 01 00 00 00 00 +alarm_status,85,message, +alarm_status,85,on,0 +alarm_status,86,id,86 +alarm_status,86,number,2000413 +alarm_status,86,active,2 +alarm_status,86,lastChange,00 00 01 01 00 00 00 00 +alarm_status,86,message, +alarm_status,86,on,0 +alarm_status,87,id,87 +alarm_status,87,number,2000414 +alarm_status,87,active,2 +alarm_status,87,lastChange,00 00 01 01 00 00 00 00 +alarm_status,87,message, +alarm_status,87,on,0 +alarm_status,88,id,88 +alarm_status,88,number,2000415 +alarm_status,88,active,2 +alarm_status,88,lastChange,00 00 01 01 00 00 00 00 +alarm_status,88,message, +alarm_status,88,on,0 +alarm_status,89,id,89 +alarm_status,89,number,2000416 +alarm_status,89,active,2 +alarm_status,89,lastChange,00 00 01 01 00 00 00 00 +alarm_status,89,message, +alarm_status,89,on,0 +alarm_status,90,id,90 +alarm_status,90,number,2000417 +alarm_status,90,active,2 +alarm_status,90,lastChange,00 00 01 01 00 00 00 00 +alarm_status,90,message, +alarm_status,90,on,0 +alarm_status,91,id,91 +alarm_status,91,number,2000418 +alarm_status,91,active,2 +alarm_status,91,lastChange,00 00 01 01 00 00 00 00 +alarm_status,91,message, +alarm_status,91,on,0 +alarm_status,92,id,92 +alarm_status,92,number,2000419 +alarm_status,92,active,2 +alarm_status,92,lastChange,00 00 01 01 00 00 00 00 +alarm_status,92,message, +alarm_status,92,on,0 +alarm_status,93,id,93 +alarm_status,93,number,2000420 +alarm_status,93,active,2 +alarm_status,93,lastChange,00 00 01 01 00 00 00 00 +alarm_status,93,message, +alarm_status,93,on,0 +alarm_status,94,id,94 +alarm_status,94,number,2000421 +alarm_status,94,active,1 +alarm_status,94,lastChange,07 B4 09 1A 13 0F 06 00 2D 07 00 +alarm_status,94,message,was removed. +alarm_status,94,on,0 +alarm_status,95,id,95 +alarm_status,95,number,1000101 +alarm_status,95,active,2 +alarm_status,95,lastChange,07 B5 01 18 12 07 19 00 2D 07 00 +alarm_status,95,message,went up +alarm_status,95,on,0 +alarm_status,96,id,96 +alarm_status,96,number,1000102 +alarm_status,96,active,2 +alarm_status,96,lastChange,00 00 01 01 00 00 00 00 +alarm_status,96,message, +alarm_status,96,on,0 +alarm_status,97,id,97 +alarm_status,97,number,1000104 +alarm_status,97,active,2 +alarm_status,97,lastChange,00 00 01 01 00 00 00 00 +alarm_status,97,message,went up +alarm_status,97,on,0 +alarm_status,98,id,98 +alarm_status,98,number,1000107 +alarm_status,98,active,2 +alarm_status,98,lastChange,00 00 01 01 00 00 00 00 +alarm_status,98,message, +alarm_status,98,on,0 +alarm_status,99,id,99 +alarm_status,99,number,1000201 +alarm_status,99,active,1 +alarm_status,99,lastChange,07 B3 0C 1D 0D 1C 33 00 2D 07 00 +alarm_status,99,message,went down +alarm_status,99,on,0 +alarm_status,100,id,100 +alarm_status,100,number,1000202 +alarm_status,100,active,2 +alarm_status,100,lastChange,00 00 01 01 00 00 00 00 +alarm_status,100,message, +alarm_status,100,on,0 +alarm_status,101,id,101 +alarm_status,101,number,1000204 +alarm_status,101,active,2 +alarm_status,101,lastChange,00 00 01 01 00 00 00 00 +alarm_status,101,message,went up +alarm_status,101,on,0 +alarm_status,102,id,102 +alarm_status,102,number,1000207 +alarm_status,102,active,2 +alarm_status,102,lastChange,00 00 01 01 00 00 00 00 +alarm_status,102,message, +alarm_status,102,on,0 +alarm_status,103,id,103 +alarm_status,103,number,1000301 +alarm_status,103,active,1 +alarm_status,103,lastChange,07 B4 0B 15 14 0A 2F 00 2D 07 00 +alarm_status,103,message,went down +alarm_status,103,on,0 +alarm_status,104,id,104 +alarm_status,104,number,1000302 +alarm_status,104,active,2 +alarm_status,104,lastChange,00 00 01 01 00 00 00 00 +alarm_status,104,message, +alarm_status,104,on,0 +alarm_status,105,id,105 +alarm_status,105,number,1000304 +alarm_status,105,active,2 +alarm_status,105,lastChange,00 00 01 01 00 00 00 00 +alarm_status,105,message,went up +alarm_status,105,on,0 +alarm_status,106,id,106 +alarm_status,106,number,1000307 +alarm_status,106,active,2 +alarm_status,106,lastChange,00 00 01 01 00 00 00 00 +alarm_status,106,message, +alarm_status,106,on,0 +alarm_status,107,id,107 +alarm_status,107,number,1000401 +alarm_status,107,active,1 +alarm_status,107,lastChange,07 B4 09 1A 13 0E 23 00 2D 07 00 +alarm_status,107,message,went down +alarm_status,107,on,0 +alarm_status,108,id,108 +alarm_status,108,number,1000402 +alarm_status,108,active,2 +alarm_status,108,lastChange,00 00 01 01 00 00 00 00 +alarm_status,108,message, +alarm_status,108,on,0 +alarm_status,109,id,109 +alarm_status,109,number,1000404 +alarm_status,109,active,2 +alarm_status,109,lastChange,00 00 01 01 00 00 00 00 +alarm_status,109,message,went up +alarm_status,109,on,0 +alarm_status,110,id,110 +alarm_status,110,number,1000407 +alarm_status,110,active,2 +alarm_status,110,lastChange,00 00 01 01 00 00 00 00 +alarm_status,110,message, +alarm_status,110,on,0 +alarm_status,111,id,111 +alarm_status,111,number,1000501 +alarm_status,111,active,2 +alarm_status,111,lastChange,07 B5 03 07 14 36 0F 00 2D 07 00 +alarm_status,111,message,went up +alarm_status,111,on,0 +alarm_status,112,id,112 +alarm_status,112,number,1000601 +alarm_status,112,active,1 +alarm_status,112,lastChange,07 B2 06 16 16 1D 0F 00 2D 07 00 +alarm_status,112,message,went down +alarm_status,112,on,0 +alarm_status,113,id,113 +alarm_status,113,number,1000602 +alarm_status,113,active,2 +alarm_status,113,lastChange,00 00 01 01 00 00 00 00 +alarm_status,113,message, +alarm_status,113,on,0 +alarm_status,114,id,114 +alarm_status,114,number,1000604 +alarm_status,114,active,2 +alarm_status,114,lastChange,00 00 01 01 00 00 00 00 +alarm_status,114,message,went up +alarm_status,114,on,0 +alarm_status,115,id,115 +alarm_status,115,number,1000603 +alarm_status,115,active,2 +alarm_status,115,lastChange,00 00 01 01 00 00 00 00 +alarm_status,115,message, +alarm_status,115,on,0 +alarm_status,116,id,116 +alarm_status,116,number,1000701 +alarm_status,116,active,1 +alarm_status,116,lastChange,07 B2 06 16 16 1D 0F 00 2D 07 00 +alarm_status,116,message,went down +alarm_status,116,on,0 +alarm_status,117,id,117 +alarm_status,117,number,1000702 +alarm_status,117,active,2 +alarm_status,117,lastChange,00 00 01 01 00 00 00 00 +alarm_status,117,message, +alarm_status,117,on,0 +alarm_status,118,id,118 +alarm_status,118,number,1000704 +alarm_status,118,active,2 +alarm_status,118,lastChange,00 00 01 01 00 00 00 00 +alarm_status,118,message,went up +alarm_status,118,on,0 +alarm_status,119,id,119 +alarm_status,119,number,1000703 +alarm_status,119,active,2 +alarm_status,119,lastChange,00 00 01 01 00 00 00 00 +alarm_status,119,message, +alarm_status,119,on,0 +alarm_status,120,id,120 +alarm_status,120,number,8000006 +alarm_status,120,active,2 +alarm_status,120,lastChange,00 00 01 01 00 00 00 00 +alarm_status,120,message, +alarm_status,120,on,0 +alarm_status,121,id,121 +alarm_status,121,number,8000007 +alarm_status,121,active,2 +alarm_status,121,lastChange,00 00 01 01 00 00 00 00 +alarm_status,121,message, +alarm_status,121,on,0 +alarm_status,122,id,122 +alarm_status,122,number,8000080 +alarm_status,122,active,2 +alarm_status,122,lastChange,00 00 01 01 00 00 00 00 +alarm_status,122,message, +alarm_status,122,on,0 +alarm_status,123,id,123 +alarm_status,123,number,7000101 +alarm_status,123,active,1 +alarm_status,123,lastChange,07 B2 06 16 16 1F 23 00 2D 07 00 +alarm_status,123,message,"Lost contact, server 10.10.20." +alarm_status,123,on,0 +alarm_status,124,id,124 +alarm_status,124,number,7000102 +alarm_status,124,active,1 +alarm_status,124,lastChange,07 B2 06 16 16 1D 15 00 2D 07 00 +alarm_status,124,message,NTP lost time-of-day sync +alarm_status,124,on,0 +alarm_status,125,id,125 +alarm_status,125,number,7000106 +alarm_status,125,active,2 +alarm_status,125,lastChange,00 00 01 01 00 00 00 00 +alarm_status,125,message,Use intf with HW timestamp +alarm_status,125,on,0 +alarm_status,126,id,126 +alarm_status,126,number,7000108 +alarm_status,126,active,2 +alarm_status,126,lastChange,00 00 01 01 00 00 00 00 +alarm_status,126,message,Use intf with HW timestamp +alarm_status,126,on,0 +alarm_status,127,id,127 +alarm_status,127,number,7000104 +alarm_status,127,active,2 +alarm_status,127,lastChange,00 00 01 01 00 00 00 00 +alarm_status,127,message, +alarm_status,127,on,0 +alarm_status,128,id,128 +alarm_status,128,number,7000105 +alarm_status,128,active,2 +alarm_status,128,lastChange,00 00 01 01 00 00 00 00 +alarm_status,128,message, +alarm_status,128,on,0 +alarm_status,129,id,129 +alarm_status,129,number,7000107 +alarm_status,129,active,2 +alarm_status,129,lastChange,00 00 01 01 00 00 00 00 +alarm_status,129,message, +alarm_status,129,on,0 +alarm_status,130,id,130 +alarm_status,130,number,18000101 +alarm_status,130,active,2 +alarm_status,130,lastChange,00 00 01 01 00 00 00 00 +alarm_status,130,message, +alarm_status,130,on,0 +alarm_status,131,id,131 +alarm_status,131,number,18000102 +alarm_status,131,active,2 +alarm_status,131,lastChange,00 00 01 01 00 00 00 00 +alarm_status,131,message, +alarm_status,131,on,0 +alarm_status,132,id,132 +alarm_status,132,number,3000101 +alarm_status,132,active,1 +alarm_status,132,lastChange,07 B2 06 16 16 1D 25 00 2D 07 00 +alarm_status,132,message, +alarm_status,132,on,0 +alarm_status,133,id,133 +alarm_status,133,number,3000102 +alarm_status,133,active,1 +alarm_status,133,lastChange,07 B2 06 16 16 1D 26 00 2D 07 00 +alarm_status,133,message, +alarm_status,133,on,0 +alarm_status,134,id,134 +alarm_status,134,number,3000103 +alarm_status,134,active,2 +alarm_status,134,lastChange,00 00 01 01 00 00 00 00 +alarm_status,134,message, +alarm_status,134,on,0 +alarm_status,135,id,135 +alarm_status,135,number,3000104 +alarm_status,135,active,2 +alarm_status,135,lastChange,00 00 01 01 00 00 00 00 +alarm_status,135,message, +alarm_status,135,on,0 +alarm_status,136,id,136 +alarm_status,136,number,3000105 +alarm_status,136,active,2 +alarm_status,136,lastChange,00 00 01 01 00 00 00 00 +alarm_status,136,message, +alarm_status,136,on,0 +alarm_status,137,id,137 +alarm_status,137,number,3000106 +alarm_status,137,active,2 +alarm_status,137,lastChange,00 00 01 01 00 00 00 00 +alarm_status,137,message, +alarm_status,137,on,0 +alarm_status,138,id,138 +alarm_status,138,number,3000107 +alarm_status,138,active,2 +alarm_status,138,lastChange,00 00 01 01 00 00 00 00 +alarm_status,138,message, +alarm_status,138,on,0 +alarm_status,139,id,139 +alarm_status,139,number,3000108 +alarm_status,139,active,2 +alarm_status,139,lastChange,00 00 01 01 00 00 00 00 +alarm_status,139,message, +alarm_status,139,on,0 +alarm_status,140,id,140 +alarm_status,140,number,3000109 +alarm_status,140,active,2 +alarm_status,140,lastChange,00 00 01 01 00 00 00 00 +alarm_status,140,message, +alarm_status,140,on,0 +alarm_status,141,id,141 +alarm_status,141,number,3000110 +alarm_status,141,active,2 +alarm_status,141,lastChange,00 00 01 01 00 00 00 00 +alarm_status,141,message, +alarm_status,141,on,0 +alarm_status,142,id,142 +alarm_status,142,number,3000111 +alarm_status,142,active,2 +alarm_status,142,lastChange,00 00 01 01 00 00 00 00 +alarm_status,142,message, +alarm_status,142,on,0 +alarm_status,143,id,143 +alarm_status,143,number,3000112 +alarm_status,143,active,2 +alarm_status,143,lastChange,00 00 01 01 00 00 00 00 +alarm_status,143,message, +alarm_status,143,on,0 +alarm_status,144,id,144 +alarm_status,144,number,3000113 +alarm_status,144,active,2 +alarm_status,144,lastChange,00 00 01 01 00 00 00 00 +alarm_status,144,message, +alarm_status,144,on,0 +alarm_status,145,id,145 +alarm_status,145,number,3000114 +alarm_status,145,active,2 +alarm_status,145,lastChange,00 00 01 01 00 00 00 00 +alarm_status,145,message, +alarm_status,145,on,0 +alarm_status,146,id,146 +alarm_status,146,number,3000115 +alarm_status,146,active,2 +alarm_status,146,lastChange,00 00 01 01 00 00 00 00 +alarm_status,146,message, +alarm_status,146,on,0 +alarm_status,147,id,147 +alarm_status,147,number,3000201 +alarm_status,147,active,2 +alarm_status,147,lastChange,00 00 01 01 00 00 00 00 +alarm_status,147,message, +alarm_status,147,on,0 +alarm_status,148,id,148 +alarm_status,148,number,3000202 +alarm_status,148,active,2 +alarm_status,148,lastChange,00 00 01 01 00 00 00 00 +alarm_status,148,message, +alarm_status,148,on,0 +alarm_status,149,id,149 +alarm_status,149,number,3000203 +alarm_status,149,active,2 +alarm_status,149,lastChange,00 00 01 01 00 00 00 00 +alarm_status,149,message, +alarm_status,149,on,0 +alarm_status,150,id,150 +alarm_status,150,number,3000204 +alarm_status,150,active,2 +alarm_status,150,lastChange,00 00 01 01 00 00 00 00 +alarm_status,150,message, +alarm_status,150,on,0 +alarm_status,151,id,151 +alarm_status,151,number,3000205 +alarm_status,151,active,2 +alarm_status,151,lastChange,00 00 01 01 00 00 00 00 +alarm_status,151,message, +alarm_status,151,on,0 +alarm_status,152,id,152 +alarm_status,152,number,3000206 +alarm_status,152,active,2 +alarm_status,152,lastChange,00 00 01 01 00 00 00 00 +alarm_status,152,message, +alarm_status,152,on,0 +alarm_status,153,id,153 +alarm_status,153,number,3000207 +alarm_status,153,active,2 +alarm_status,153,lastChange,00 00 01 01 00 00 00 00 +alarm_status,153,message, +alarm_status,153,on,0 +alarm_status,154,id,154 +alarm_status,154,number,3000208 +alarm_status,154,active,2 +alarm_status,154,lastChange,00 00 01 01 00 00 00 00 +alarm_status,154,message, +alarm_status,154,on,0 +alarm_status,155,id,155 +alarm_status,155,number,3000209 +alarm_status,155,active,2 +alarm_status,155,lastChange,00 00 01 01 00 00 00 00 +alarm_status,155,message, +alarm_status,155,on,0 +alarm_status,156,id,156 +alarm_status,156,number,3000210 +alarm_status,156,active,2 +alarm_status,156,lastChange,00 00 01 01 00 00 00 00 +alarm_status,156,message, +alarm_status,156,on,0 +alarm_status,157,id,157 +alarm_status,157,number,3000211 +alarm_status,157,active,2 +alarm_status,157,lastChange,00 00 01 01 00 00 00 00 +alarm_status,157,message, +alarm_status,157,on,0 +alarm_status,158,id,158 +alarm_status,158,number,3000212 +alarm_status,158,active,2 +alarm_status,158,lastChange,00 00 01 01 00 00 00 00 +alarm_status,158,message, +alarm_status,158,on,0 +alarm_status,159,id,159 +alarm_status,159,number,3000213 +alarm_status,159,active,2 +alarm_status,159,lastChange,00 00 01 01 00 00 00 00 +alarm_status,159,message, +alarm_status,159,on,0 +alarm_status,160,id,160 +alarm_status,160,number,3000214 +alarm_status,160,active,2 +alarm_status,160,lastChange,00 00 01 01 00 00 00 00 +alarm_status,160,message, +alarm_status,160,on,0 +alarm_status,161,id,161 +alarm_status,161,number,3000215 +alarm_status,161,active,2 +alarm_status,161,lastChange,00 00 01 01 00 00 00 00 +alarm_status,161,message, +alarm_status,161,on,0 +alarm_status,162,id,162 +alarm_status,162,number,3000301 +alarm_status,162,active,1 +alarm_status,162,lastChange,07 B2 06 16 16 1D 25 00 2D 07 00 +alarm_status,162,message, +alarm_status,162,on,0 +alarm_status,163,id,163 +alarm_status,163,number,3000302 +alarm_status,163,active,1 +alarm_status,163,lastChange,07 B2 06 16 16 1D 26 00 2D 07 00 +alarm_status,163,message, +alarm_status,163,on,0 +alarm_status,164,id,164 +alarm_status,164,number,3000303 +alarm_status,164,active,2 +alarm_status,164,lastChange,00 00 01 01 00 00 00 00 +alarm_status,164,message, +alarm_status,164,on,0 +alarm_status,165,id,165 +alarm_status,165,number,3000304 +alarm_status,165,active,2 +alarm_status,165,lastChange,00 00 01 01 00 00 00 00 +alarm_status,165,message, +alarm_status,165,on,0 +alarm_status,166,id,166 +alarm_status,166,number,3000305 +alarm_status,166,active,2 +alarm_status,166,lastChange,00 00 01 01 00 00 00 00 +alarm_status,166,message, +alarm_status,166,on,0 +alarm_status,167,id,167 +alarm_status,167,number,3000306 +alarm_status,167,active,2 +alarm_status,167,lastChange,00 00 01 01 00 00 00 00 +alarm_status,167,message, +alarm_status,167,on,0 +alarm_status,168,id,168 +alarm_status,168,number,3000307 +alarm_status,168,active,2 +alarm_status,168,lastChange,00 00 01 01 00 00 00 00 +alarm_status,168,message, +alarm_status,168,on,0 +alarm_status,169,id,169 +alarm_status,169,number,3000308 +alarm_status,169,active,2 +alarm_status,169,lastChange,00 00 01 01 00 00 00 00 +alarm_status,169,message, +alarm_status,169,on,0 +alarm_status,170,id,170 +alarm_status,170,number,3000309 +alarm_status,170,active,2 +alarm_status,170,lastChange,00 00 01 01 00 00 00 00 +alarm_status,170,message, +alarm_status,170,on,0 +alarm_status,171,id,171 +alarm_status,171,number,3000310 +alarm_status,171,active,2 +alarm_status,171,lastChange,00 00 01 01 00 00 00 00 +alarm_status,171,message, +alarm_status,171,on,0 +alarm_status,172,id,172 +alarm_status,172,number,3000311 +alarm_status,172,active,2 +alarm_status,172,lastChange,00 00 01 01 00 00 00 00 +alarm_status,172,message, +alarm_status,172,on,0 +alarm_status,173,id,173 +alarm_status,173,number,3000312 +alarm_status,173,active,2 +alarm_status,173,lastChange,00 00 01 01 00 00 00 00 +alarm_status,173,message, +alarm_status,173,on,0 +alarm_status,174,id,174 +alarm_status,174,number,3000313 +alarm_status,174,active,2 +alarm_status,174,lastChange,00 00 01 01 00 00 00 00 +alarm_status,174,message, +alarm_status,174,on,0 +alarm_status,175,id,175 +alarm_status,175,number,3000314 +alarm_status,175,active,2 +alarm_status,175,lastChange,00 00 01 01 00 00 00 00 +alarm_status,175,message, +alarm_status,175,on,0 +alarm_status,176,id,176 +alarm_status,176,number,3000315 +alarm_status,176,active,2 +alarm_status,176,lastChange,00 00 01 01 00 00 00 00 +alarm_status,176,message, +alarm_status,176,on,0 +alarm_status,177,id,177 +alarm_status,177,number,3000401 +alarm_status,177,active,2 +alarm_status,177,lastChange,00 00 01 01 00 00 00 00 +alarm_status,177,message, +alarm_status,177,on,0 +alarm_status,178,id,178 +alarm_status,178,number,3000402 +alarm_status,178,active,2 +alarm_status,178,lastChange,00 00 01 01 00 00 00 00 +alarm_status,178,message, +alarm_status,178,on,0 +alarm_status,179,id,179 +alarm_status,179,number,3000403 +alarm_status,179,active,2 +alarm_status,179,lastChange,00 00 01 01 00 00 00 00 +alarm_status,179,message, +alarm_status,179,on,0 +alarm_status,180,id,180 +alarm_status,180,number,3000404 +alarm_status,180,active,2 +alarm_status,180,lastChange,00 00 01 01 00 00 00 00 +alarm_status,180,message, +alarm_status,180,on,0 +alarm_status,181,id,181 +alarm_status,181,number,3000405 +alarm_status,181,active,2 +alarm_status,181,lastChange,00 00 01 01 00 00 00 00 +alarm_status,181,message, +alarm_status,181,on,0 +alarm_status,182,id,182 +alarm_status,182,number,3000406 +alarm_status,182,active,2 +alarm_status,182,lastChange,00 00 01 01 00 00 00 00 +alarm_status,182,message, +alarm_status,182,on,0 +alarm_status,183,id,183 +alarm_status,183,number,3000407 +alarm_status,183,active,2 +alarm_status,183,lastChange,00 00 01 01 00 00 00 00 +alarm_status,183,message, +alarm_status,183,on,0 +alarm_status,184,id,184 +alarm_status,184,number,3000408 +alarm_status,184,active,2 +alarm_status,184,lastChange,00 00 01 01 00 00 00 00 +alarm_status,184,message, +alarm_status,184,on,0 +alarm_status,185,id,185 +alarm_status,185,number,3000409 +alarm_status,185,active,2 +alarm_status,185,lastChange,00 00 01 01 00 00 00 00 +alarm_status,185,message, +alarm_status,185,on,0 +alarm_status,186,id,186 +alarm_status,186,number,3000410 +alarm_status,186,active,2 +alarm_status,186,lastChange,00 00 01 01 00 00 00 00 +alarm_status,186,message, +alarm_status,186,on,0 +alarm_status,187,id,187 +alarm_status,187,number,3000411 +alarm_status,187,active,2 +alarm_status,187,lastChange,00 00 01 01 00 00 00 00 +alarm_status,187,message, +alarm_status,187,on,0 +alarm_status,188,id,188 +alarm_status,188,number,3000412 +alarm_status,188,active,2 +alarm_status,188,lastChange,00 00 01 01 00 00 00 00 +alarm_status,188,message, +alarm_status,188,on,0 +alarm_status,189,id,189 +alarm_status,189,number,3000413 +alarm_status,189,active,2 +alarm_status,189,lastChange,00 00 01 01 00 00 00 00 +alarm_status,189,message, +alarm_status,189,on,0 +alarm_status,190,id,190 +alarm_status,190,number,3000414 +alarm_status,190,active,2 +alarm_status,190,lastChange,00 00 01 01 00 00 00 00 +alarm_status,190,message, +alarm_status,190,on,0 +alarm_status,191,id,191 +alarm_status,191,number,3000415 +alarm_status,191,active,2 +alarm_status,191,lastChange,00 00 01 01 00 00 00 00 +alarm_status,191,message, +alarm_status,191,on,0 +alarm_status,192,id,192 +alarm_status,192,number,7000401 +alarm_status,192,active,2 +alarm_status,192,lastChange,00 00 01 01 00 00 00 00 +alarm_status,192,message, +alarm_status,192,on,0 +alarm_status,193,id,193 +alarm_status,193,number,7000412 +alarm_status,193,active,2 +alarm_status,193,lastChange,00 00 01 01 00 00 00 00 +alarm_status,193,message,Buffer not full for PAA +alarm_status,193,on,0 +alarm_status,194,id,194 +alarm_status,194,number,7000404 +alarm_status,194,active,2 +alarm_status,194,lastChange,00 00 01 01 00 00 00 00 +alarm_status,194,message,All instances are collected +alarm_status,194,on,0 +alarm_status,195,id,195 +alarm_status,195,number,7000411 +alarm_status,195,active,2 +alarm_status,195,lastChange,00 00 01 01 00 00 00 00 +alarm_status,195,message, +alarm_status,195,on,0 +alarm_status,196,id,196 +alarm_status,196,number,7000403 +alarm_status,196,active,2 +alarm_status,196,lastChange,00 00 01 01 00 00 00 00 +alarm_status,196,message,All instances are collected +alarm_status,196,on,0 +alarm_status,197,id,197 +alarm_status,197,number,7000410 +alarm_status,197,active,2 +alarm_status,197,lastChange,00 00 01 01 00 00 00 00 +alarm_status,197,message, +alarm_status,197,on,0 +alarm_status,198,id,198 +alarm_status,198,number,7000402 +alarm_status,198,active,2 +alarm_status,198,lastChange,00 00 01 01 00 00 00 00 +alarm_status,198,message,All instances are collected +alarm_status,198,on,0 +alarm_status,199,id,199 +alarm_status,199,number,7000414 +alarm_status,199,active,2 +alarm_status,199,lastChange,00 00 01 01 00 00 00 00 +alarm_status,199,message, +alarm_status,199,on,0 +alarm_status,200,id,200 +alarm_status,200,number,7000406 +alarm_status,200,active,2 +alarm_status,200,lastChange,00 00 01 01 00 00 00 00 +alarm_status,200,message,All instances are collected +alarm_status,200,on,0 +alarm_status,201,id,201 +alarm_status,201,number,7000413 +alarm_status,201,active,2 +alarm_status,201,lastChange,00 00 01 01 00 00 00 00 +alarm_status,201,message, +alarm_status,201,on,0 +alarm_status,202,id,202 +alarm_status,202,number,7000405 +alarm_status,202,active,2 +alarm_status,202,lastChange,00 00 01 01 00 00 00 00 +alarm_status,202,message,All instances are collected +alarm_status,202,on,0 +alarm_status,203,id,203 +alarm_status,203,number,7000417 +alarm_status,203,active,2 +alarm_status,203,lastChange,00 00 01 01 00 00 00 00 +alarm_status,203,message, +alarm_status,203,on,0 +alarm_status,204,id,204 +alarm_status,204,number,7000409 +alarm_status,204,active,2 +alarm_status,204,lastChange,00 00 01 01 00 00 00 00 +alarm_status,204,message,All instances are collected +alarm_status,204,on,0 +alarm_status,205,id,205 +alarm_status,205,number,7000415 +alarm_status,205,active,2 +alarm_status,205,lastChange,00 00 01 01 00 00 00 00 +alarm_status,205,message, +alarm_status,205,on,0 +alarm_status,206,id,206 +alarm_status,206,number,7000407 +alarm_status,206,active,2 +alarm_status,206,lastChange,00 00 01 01 00 00 00 00 +alarm_status,206,message,All instances are collected +alarm_status,206,on,0 +alarm_status,207,id,207 +alarm_status,207,number,7000416 +alarm_status,207,active,2 +alarm_status,207,lastChange,00 00 01 01 00 00 00 00 +alarm_status,207,message, +alarm_status,207,on,0 +alarm_status,208,id,208 +alarm_status,208,number,7000408 +alarm_status,208,active,2 +alarm_status,208,lastChange,00 00 01 01 00 00 00 00 +alarm_status,208,message,All instances are collected +alarm_status,208,on,0 +alarm_status,209,id,209 +alarm_status,209,number,7000421 +alarm_status,209,active,2 +alarm_status,209,lastChange,00 00 01 01 00 00 00 00 +alarm_status,209,message, +alarm_status,209,on,0 +alarm_status,210,id,210 +alarm_status,210,number,7000420 +alarm_status,210,active,2 +alarm_status,210,lastChange,00 00 01 01 00 00 00 00 +alarm_status,210,message,All instances are collected +alarm_status,210,on,0 +alarm_status,211,id,211 +alarm_status,211,number,7000423 +alarm_status,211,active,2 +alarm_status,211,lastChange,00 00 01 01 00 00 00 00 +alarm_status,211,message, +alarm_status,211,on,0 +alarm_status,212,id,212 +alarm_status,212,number,7000422 +alarm_status,212,active,2 +alarm_status,212,lastChange,00 00 01 01 00 00 00 00 +alarm_status,212,message,All instances are collected +alarm_status,212,on,0 +alarm_status,213,id,213 +alarm_status,213,number,7000425 +alarm_status,213,active,2 +alarm_status,213,lastChange,00 00 01 01 00 00 00 00 +alarm_status,213,message, +alarm_status,213,on,0 +alarm_status,214,id,214 +alarm_status,214,number,7000424 +alarm_status,214,active,2 +alarm_status,214,lastChange,00 00 01 01 00 00 00 00 +alarm_status,214,message,All instances are collected +alarm_status,214,on,0 +alarm_status,215,id,215 +alarm_status,215,number,7000428 +alarm_status,215,active,2 +alarm_status,215,lastChange,00 00 01 01 00 00 00 00 +alarm_status,215,message, +alarm_status,215,on,0 +alarm_status,216,id,216 +alarm_status,216,number,7000429 +alarm_status,216,active,2 +alarm_status,216,lastChange,00 00 01 01 00 00 00 00 +alarm_status,216,message, +alarm_status,216,on,0 +alarm_status,217,id,217 +alarm_status,217,number,19000101 +alarm_status,217,active,2 +alarm_status,217,lastChange,00 00 01 01 00 00 00 00 +alarm_status,217,message, +alarm_status,217,on,0 +alarm_status,218,id,218 +alarm_status,218,number,19000102 +alarm_status,218,active,2 +alarm_status,218,lastChange,00 00 01 01 00 00 00 00 +alarm_status,218,message, +alarm_status,218,on,0 +port_config,1,name,EVEN_VLAN_UPLINK +port_config,1,alias, +port_config,1,macAddress,00 15 AD 47 3E 61 +port_config,1,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.1 +port_config,1,state,1 +port_config,1,mtu,4096 +port_config,1,autoNego,1 +port_config,1,speed,1000 +port_config,1,duplex,2 +port_config,1,mdi,1 +port_config,1,pauseMode,2 +port_config,1,advertisement,00 00 00 E0 +port_config,1,forceTxOn,2 +port_config,2,name,ODD_VLAN_UPLINK +port_config,2,alias, +port_config,2,macAddress,00 15 AD 47 3E 62 +port_config,2,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.2 +port_config,2,state,1 +port_config,2,mtu,4096 +port_config,2,autoNego,1 +port_config,2,speed,1000 +port_config,2,duplex,2 +port_config,2,mdi,1 +port_config,2,pauseMode,2 +port_config,2,advertisement,00 00 00 EA +port_config,2,forceTxOn,2 +port_config,3,name,EVEN_VLAN_DOWNLIN +port_config,3,alias, +port_config,3,macAddress,00 15 AD 47 3E 63 +port_config,3,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.3 +port_config,3,state,1 +port_config,3,mtu,2000 +port_config,3,autoNego,1 +port_config,3,speed,1000 +port_config,3,duplex,2 +port_config,3,mdi,1 +port_config,3,pauseMode,2 +port_config,3,advertisement,00 00 00 EA +port_config,3,forceTxOn,2 +port_config,4,name,ODD_VLAN_DOWNLINK +port_config,4,alias, +port_config,4,macAddress,00 15 AD 47 3E 64 +port_config,4,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.4 +port_config,4,state,1 +port_config,4,mtu,4096 +port_config,4,autoNego,1 +port_config,4,speed,1000 +port_config,4,duplex,2 +port_config,4,mdi,1 +port_config,4,pauseMode,2 +port_config,4,advertisement,00 00 00 E0 +port_config,4,forceTxOn,2 +port_config,5,name,Management +port_config,5,alias, +port_config,5,macAddress,00 15 AD 47 3E 65 +port_config,5,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.5 +port_config,5,state,1 +port_config,5,mtu,2000 +port_config,5,autoNego,1 +port_config,5,speed,100 +port_config,5,duplex,2 +port_config,5,mdi,1 +port_config,5,pauseMode,2 +port_config,5,advertisement,00 00 00 CA +port_config,6,name,LAG-1 +port_config,6,alias, +port_config,6,macAddress,00 15 AD 47 3E 61 +port_config,6,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.6 +port_config,6,state,1 +port_config,6,mtu,10240 +port_config,6,autoNego,2 +port_config,6,speed,10000 +port_config,6,duplex,2 +port_config,6,mdi,2 +port_config,6,pauseMode,2 +port_config,6,advertisement,00 00 00 E0 +port_config,7,name,LAG-2 +port_config,7,alias, +port_config,7,macAddress,00 15 AD 47 3E 63 +port_config,7,connectorId,.1.3.6.1.4.1.22420.1.1.10.1.1.7 +port_config,7,state,1 +port_config,7,mtu,10240 +port_config,7,autoNego,2 +port_config,7,speed,10000 +port_config,7,duplex,2 +port_config,7,mdi,2 +port_config,7,pauseMode,2 +port_config,7,advertisement,00 00 00 E0 +port_status,1,name,1000 +port_status,1,connectorIdx,2 +port_status,1,linkStatus,1 +port_status,1,speed,2 +port_status,1,duplex,1 +port_status,1,mdi, +port_status,1,pauseMode,1 +port_status,1,sfpIdx,00 00 02 +port_status,1,col_10,2 +port_status,1,col_11,2 +port_status,1,col_12,1 +port_status,1,col_13,1 +port_status,1,col_14,1 +port_status,2,name,0 +port_status,2,connectorIdx,0 +port_status,2,linkStatus,0 +port_status,2,speed,0 +port_status,2,duplex,0 +port_status,2,mdi, +port_status,2,pauseMode,2 +port_status,2,sfpIdx, +port_status,2,col_10,0 +port_status,2,col_11,0 +port_status,2,col_12,0 +port_status,2,col_13,0 +port_status,2,col_14,2 +port_status,3,name,0 +port_status,3,connectorIdx,0 +port_status,3,linkStatus,0 +port_status,3,speed,0 +port_status,3,duplex,0 +port_status,3,mdi, +port_status,3,pauseMode,2 +port_status,3,sfpIdx, +port_status,3,col_10,0 +port_status,3,col_11,0 +port_status,3,col_12,0 +port_status,3,col_13,0 +port_status,3,col_14,2 +port_status,4,name,0 +port_status,4,connectorIdx,0 +port_status,4,linkStatus,0 +port_status,4,speed,0 +port_status,4,duplex,0 +port_status,4,mdi,00 00 00 E0 +port_status,4,pauseMode,2 +port_status,4,sfpIdx, +port_status,4,col_10,0 +port_status,4,col_11,0 +port_status,4,col_12,0 +port_status,4,col_13,0 +port_status,4,col_14,2 +port_status,5,name,100 +port_status,5,connectorIdx,2 +port_status,5,linkStatus,1 +port_status,5,speed,2 +port_status,5,duplex,1 +port_status,5,mdi,00 00 00 CF +port_status,5,pauseMode,1 +port_status,5,sfpIdx,00 00 80 +port_status,5,col_10,2 +port_status,5,col_11,1 +port_status,5,col_12,2 +port_status,5,col_13,2 +port_status,5,col_14,1 +port_status,6,name,0 +port_status,6,connectorIdx,0 +port_status,6,linkStatus,0 +port_status,6,speed,0 +port_status,6,duplex,0 +port_status,6,mdi, +port_status,6,pauseMode,2 +port_status,6,sfpIdx, +port_status,6,col_10,0 +port_status,6,col_11,0 +port_status,6,col_12,0 +port_status,6,col_13,0 +port_status,6,col_14,2 +port_status,7,name,0 +port_status,7,connectorIdx,0 +port_status,7,linkStatus,0 +port_status,7,speed,0 +port_status,7,duplex,0 +port_status,7,mdi, +port_status,7,pauseMode,2 +port_status,7,sfpIdx, +port_status,7,col_10,0 +port_status,7,col_11,0 +port_status,7,col_12,0 +port_status,7,col_13,0 +port_status,7,col_14,2 +device,0,sysDescr,AMN-1000-GT-S +device,0,sysUpTime,0:0:41:41.00 +device,0,sysContact,root +device,0,sysName,LABNID-NID12-DC-MTSO-Pri.alluvion.net +device,0,sysLocation,Unknown +device,0,commercialName,AMN-1000-GT-S +device,0,macBaseAddr,00:15:AD:47:3E:60 +device,0,identifier,NID12-DC-MTSO-Pri +device,0,firmwareVersion,AMT_7.9.1_23673 +device,0,hardwareVersion,619-2179:20:23:14 +device,0,serialNumber,G419-2495 +device,0,hardwareOptions,Dry-contact Input +device,0,cpuUsageCurrent,12 +device,0,cpuUsageAvg15s,14 +device,0,cpuUsageAvg30s,15 +device,0,cpuUsageAvg60s,15 +device,0,cpuUsageAvg900s,5 +device,0,uptimeSeconds,90350370 +alarm_general,0,threshOnMs,2500 +alarm_general,0,threshOffMs,10000 +alarm_general,0,ledEnabled,1 +alarm_general,0,syslogEnabled,1 +alarm_general,0,snmpEnabled,1 +alarm_general,0,802_3ahEnabled,1 diff --git a/walks/nid-viewer.html b/walks/nid-viewer.html new file mode 100644 index 0000000..b21fd46 --- /dev/null +++ b/walks/nid-viewer.html @@ -0,0 +1,1507 @@ + + + + + +NID Viewer — NID12-DC-MTSO-Pri + + + + + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ +
+ + + + \ No newline at end of file